Skip to content

Commit

Permalink
Merge pull request #117 from griffithlab/class_ii
Browse files Browse the repository at this point in the history
Also fix DQ class II alleles
  • Loading branch information
susannasiebert authored Apr 30, 2018
2 parents b4fae6a + 0a06eb2 commit 954e796
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/call_iedb.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def main(args_input = sys.argv[1:]):
data = {
'sequence_text': args.input_file.read(),
'method': args.method,
'allele': args.allele.replace('-DPB', '/DPB'),
'allele': args.allele.replace('-DPB', '/DPB').replace('-DQB', '/DQB'),
'user_tool': 'pVac-seq',
}
if args.epitope_length is not None:
Expand Down
2 changes: 1 addition & 1 deletion lib/prediction_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def iedb_executable_params(self, args):
'python2.7',
args.iedb_executable_path,
args.method,
args.allele.replace('-DPB', '/DPB'),
args.allele.replace('-DPB', '/DPB').replace('-DQB', '/DQB'),
args.input_file.name,
]

Expand Down

0 comments on commit 954e796

Please sign in to comment.