Skip to content
Snippets Groups Projects
Commit 5fdc74c3 authored by Vermaat's avatar Vermaat
Browse files

Fix crash on variant without reference (thx Ivar)

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@418 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent 383b55f8
No related branches found
No related tags found
No related merge requests found
......@@ -1478,6 +1478,10 @@ def check_variant(description, output):
else:
record_id = parsed_description.RefSeqAcc
if not record_id:
output.addMessage(__file__, 4, 'ENOREF', 'No reference sequence given.')
return
gene_symbol = transcript_id = ''
database = Db.Cache()
......
......@@ -419,3 +419,10 @@ class TestVariantchecker():
check_variant('NG_005990.1:g.1del', self.output)
assert_equal(self.output.getIndexedOutput('genomicDescription', 0),
'NG_005990.1:g.1del')
def test_no_reference(self):
"""
Variant description without a reference.
"""
check_variant('g.244355733del', self.output)
assert_equal(len(self.output.getMessagesWithErrorCode('ENOREF')), 1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment