コード例 #1
0
ファイル: sequences_test.py プロジェクト: muslih14/paleomix
def test_complement__multiple_nts_mixed_case():
    assert_equal(complement("aGtCn"), "tCaGn")
コード例 #2
0
ファイル: sequences_test.py プロジェクト: muslih14/paleomix
def test_complement__multiple_nts_upper():
    assert_equal(complement(_REF_SRC), _REF_DST)
コード例 #3
0
ファイル: sequences_test.py プロジェクト: muslih14/paleomix
def test_complement__multiple_nts_lower():
    assert_equal(complement(_REF_SRC.lower()), _REF_DST.lower())
コード例 #4
0
ファイル: sequences_test.py プロジェクト: tmancill/paleomix
def test_complement__multiple_nts_mixed_case():
    assert complement("aGtCn") == "tCaGn"
コード例 #5
0
ファイル: sequences_test.py プロジェクト: muslih14/paleomix
 def test_function(source, destination):
     assert_equal(complement(source), destination)
コード例 #6
0
ファイル: sequences_test.py プロジェクト: tmancill/paleomix
def test_complement__multiple_nts_upper():
    assert complement(_REF_SRC) == _REF_DST
コード例 #7
0
ファイル: sequences_test.py プロジェクト: tmancill/paleomix
def test_complement__multiple_nts_lower():
    assert complement(_REF_SRC.lower()) == _REF_DST.lower()
コード例 #8
0
ファイル: sequences_test.py プロジェクト: tmancill/paleomix
def test_complement__single_nt(src, dst):
    assert complement(src) == dst
    assert complement(src.lower()) == dst.lower()
コード例 #9
0
def test_complement__multiple_nts_mixed_case():
    assert_equal(complement("aGtCn"), "tCaGn")
コード例 #10
0
def test_complement__multiple_nts_lower():
    assert_equal(complement(_REF_SRC.lower()), _REF_DST.lower())
コード例 #11
0
def test_complement__multiple_nts_upper():
    assert_equal(complement(_REF_SRC), _REF_DST)
コード例 #12
0
 def test_function(source, destination):
     assert_equal(complement(source), destination)