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 don't think deleting _phasing from the code is the right fix here.
If you want a GBWT, right now you have to feed your VCFs to toil-vg construct via --vcf_phasing (for making the GBWT) in addition to via --vcf (for making the graph). If you turn off the check against --vcf_phasing being empty, you might just get an empty GBWT.
What we ought to do is use --vcf files if --vcf_phasing is not specified.
adamnovak
changed the title
construct fail
toil-vg construct fails at building the GBWT index if you haven't specially specified --vcf_phasing files
Jan 4, 2021
require(len(options.vcf_phasing) > 0, 'generating a GBWT requires a VCF with phasing information'). After delete
_phasing
it works again.The text was updated successfully, but these errors were encountered: