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
a list of tuples: [(1234, 4)]
def calc_aln_length( aln_intervals: list[tuple] ) -> int: itree = IntervalTree.from_tuples(aln_intervals)
produces this error: ValueError: IntervalTree: Null Interval objects not allowed in IntervalTree: Interval(1234, 4)
What is the problem ? This is not the expected behavior
The text was updated successfully, but these errors were encountered:
nevermind it turns out that the begin and end coords were mixed up as you can see it should have been [(2, 1234)]
Sorry, something went wrong.
No branches or pull requests
a list of tuples:
[(1234, 4)]
def calc_aln_length( aln_intervals: list[tuple] ) -> int:
itree = IntervalTree.from_tuples(aln_intervals)
produces this error:
ValueError: IntervalTree: Null Interval objects not allowed in IntervalTree: Interval(1234, 4)
What is the problem ? This is not the expected behavior
The text was updated successfully, but these errors were encountered: