Python odczytaj linię pliku VCF według linii
with open('example.vcf', mode='r') as vcf:
print(vcf.read())
Clumsy Capuchin
with open('example.vcf', mode='r') as vcf:
print(vcf.read())