You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I cant process trying to process each chunk on a different thread because next chunk clear the kmers
void kmerDecoder::next_chunk(){
this->kmers.clear();
this->extractKmers();
}
also flatmap is not the best data structure. Vector or deque is more efficient for this task.
The text was updated successfully, but these errors were encountered:
I cant process trying to process each chunk on a different thread because next chunk clear the kmers
void kmerDecoder::next_chunk(){
this->kmers.clear();
this->extractKmers();
}
also flatmap is not the best data structure. Vector or deque is more efficient for this task.
The text was updated successfully, but these errors were encountered: