HI all,
I've been trying to run Freebayes variant caller on a pair of tumor-normal samples but I can't seem to get the bar column for the normal bam file or the tumor. The commands I tried were:
freebayes -F 0.01 -C 2 --pooled-continuous --fasta-reference efgenome.fa tumor/aligned_sorted.bam normal/aligned_sorted.bam > var_bayes_tumor_normal.vcf
freebayes -F 0.01 -C 2 --pooled-continuous --fasta-reference efgenome.fa tumor/aligned_sorted.bam -b normal/aligned_sorted.bam > var_bayes_tumor_normal.vcf
freebayes -F 0.01 -C 2 --pooled-continuous --fasta-reference efgenome.fa -b tumor/aligned_sorted.bam -b normal/aligned_sorted.bam > var_bayes_tumor_normal.vcf
Each of them only gave me one bar column, for example:
CHROM POS ID REF ALT QUAL FILTER INFO FORMAT bar
chr10 123240474 . G T 61.0498 . AB=0;ABP=0;AC=2... GT:DP:RO:QR:AO:QA:GL 1/1:2:0:0:2:77:-7.30883,-0.60206,0
I've read that Freebayes doesn't have a run option specifically for tumor-normal analysis but you can supply it with 2 bam files (or more) and do the analysis yourself. Has anyone succeeded in running freebayes on 2 bam files and getting 2 bar columns in the VCF or know how to interpret the VCF in regard to it's run on 2 separate bam files?
Hi Herzliya, I am getting the same issue and looking out for solution. Did you get turn around this?