Skip to content

Commit

Permalink
Make 100 reads
Browse files Browse the repository at this point in the history
  • Loading branch information
1dayac committed Jan 18, 2023
1 parent 3081ea1 commit 57433ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assembler/src/projects/blackbird/utils/pipeline.h
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ class BlackBirdLauncher {
for (auto p : long_read_names)
long_read_names_vec.push_back(p.first);
std::random_shuffle(long_read_names_vec.begin(), long_read_names_vec.end());
for (int i = 0; i < std::min(200, (int)long_read_names_vec.size()); ++i) {
for (int i = 0; i < std::min(100, (int)long_read_names_vec.size()); ++i) {
auto name = long_read_names_vec[i];
size_t start_pos = long_read_names[name].first;
size_t read_length = map_of_long_reads_[name].size();
Expand Down

0 comments on commit 57433ca

Please sign in to comment.