Exemplo n.º 1
0
def test_SIINFEKL_round_trip():
    eq_(int_to_peptide(peptide_to_int("SIINFEKL")), "SIINFEKL")
Exemplo n.º 2
0
def test_SIINFEKL_drop_multiple_letters():
    eq_(
        int_to_peptide(
            drop_last_letter(
                drop_first_letter(drop_last_letter(
                    peptide_to_int("SIINFEKL"))))), "IINFE")
Exemplo n.º 3
0
def test_RRR_round_trip():
    eq_(int_to_peptide(peptide_to_int("RRR")), "RRR")
Exemplo n.º 4
0
def test_SIINFEKL_drop_last_letter():
    eq_(int_to_peptide(drop_last_letter(peptide_to_int("SIINFEKL"))),
        "SIINFEK")