Esempio n. 1
0
def test_complement__multiple_nts_mixed_case():
    assert_equal(complement("aGtCn"), "tCaGn")
Esempio n. 2
0
def test_complement__multiple_nts_upper():
    assert_equal(complement(_REF_SRC), _REF_DST)
Esempio n. 3
0
def test_complement__multiple_nts_lower():
    assert_equal(complement(_REF_SRC.lower()), _REF_DST.lower())
Esempio n. 4
0
 def test_function(source, destination):
     assert_equal(complement(source), destination)
Esempio n. 5
0
def test_complement__multiple_nts_mixed_case():
    assert_equal(complement("aGtCn"), "tCaGn")
Esempio n. 6
0
def test_complement__multiple_nts_lower():
    assert_equal(complement(_REF_SRC.lower()), _REF_DST.lower())
Esempio n. 7
0
def test_complement__multiple_nts_upper():
    assert_equal(complement(_REF_SRC), _REF_DST)
Esempio n. 8
0
 def test_function(source, destination):
     assert_equal(complement(source), destination)