fprintf(stderr," --rename-chrs <file> rename sequences according to map file: from\\tto\n");
fprintf(stderr," -s, --samples [^]<list> comma separated list of samples to annotate (or exclude with \"^\" prefix)\n");
fprintf(stderr," -S, --samples-file [^]<file> file of samples to annotate (or exclude with \"^\" prefix)\n");
fprintf(stderr," -x, --remove <list> list of annotations to remove (e.g. ID,INFO/DP,FORMAT/DP,FILTER). See man page for details\n");
fprintf(stderr," -x, --remove <list> list of annotations (e.g. ID,INFO/DP,FORMAT/DP,FILTER) to remove (or keep with \"^\" prefix). See man page for details\n");
fprintf(stderr," --threads <int> number of extra output compression threads [0]\n");
fprintf(stderr,"\n");
exit(1);
...
...
@@ -1901,6 +1906,7 @@ int main_vcfannotate(int argc, char *argv[])
staticstructoptionloptions[]=
{
{"keep-sites",required_argument,NULL,'k'},
{"mark-sites",required_argument,NULL,'m'},
{"set-id",required_argument,NULL,'I'},
{"output",required_argument,NULL,'o'},
...
...
@@ -1921,9 +1927,10 @@ int main_vcfannotate(int argc, char *argv[])
fprintf(bcftools_stderr," --rename-chrs <file> rename sequences according to map file: from\\tto\n");
fprintf(bcftools_stderr," -s, --samples [^]<list> comma separated list of samples to annotate (or exclude with \"^\" prefix)\n");
fprintf(bcftools_stderr," -S, --samples-file [^]<file> file of samples to annotate (or exclude with \"^\" prefix)\n");
fprintf(bcftools_stderr," -x, --remove <list> list of annotations to remove (e.g. ID,INFO/DP,FORMAT/DP,FILTER). See man page for details\n");
fprintf(bcftools_stderr," -x, --remove <list> list of annotations (e.g. ID,INFO/DP,FORMAT/DP,FILTER) to remove (or keep with \"^\" prefix). See man page for details\n");
fprintf(bcftools_stderr," --threads <int> number of extra output compression threads [0]\n");
fprintf(bcftools_stderr,"\n");
exit(1);
...
...
@@ -1903,6 +1908,7 @@ int main_vcfannotate(int argc, char *argv[])
staticstructoptionloptions[]=
{
{"keep-sites",required_argument,NULL,'k'},
{"mark-sites",required_argument,NULL,'m'},
{"set-id",required_argument,NULL,'I'},
{"output",required_argument,NULL,'o'},
...
...
@@ -1923,9 +1929,10 @@ int main_vcfannotate(int argc, char *argv[])