Skip to content

Commit

Permalink
updating --min-het-freq to have default value 0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mgymrek committed Jul 1, 2016
1 parent eb9880f commit eead65a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main_allelotype.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void show_help() {
<< "--realign: Redo local realignment. Useful if using alignments generated\n"
<< " by other tools.\n"
<< "--min-het-freq <FLOAT>: minimum frequency to make a heterozygous call\n"
<< " (default: NULL)\n"
<< " (default: 0.1)\n"
<< "--haploid <chrX,[chrY,...]>: comma-separated list of chromosomes\n"
<< " that should be forced to have homozygous\n"
<< " calls. Specify --haploid all if the organism\n"
Expand Down
2 changes: 1 addition & 1 deletion src/runtime_parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ bool rmdup = true;
bool include_gl = false;
bool dont_include_pl = false;
bool print_reads = false;
float min_het_freq = 0;
float min_het_freq = 0.1;
int max_matedist = 100000;
int maximal_end_match_window = 15;
int min_border = 5;
Expand Down

0 comments on commit eead65a

Please sign in to comment.