Skip to content
Snippets Groups Projects
Commit 6ead8b65 authored by Vermaat's avatar Vermaat
Browse files

Unit tests for GI references

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@470 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent 14bb6c53
No related branches found
No related tags found
No related merge requests found
......@@ -460,3 +460,39 @@ class TestVariantchecker():
but we should not crash on it.
"""
check_variant('NC_002128(tagA):c.3del', self.output)
def test_gi_reference_plain(self):
"""
Test reference sequence notation with GI number.
"""
check_variant('31317229:c.6del', self.output)
error_count, _, _ = self.output.Summary()
assert_equal(error_count, 0)
assert_equal(self.output.getIndexedOutput('genomicDescription', 0),
'31317229:n.105del')
assert '31317229(FCER1A_v001):c.6del' \
in self.output.getOutput('descriptions')
def test_gi_reference_prefix(self):
"""
Test reference sequence notation with GI number and prefix.
"""
check_variant('GI31317229:c.6del', self.output)
error_count, _, _ = self.output.Summary()
assert_equal(error_count, 0)
assert_equal(self.output.getIndexedOutput('genomicDescription', 0),
'31317229:n.105del')
assert '31317229(FCER1A_v001):c.6del' \
in self.output.getOutput('descriptions')
def test_gi_reference_prefix_colon(self):
"""
Test reference sequence notation with GI number and prefix with colon.
"""
check_variant('GI:31317229:c.6del', self.output)
error_count, _, _ = self.output.Summary()
assert_equal(error_count, 0)
assert_equal(self.output.getIndexedOutput('genomicDescription', 0),
'31317229:n.105del')
assert '31317229(FCER1A_v001):c.6del' \
in self.output.getOutput('descriptions')
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