redirecting vcftools file - tips
1
0
Entering edit mode
9.6 years ago
muralinmars ▴ 100

Hi all,

Here is the code that gets the VCF file from a specific region using tabix and then filters it for specific (european) population using 'keep' option from vcftools.

#select specific population
if [ "$POP_FILE" != "" ]; then
    vcftools --vcf temp.vcf --keep $POP_FILE --recode --recode-INFO-all > temp2.vcf 2> /dev/null
else
    cp -f temp.vcf temp2.vcf    
fi

PROBLEM: it creates the recode.vcf file but then the redirection is not happening as the temp2 file is empty

Any suggestions please

linux sequencing vcftools • 1.8k views
ADD COMMENT
1
Entering edit mode
9.6 years ago

Have you tried adding --stdout to the vcftools command?

ADD COMMENT

Login before adding your answer.

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