-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Fix variant reading into intron #83
Conversation
…ant that runs into the intron, for some transcript.
…ariant/transcript pairs.
1 similar comment
@@ -10,6 +10,6 @@ set -o errexit | |||
find . -name '*.py' \ | |||
| xargs pylint \ | |||
--errors-only \ | |||
--disable=print-statement,unsubscriptable-object,not-an-iterable,no-member | |||
--disable=print-statement,unsubscriptable-object,not-an-iterable,no-member,invalid-unary-operand-type |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ha, where did this error pop up?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in isovar.read_helpers line 59 :)
test/test_reference_sequence_key.py
Outdated
variant=variant, | ||
transcript=transcript, | ||
context_size=10) | ||
assert sequence_key == None, '%s\n%s' % (sequence_key, transcript) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: Use is
for comparing to None
(https://www.python.org/dev/peps/pep-0008/#programming-recommendations)
Fixes #82
This change is