Skip to content

Commit

Permalink
Fixed typo in parser's pass.log
Browse files Browse the repository at this point in the history
Previously output line number of internal map rather than OTU name as
reference
  • Loading branch information
GabeAl committed Mar 5, 2016
1 parent 964555c commit 510d3a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ninja_parse_filtered.c
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ int main ( int argc, char *argv[] )
char *begin = dupes;
while (*dupes != '\n') ++dupes;
*dupes = '\0';
fprintf(logPass,"%s\t%lu\n", begin,otuIX);
fprintf(logPass,"%s\t%lu\n", begin, OtuList[otuIX]);
*dupes++ = '\t';
}
}
Expand Down

0 comments on commit 510d3a3

Please sign in to comment.