@@ -139,7 +139,7 @@ static const char *usage_text(void)
139
139
" -p, --annot-prefix prefix of INFO annotations to be created after splitting the CSQ string\n"
140
140
" -s, --select TR:CSQ TR, transcript: worst,primary,all [all]\n"
141
141
" CSQ, consequence: any,missense,missense+,etc [any]\n"
142
- " -S, --severity ? |FILE ? : print the default severity scale\n"
142
+ " -S, --severity - |FILE - : print the default severity scale\n"
143
143
" FILE: override the default scale\n"
144
144
"Common options:\n"
145
145
" -e, --exclude EXPR exclude sites and samples for which the expression is true\n"
@@ -155,14 +155,17 @@ static const char *usage_text(void)
155
155
" # List available fields of the INFO/CSQ annotation\n"
156
156
" bcftools +split-vep -l file.vcf.gz\n"
157
157
"\n"
158
+ " # List the default severity scale\n"
159
+ " bcftools +split-vep -S -\n"
160
+ "\n"
158
161
" # Extract Consequence, IMPACT and gene SYMBOL of the most severe consequence into\n"
159
162
" # INFO annotations starting with the prefix \"vep\". For brevity, the columns can\n"
160
163
" # be given also as 0-based indexes\n"
161
164
" bcftools +split-vep -c Consequence,IMPACT,SYMBOL -s worst -p vep file.vcf.gz\n"
162
165
" bcftools +split-vep -c 1-3 -s worst -p vep file.vcf.gz\n"
163
166
"\n"
164
167
" # Same as above but use the text output of the \"bcftools query\" format\n"
165
- " bcftools +split-vep -c Consequence,IMPACT,SYMBOL - s worst -f '%CHROM %POS %Consequence %IMPACT %SYMBOL\\n' file.vcf.gz\n"
168
+ " bcftools +split-vep -s worst -f '%CHROM %POS %Consequence %IMPACT %SYMBOL\\n' file.vcf.gz\n"
166
169
"\n" ;
167
170
}
168
171
0 commit comments