Entering edit mode
8 months ago
realtreeecat
•
0
How do we convert a large vcf file to tsv file?
How do we convert a large vcf file to tsv file?
a vcf is de-facto a TSV file with a header.
you can also have a look at bcftools query -f
You can try grep -v "^#" file.vcf > file.tsv
but of course you discard all metadata
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.