converting VCF files to TSV file
How do we convert a large vcf file to tsv file?
• 2,097 views
•
link
2 answers
a vcf is de-facto a TSV file with a header.
you can also have a look at bcftools query -f
• 0 views
•
link
You can try grep -v "^#" file.vcf > file.tsv but of course you discard all metadata
• 0 views
•
link
Log in to answer this question.