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
Investigate whether VCF files downloaded from the GDC portal work with the vcf track type.
Note: VCF tracks require the VCF file to be gzipped and an index file to exist.
There are two parts to this.
Download a VCF file and generate the index file locally (may need to run bgzip). Using these two files, create a VCF track. Does this work?
Find a VCF file with an existing index. Set the URLtemplate path of a VCF track (and index path) to these locations (requires using the authentication token)
Use samtools tabix to create the index file.
Post your results to the investigation as a comment here.
The text was updated successfully, but these errors were encountered:
No index file, used “tabix -p vcf file.vcf.gz” to generate
download from UI uses folder structure, would download via API just get the file?
if vcf file is not .gz, must run “bgzip -c file.vcf > file.vcf.gz” before creating index
I used the following configuration
[tracks.vcf]
urlTemplate=6abc7d24-74d1-4e62-975c-753aec620201.vep.vcf.gz
storeClass=JBrowse/Store/SeqFeature/VCFTabix
type=JBrowse/View/Track/HTMLVariants
This assumed the index file was named 6abc7d24-74d1-4e62-975c-753aec620201.vep.vcf.gz.tbi and in the same dir (jbrowse/data) as the vcf file.
Investigate whether VCF files downloaded from the GDC portal work with the vcf track type.
Note: VCF tracks require the VCF file to be gzipped and an index file to exist.
There are two parts to this.
Use samtools tabix to create the index file.
Post your results to the investigation as a comment here.
The text was updated successfully, but these errors were encountered: