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

added web API and python3 compat

parent b8e4f2ef
No related branches found
No related tags found
No related merge requests found
...@@ -12,6 +12,12 @@ ...@@ -12,6 +12,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from __future__ import (
print_function,
division,
absolute_import,
)
def parse_int_list(s): def parse_int_list(s):
return [int(part.strip() for part in s.split(","))] return [int(part.strip() for part in s.split(","))]
......
...@@ -12,7 +12,13 @@ ...@@ -12,7 +12,13 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from __future__ import (
print_function,
division,
absolute_import,
)
from collections import namedtuple from collections import namedtuple
import pandas as pd import pandas as pd
import numpy as np import numpy as np
......
...@@ -12,6 +12,12 @@ ...@@ -12,6 +12,12 @@
# See the License for the specific language governing permissions and # See the License for the specific language governing permissions and
# limitations under the License. # limitations under the License.
from __future__ import (
print_function,
division,
absolute_import,
)
import keras import keras
from keras.models import Sequential from keras.models import Sequential
from keras.layers.core import Dense, Activation, Flatten, Dropout from keras.layers.core import Dense, Activation, Flatten, Dropout
......
...@@ -15,7 +15,11 @@ ...@@ -15,7 +15,11 @@
""" """
Allele specific MHC Class I binding affinity predictor Allele specific MHC Class I binding affinity predictor
""" """
from __future__ import (
print_function,
division,
absolute_import,
)
from os import listdir from os import listdir
from os.path import exists, join from os.path import exists, join
from itertools import groupby from itertools import groupby
...@@ -110,7 +114,7 @@ class Mhc1BindingPredictor(object): ...@@ -110,7 +114,7 @@ class Mhc1BindingPredictor(object):
return [ return [
peptide[:i] + extra_amino_acid + peptide[i:] peptide[:i] + extra_amino_acid + peptide[i:]
for peptide in peptides for peptide in peptides
for i in xrange(3, 8) for i in range(3, 8)
for extra_amino_acid in amino_acid_letters for extra_amino_acid in amino_acid_letters
] ]
else: else:
...@@ -141,7 +145,7 @@ class Mhc1BindingPredictor(object): ...@@ -141,7 +145,7 @@ class Mhc1BindingPredictor(object):
raw_y = self._predict_9mer_peptides(expanded_peptides) raw_y = self._predict_9mer_peptides(expanded_peptides)
median_y = np.zeros(n_group) median_y = np.zeros(n_group)
# take the median of each group of log(IC50) values # take the median of each group of log(IC50) values
for i in xrange(n_group): for i in range(n_group):
start = i * expansion_factor start = i * expansion_factor
end = (i + 1) * expansion_factor end = (i + 1) * expansion_factor
median_y[i] = np.median(raw_y[start:end]) median_y[i] = np.median(raw_y[start:end])
......
...@@ -6,6 +6,12 @@ Combine 2013 Kim/Peters NetMHCpan dataset[*] with more recent IEDB entries ...@@ -6,6 +6,12 @@ Combine 2013 Kim/Peters NetMHCpan dataset[*] with more recent IEDB entries
* = "Dataset size and composition impact the reliability..." * = "Dataset size and composition impact the reliability..."
""" """
from __future__ import (
print_function,
division,
absolute_import,
unicode_literals
)
from os.path import join from os.path import join
import pickle import pickle
from collections import Counter from collections import Counter
......
#!/usr/bin/env python
# Copyright (c) 2015. Mount Sinai School of Medicine
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import (
print_function,
division,
absolute_import,
unicode_literals
)
import argparse
from bottle import post, request, run
from mhcflurry.common import (
split_uppercase_sequences,
split_allele_names,
)
from mhcflurry.class1 import predict
parser = argparse.ArgumentParser()
parser.add_argument("--host", default="0.0.0.0")
parser.add_argument("--port", default=80, type=int)
parser.add_argument("--debug", default=False, action="store_true")
@post('/')
def get_binding_value():
peptides_string = request.forms.get('peptide')
peptides_list = split_uppercase_sequences(peptides_string)
alleles_string = request.forms.get('allele')
alleles_list = split_allele_names(alleles_string)
result_df = predict(alleles=alleles_list, peptides=peptides_list)
return result_df.to_csv(sep="\t", index=False)
if __name__ == "__main__":
args = parser.parse_args()
run(host=args.host, port=args.port, debug=args.debug)
\ No newline at end of file
...@@ -15,16 +15,20 @@ ...@@ -15,16 +15,20 @@
# limitations under the License. # limitations under the License.
from __future__ import (
print_function,
division,
absolute_import,
# unicode_literals
)
import argparse import argparse
import pandas as pd
from mhcflurry.common import ( from mhcflurry.common import (
parse_int_list, parse_int_list,
split_uppercase_sequences, split_uppercase_sequences,
split_allele_names split_allele_names,
) )
from mhcflurry import Mhc1BindingPredictor from mhcflurry.class1 import predict
parser = argparse.ArgumentParser() parser = argparse.ArgumentParser()
...@@ -48,10 +52,5 @@ parser.add_argument("--peptide-lengths", ...@@ -48,10 +52,5 @@ parser.add_argument("--peptide-lengths",
if __name__ == "__main__": if __name__ == "__main__":
args = parser.parse_args() args = parser.parse_args()
allele_dataframes = [] df = predict(alleles=args.mhc, peptides=args.sequence)
for allele in args.mhc: print(df.to_csv(sep="\t", index=False), end="")
model = Mhc1BindingPredictor(allele=allele)
df = model.predict_peptides(args.sequence)
allele_dataframes.append(df)
combined = pd.concat(allele_dataframes)
print combined
...@@ -17,6 +17,12 @@ Using the following hyperparameters: ...@@ -17,6 +17,12 @@ Using the following hyperparameters:
Nielsen 2009 dataset. Nielsen 2009 dataset.
""" """
from __future__ import (
print_function,
division,
absolute_import,
unicode_literals
)
from shutil import rmtree from shutil import rmtree
from os import makedirs from os import makedirs
from os.path import exists, join from os.path import exists, join
......
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