Skip to content

Commit

Permalink
Set default value of threads to maximum.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuak94 committed Nov 28, 2019
1 parent 69d2148 commit f7fca35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sviper/config.h
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ struct CmdOptions
bool verbose{false};
bool veryVerbose{false};
bool output_polished_bam{false};
unsigned threads{0};
unsigned threads{std::thread::hardware_concurrency()};
int flanking_region{400}; // size of flanking region for breakpoints
int mean_coverage_of_short_reads{36}; // original coverage
double mean_insert_size_of_short_reads{280.054}; // original coverage

0 comments on commit f7fca35

Please sign in to comment.