Skip to content
Snippets Groups Projects
Commit 8464555b authored by Vermaat's avatar Vermaat
Browse files

Fix unit tests for description extractor update

git-svn-id: https://humgenprojects.lumc.nl/svn/mutalyzer/trunk@598 eb6bd6ab-9ccd-42b9-aceb-e2899b4a52f1
parent c8f66129
No related branches found
No related tags found
No related merge requests found
......@@ -26,7 +26,7 @@ class TestDescribe():
"""
Test 1.
"""
result = describe.describeDNA(
result = describe.describe(
'ATGATGATCAGATACAGTGTGATACAGGTAGTTAGACAA',
'ATGATTTGATCAGATACATGTGATACCGGTAGTTAGGACAA')
description = describe.alleleDescription(result)
......@@ -36,7 +36,7 @@ class TestDescribe():
"""
Test 2.
"""
result = describe.describeDNA(
result = describe.describe(
'TAAGCACCAGGAGTCCATGAAGAAGATGGCTCCTGCCATGGAATCCCCTACTCTACTGTG',
'TAAGCACCAGGAGTCCATGAAGAAGCTGGATCCTCCCATGGAATCCCCTACTCTACTGTG')
description = describe.alleleDescription(result)
......@@ -46,7 +46,7 @@ class TestDescribe():
"""
Test 3.
"""
result = describe.describeDNA(
result = describe.describe(
'TAAGCACCAGGAGTCCATGAAGAAGATGGCTCCTGCCATGGAATCCCCTACTCTA',
'TAAGCACCAGGAGTCCATGAAGAAGCCATGTCCTGCCATGGAATCCCCTACTCTA')
description = describe.alleleDescription(result)
......@@ -56,7 +56,7 @@ class TestDescribe():
"""
Test 4.
"""
result = describe.describeDNA(
result = describe.describe(
'TAAGCACCAGGAGTCCATGAAGAAGATGGCTCCTGCCATGGAATCCCCTACTCTA',
'TAAGCACCAGGAGTCCATGAAGAAGCCATGTCCTGCCATGAATCCCCTACTCTA')
description = describe.alleleDescription(result)
......
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