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