Actually I would like to generate a ped file with many vcf input file. I tried
ls *vcf | xargs vcf-merge > merged.vcf
However, it could not work with an error message as
exited with status 255; abortingxargs: vcf-merge
I am running vcftool on multi vcf documents. I could run vcftools with one vcf document and how could I run with a list of vcf documents?
Actually I would like to generate a ped file with many vcf input file. I tried
ls *vcf | xargs vcf-merge > merged.vcf
However, it could not work with an error message as
exited with status 255; abortingxargs: vcf-merge
Use Linux for loops: http://www.thegeekstuff.com/2011/07/bash-for-loop-examples/
Update: So you're using vcf-merge. I don't see why your title has zip files in it. I also think vcf-merge *.vcf should work thanks to shell globbing.
Actually I would like to generate a ped file with many vcf input file. I tried
ls *vcf | xargs vcf-merge > merged.vcf
However, it could not work with an error message as
exited with status 255; abortingxargs: vcf-merge
Log in to answer this question.