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_complement__multiple_nts_mixed_case():
    assert complement("aGtCn") == "tCaGn"
Esempio n. 5
0
 def test_function(source, destination):
     assert_equal(complement(source), destination)
Esempio n. 6
0
def test_complement__multiple_nts_upper():
    assert complement(_REF_SRC) == _REF_DST
Esempio n. 7
0
def test_complement__multiple_nts_lower():
    assert complement(_REF_SRC.lower()) == _REF_DST.lower()
Esempio n. 8
0
def test_complement__single_nt(src, dst):
    assert complement(src) == dst
    assert complement(src.lower()) == dst.lower()
Esempio n. 9
0
def test_complement__multiple_nts_mixed_case():
    assert_equal(complement("aGtCn"), "tCaGn")
Esempio n. 10
0
def test_complement__multiple_nts_lower():
    assert_equal(complement(_REF_SRC.lower()), _REF_DST.lower())
Esempio n. 11
0
def test_complement__multiple_nts_upper():
    assert_equal(complement(_REF_SRC), _REF_DST)
Esempio n. 12
0
 def test_function(source, destination):
     assert_equal(complement(source), destination)