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
Generally VCF files are accompanied by an index file, and from this file the number of variants can be obtained. For example with bcftools: bcftools index --nrecords <in.vcf.gz>
This could be used to speed up the seqVCF2GDS function by avoiding the variant counting step. As this step is currently single threaded, it contributes significantly to the run-time when converting large VCF files.
The text was updated successfully, but these errors were encountered:
Generally VCF files are accompanied by an index file, and from this file the number of variants can be obtained. For example with bcftools:
bcftools index --nrecords <in.vcf.gz>
This could be used to speed up the seqVCF2GDS function by avoiding the variant counting step. As this step is currently single threaded, it contributes significantly to the run-time when converting large VCF files.
The text was updated successfully, but these errors were encountered: