Python Leia o arquivo vcf linha por linha
with open('example.vcf', mode='r') as vcf:
print(vcf.read())
Clumsy Capuchin
with open('example.vcf', mode='r') as vcf:
print(vcf.read())