Skip to content

Commit

Permalink
Fix uninitialized error
Browse files Browse the repository at this point in the history
  • Loading branch information
Drmirdeep authored Feb 22, 2019
1 parent 171d488 commit a64d217
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mapper.pl
Original file line number Diff line number Diff line change
Expand Up @@ -700,9 +700,9 @@ sub printErr{

sub read_stats{
my %hash;
my $count;
my $count = 0;
my %k2;
my $total;
my $total = 0;

open IN,"$options{'s'}" or die "No reads file in fasta format given\n";
while(<IN>){
Expand All @@ -715,7 +715,7 @@ sub read_stats{
}
close IN;
my %hash2;
my $count2;
my $count2 = 0;
my %k22;

print STDERR "Mapping statistics\n";
Expand Down

0 comments on commit a64d217

Please sign in to comment.