bcftools split and filter variants in vcf
1
2
Entering edit mode
6.2 years ago
bioguy24 ▴ 230

I use bcftools norm to split and left-normalize variants (like the line in file). After norm the variant is split correctly and annotated, my question is can the AF tag be used to filter out AF= below 20% in the command or is there another? So in this case the first split vatiant is filtered out. Thank you :).

before bcftools norm
chr4    187004216   .   TC  T,TT

after bcftools norm
chr4    187004217   187004217   C   -
AF=0.0305344;AO=130
chr4    187004217   187004217   C   T
AF=0.969466;AO=673

desired output
chr4    187004217   187004217   C   T
AF=0.969466;AO=673
ngs bcftools • 2.6k views
ADD COMMENT
2
Entering edit mode
6.2 years ago

You are certainly correct to normalise the file prior to filtering; otherwise, you would obtain unexpected results.

To filter on AF, use bcftools view, specifically the following parameters:

-q/Q, --min-af/--max-af

Kevin

ADD COMMENT
1
Entering edit mode

Thank you very much :).

ADD REPLY

Login before adding your answer.

Traffic: 1890 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6