You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I may implement this at some point, but this is relatively low-priority since (i) bcftools already handles this and (ii) if bcftools is really too slow, splitting this type of filter across two plink2 commands isn't a big deal.
Is it possible to implement an improvement to this flag to allow for multiple INFO filters in the initial vcf to pgen conversion?
plink2 --vcf file.vcf --extract-if-info "A == 1" --extract-if-info "B == 2" --make-pgen
This results in the following error:
Error: Duplicate --extract-if-info flag.
Ideally, I have an INFO flag which I would like to filter like
"0 < A < 1"
as well, i.e. I'd like to do:plink2 --vcf file.vcf --extract-if-info "(0 < A < 1) && (B == 2)" --make-pgen
or some form of thatThanks!
(Using Jan 5 a5.10 build)
The text was updated successfully, but these errors were encountered: