Skip to content

Commit

Permalink
Modify default parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
liqingtian authored Jul 26, 2016
1 parent c2b2a92 commit 247258c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/filter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ int main_filter(int argc,char *argv[])
{
int c;
int depthcutoff = 20;
int GQcutoff = 50;
int GQcutoff = 100;
string type, ifile, ofile;

while ((c = getopt(argc, argv, "i:d:q:t:o:")) >= 0) {
Expand Down Expand Up @@ -40,8 +40,8 @@ int main_filter(int argc,char *argv[])
<<" hetero_nonAS: heterozygous SNV with non allele-specific binding\n"
<<"Options:\n"
<<" [-d depthCutoff] Keep the SNVs with read depth >= depthCutoff (Default:20). Must be a positive integer\n"
<<" [-q GQCutoff] Genotype quality cutoff. (Recommend: 50 for heterozygous SNVs and 10 for\n"
<<" homozygous SNVs. Default: 50) Must be a positive integer.\n";
<<" [-q GQCutoff] Genotype quality cutoff. (Recommend: 100 for heterozygous SNVs and 10 for\n"
<<" homozygous SNVs. Default: 100) Must be a positive integer.\n";
return 1;
}
string sbuf,INFO,s1,s2,s3,s4,s5,s6,s7,s8,s9;
Expand Down

0 comments on commit 247258c

Please sign in to comment.