def test_A2_HIV_epitope():
    # Test the A2 HIV epitope SLYNTVATL from
    #    The HIV-1 HLA-A2-SLYNTVATL Is a Help-Independent CTL Epitope
    model = load.from_allele_name("HLA-A*02:01")
    ic50s = model.predict(["SLYNTVATL"])
    print(ic50s)
    assert len(ic50s) == 1
    ic50 = ic50s[0]
    assert ic50 <= 500, ic50
def test_A1_MAGE_epitope():
    # Test the A1 MAGE epitope EVDPIGHLY from
    #   Identification of a Titin-Derived HLA-A1-Presented Peptide
    #   as a Cross-Reactive Target for Engineered MAGE A3-Directed
    #   T Cells
    model = load.from_allele_name("HLA-A*01:01")
    ic50s = model.predict(["EVDPIGHLY"])
    print(ic50s)
    assert len(ic50s) == 1
    ic50 = ic50s[0]
    assert ic50 <= 500, ic50