Skip to content

Commit

Permalink
Update reads.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
gf777 committed Dec 26, 2024
1 parent fce7c32 commit 37de952
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/reads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -748,9 +748,8 @@ void InReads::writeToStream() {
});
if (!streamOutput && batchCounter == readBatches.size())
return;
auto start = readBatches.begin();
std::advance(start, batchCounter);
readBatchesCpy = {start, readBatches.end()};
std::cout<<+batchCounter<<" "<<+readBatches.size()<<std::endl;
readBatchesCpy = {readBatches.begin() + batchCounter, readBatches.end()};
}

switch (string_to_case.count(ext) ? string_to_case.at(ext) : 0) {
Expand Down

0 comments on commit 37de952

Please sign in to comment.