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
Hi I encountered this while converting GCF_000001405.33_GRCh38.p7_genomic.gff.
I got an error about a string and int value being passed as operands to the - operator.
-
In gff_to_bed.py, line 90 is missing some parentheses:
89 out_print = [ent1['chr'], 90 '%d' % int(ent1['start'])-1, 91 '%d' % int(ent1['stop']),
This fixed the issue:
89 out_print = [ent1['chr'], 90 '%d' % (int(ent1['start'])-1), 91 '%d' % int(ent1['stop']),
Thanks for the great tool!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi I encountered this while converting GCF_000001405.33_GRCh38.p7_genomic.gff.
I got an error about a string and int value being passed as operands to the
-
operator.In gff_to_bed.py, line 90 is missing some parentheses:
This fixed the issue:
Thanks for the great tool!
The text was updated successfully, but these errors were encountered: