Hello, I try to extract GT information from FORMAT field in my .vcf file using fuc.pyvcf submodule. When I try to run my script:
from fuc import pyvcf
import pandas as pd
vf = pyvcf.VcfFrame.from_file('P1_test.vcf')
vf.df
vf.extract_format('GT')
I've got the error:
Traceback (most recent call last): File "/home/tomasz/Pulpit/burak/vcf_open.py", line 8, in <module> vf.extract_format('GT') AttributeError: 'VcfFrame' object has no attribute 'extract_format'
Any ideas how to solve it? Thanks a lot!