BCFTools - empty output
0
0
Entering edit mode
3.5 years ago
storm1907 ▴ 30

Hi,

I need to convert vcf to fasta and after make multifasta file. However I am stuck in getting empty output files with this script

I would like to ask for a help

#!bin/bash
for file in $inpath/*.filtered ;
do
        echo $file
        bname=$(basename $file)
        echo "base name is $bname"
        bfile=$outpath1/$bname".gz"
        outfile=$outpath/$bname".fasta"
        bgzip -c $file > $bfile
        bcftools index $bfile
        samtools faidx $reference | bcftools consensus -s $bfile -o $outfile
done
sequence • 757 views
ADD COMMENT
0
Entering edit mode

What kind of file is $bfile? a compressed vcf? Doesn't bcf consensus need to be told what the fasta reference is?

ADD REPLY
0
Entering edit mode

bfile is a compressed vcf. I wrote syntax like samtools faidx $reference NC_045512.2:1-29903 but still nothing

ADD REPLY

Login before adding your answer.

Traffic: 1653 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