Skip to content

Commit

Permalink
Take out unnecesary string constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
xchang1 committed Nov 26, 2024
1 parent 76c6f2c commit b8048df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subcommand/giraffe_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1375,7 +1375,7 @@ int main_giraffe(int argc, char** argv) {
found->second.apply(*parser);
}
}
if (param_preset == std::string("hifi") || param_preset == std::string("r10")) {
if (param_preset == "hifi" || param_preset == "r10") {
map_long_reads = true;
}
break;
Expand Down

1 comment on commit b8048df

@adamnovak
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

vg CI tests complete for branch autoindex-zipcodes. View the full report here.

16 tests passed, 0 tests failed and 0 tests skipped in 17312 seconds

Please sign in to comment.