Skip to content
Snippets Groups Projects
Commit 2c25d99a authored by Alex Rubinsteyn's avatar Alex Rubinsteyn
Browse files

added missing class1 file

parent 79e76cf9
No related branches found
No related tags found
No related merge requests found
import pandas as pd
from .mhc1_binding_predictor import Mhc1BindingPredictor
def predict(alleles, peptides):
allele_dataframes = []
for allele in alleles:
model = Mhc1BindingPredictor(allele=allele)
df = model.predict_peptides(peptides)
allele_dataframes.append(df)
return pd.concat(allele_dataframes)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment