Exemplo n.º 1
0
def test_two_letters(transcript):
    res = transcript.utr3_motif_counts("AC")
    assert res == 64
Exemplo n.º 2
0
def test_seven_letters(transcript):
    res = transcript.utr3_motif_counts("TGTAAAA")
    assert res == 0
Exemplo n.º 3
0
def test_six_letters(transcript):
    res = transcript.utr3_motif_counts("CAGCTG")
    assert res == 2
Exemplo n.º 4
0
def test_five_letters(transcript):
    res = transcript.utr3_motif_counts("GAGTT")
    assert res == 2
Exemplo n.º 5
0
def test_four_letters(transcript):
    res = transcript.utr3_motif_counts("ACCA")
    assert res == 4
Exemplo n.º 6
0
def test_three_letters(transcript):
    res = transcript.utr3_motif_counts("TTT")
    assert res == 14