Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mhc_rank
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Patrick Skillman-Lawrence
mhc_rank
Commits
92abfb6e
Commit
92abfb6e
authored
9 years ago
by
Alex Rubinsteyn
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of github.com:hammerlab/mhcflurry
parents
cb347e11
693dd767
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+3
-0
3 additions, 0 deletions
.gitignore
README.md
+29
-2
29 additions, 2 deletions
README.md
with
32 additions
and
2 deletions
.gitignore
+
3
−
0
View file @
92abfb6e
...
...
@@ -55,3 +55,6 @@ docs/_build/
# PyBuilder
target/
# Data files
*.zip
This diff is collapsed.
Click to expand it.
README.md
+
29
−
2
View file @
92abfb6e
# mhcflurry
Peptide-MHC binding affinity prediction
## Getting Started: Download, Normalize, and Combine Training Data
## Quickstart
Set up the Python environment:
```
# (set up environment)
pip install scipy Cython
pip install h5py
python setup.py develop
```
Download, Normalize, and Combine Training Data:
(make sure you have
`wget`
available, e.g.
`brew install wget`
on Mac OS X)
```
scripts/download-iedb.sh
...
...
@@ -10,9 +23,23 @@ scripts/create-iedb-class1-dataset.py
scripts/create-combined-class1-dataset.py
```
##
Getting Started:
Train Neural Network Models
## Train Neural Network Models
```
scripts/train-class1-allele-specific-models.py
```
This will train separate models for each HLA type.
## Making predictions
```
python
from
mhcflurry
import
Mhc1BindingPredictor
predictor
=
Mhc1BindingPredictor
(
'
A0201
'
)
predictor
.
predict_peptides
([
'
SIINFEKL
'
])
```
```
Allele Peptide Prediction
0 A0201 SIINFEKL 586.730529
```
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment