Skip to content

Commit

Permalink
Update Tabex.c
Browse files Browse the repository at this point in the history
  • Loading branch information
thegenemyers committed May 15, 2023
1 parent 09cc69e commit f343ca1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Tabex.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ static void List_Kmer_Stream(Kmer_Stream *S, int cut, FILE *out)
for (First_Kmer_Entry(S); S->csuf != NULL; Next_Kmer_Entry(S))
{ c = Current_Count(S);
if (c >= cut)
fprintf(out," %9lld: %s = %3d, %3d\n",S->cidx,Current_Kmer(S,seq),(c>>8),(c&0xff));
// fprintf(out," %9lld: %s = %5d\n",S->cidx,Current_Kmer(S,seq),c);
fprintf(out," %9lld: %s = %5d\n",S->cidx,Current_Kmer(S,seq),c);
}
free(seq);
}
Expand Down

0 comments on commit f343ca1

Please sign in to comment.