This is the official development repository for BCFtools. See installation instructions and other documentation here http://samtools.github.io/bcftools/howtos/install.html
I have a VCF without genotypes or FORMAT column. The ALT field can have multiple alleles. Example:
#CHROM POS ID REF ALT QUAL FILTER INFO
test 1478 . C T,A 3232 PASS DP=36715;AF=0.120142;SB=132;DP4=103,159,2782,1629
Is it possible to apply all ALT alleles but not the REF allele to a consensus with IUPAC? I tried bcftools consensus -f ref.fna --iupac-codes test.vcf.gz but I'm getting an H at this position instead of W. I also tried --haplotype but it did not appear to impact behaviour as missing the sample info.
Currently not. An easy workaround would be to add the FORMAT/GT column referring to the alternate alleles and run with -H I. I'll mark it as enhancement
I have a VCF without genotypes or FORMAT column. The ALT field can have multiple alleles. Example:
Is it possible to apply all ALT alleles but not the REF allele to a consensus with IUPAC? I tried
bcftools consensus -f ref.fna --iupac-codes test.vcf.gz
but I'm getting anH
at this position instead ofW
. I also tried--haplotype
but it did not appear to impact behaviour as missing the sample info.Thanks!