Skip to content

Commit 8ebca4a

Browse files
committed
Fixing bug in new version FASTA file processing
1 parent b6de758 commit 8ebca4a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ntcard.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ getEfa(std::ifstream& in, const std::vector<unsigned>& kList, uint16_t* t_Counte
200200
good = static_cast<bool>(getline(in, seq));
201201
}
202202
if (opt::gap == 0) {
203-
ntRead(seq, kList, t_Counter, totKmer);
203+
ntRead(line, kList, t_Counter, totKmer);
204204
} else {
205-
stRead(seq, kList, t_Counter, totKmer);
205+
stRead(line, kList, t_Counter, totKmer);
206206
}
207207
}
208208
}

0 commit comments

Comments
 (0)