Example #1
0
def test_antiparallel_c():
    assert antiparallel('C') == 'G'
Example #2
0
def test_antiparallel_t():
    assert antiparallel('T') == 'A'
Example #3
0
def test_antiparallel_a():
    assert antiparallel('A') == 'T'
Example #4
0
def test_antiparallel_empty_string():
    assert antiparallel('') == ''
Example #5
0
def test_antiparallel_gtca():
    assert antiparallel('GTCA') == 'TGAC'
Example #6
0
def test_antiparallel_gggg():
    assert antiparallel('GGGG') == 'CCCC'
Example #7
0
def test_antiparallel_g():
    assert antiparallel('G') == 'C'