We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[chrom, start_ins, end_ins] = dustspec.split("'")[1].split("_") in vcfy() doesn't work with chromosomes like 'chr1_KI270706v1_random`
[chrom, start_ins, end_ins] = dustspec.split("'")[1].split("_")
vcfy()
This results in a ValueError: too many values to unpack.
The text was updated successfully, but these errors were encountered:
I am now "silencing" this error by removing all chromosomes with a _, but this is not a permanent solution and should be handled in vcfy().
_
Sorry, something went wrong.
exclude chromosomes with a '_'
717492e
this prevents the problem in #49 but is not a good solution
No branches or pull requests
[chrom, start_ins, end_ins] = dustspec.split("'")[1].split("_")
invcfy()
doesn't work with chromosomes like 'chr1_KI270706v1_random`This results in a ValueError: too many values to unpack.
The text was updated successfully, but these errors were encountered: