You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to generate a consensus with the ClinVar VCF file (FTP link: ftp://ftp.ncbi.nlm.nih.gov/pub/clinvar/vcf_GRCh37/clinvar_20190715.vcf.gz).
However, the file does not contain genotype information (no samples). This seems to trigger an IndexError while parsing in __init__.py (line 1111).
I'm fairly new to working with VCF files in general - please let me know if I'm overlooking anything.
The text was updated successfully, but these errors were encountered:
This might be the wrong tool for the task. Currently, FastaVariant only incorporates genotypes from individual samples in a VCF, and only SNPs and MNPs, not indels (see #84). If you're trying to add ClinVar alleles prior to alignment, I might suggest you use something like hisat2 to build a graph-based index. Otherwise, if you want to make a consensus FASTA from this VCF, I think FastaAlternateReferenceMaker will do the trick.
I am trying to generate a consensus with the ClinVar VCF file (FTP link: ftp://ftp.ncbi.nlm.nih.gov/pub/clinvar/vcf_GRCh37/clinvar_20190715.vcf.gz).
However, the file does not contain genotype information (no samples). This seems to trigger an IndexError while parsing in
__init__.py
(line 1111).I'm fairly new to working with VCF files in general - please let me know if I'm overlooking anything.
The text was updated successfully, but these errors were encountered: