-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathNeoRecoPoBlend.py
138 lines (106 loc) · 4.97 KB
/
NeoRecoPoBlend.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
#!/usr/bin/env python
'''
@author: Ryan Schenck, [email protected]
'''
import sys
import os
import argparse
from collections import OrderedDict
try:
import ConfigParser as configparser # for python 2
except:
import configparser # for python 3
def Parser():
# get user variables
parser = argparse.ArgumentParser()
requiredNamed = parser.add_argument_group('Required arguments')
requiredNamed.add_argument("-o", '--output', dest="output", default="", type=str, help="Output Directory.")
requiredNamed.add_argument("-i", '--neopred_in', dest="neoPredIn", default=None, type=str,help="Input neoantigen predictions, must be filtered on binding affinity. Example: -i ./AllSamples.neoantigens.txt")
requiredNamed.add_argument("-w", '--wt_neo_table', dest="wt_neo_table", default=None, type=str,help="Intermediary file created by NeoRecoPo, this contains the WT and neoantigen binding affinities.")
requiredNamed.add_argument("-r", '--RecoPreds', dest="recopreds", default=None, type=str,help="Final output of NeoRecoPo containing the Recognition Potentials.")
requiredNamed.add_argument("-s", '--SampleTypes', dest="SamTypes", default=None)
Options = parser.parse_args() # main user args
if not Options.neoPredIn or not Options.wt_neo_table:
parser.error("Some of the required arguments were not provided. Please check required arguments.")
return(Options)
def loadPreds(fileName):
refDict = OrderedDict()
with open(fileName, 'r') as inputFile:
lines = [line.replace('\n', '').split('\t') for line in inputFile.readlines()]
for i, line in enumerate(lines):
if len(line) < 26:
line.append('')
line.append('')
lines[i] = line
if lines[0][0].startswith("Sample"):
header = lines[0][0]
else:
regionNums = 0
for i in range(1, len(lines[0])):
if lines[0][i].startswith('line'):
break
else:
regionNums += 1
header = '\t'.join(
['Sample', '\t'.join(['R' + str(i) for i in range(1, regionNums + 1)]), 'Line', 'Chr', 'AllelePos', 'Ref',
'Alt', 'Symbol', 'Pos', 'hla', 'peptide', 'core', 'Of', 'Gp', 'Gl', 'lp', 'll', 'Icore', 'Identity',
'Score', 'BA', 'Rank', 'Candidate', 'BindLevel']).split('\t')
data = [OrderedDict(zip(header, v)) for v in lines[0:]]
for neo in data:
id = '.'.join([neo['Sample'], neo['Identity'], str(len(neo['peptide']))])
refDict.update({id: neo})
return(header, refDict)
def loadRecos(fileName):
refDict = {}
with open(fileName, 'r') as inputFile:
lines = [line.replace('\n', '').split('\t') for line in inputFile.readlines()]
header = lines[0]
data = [dict(zip(header, v)) for v in lines[0:]]
for neo in data:
id = '.'.join([neo['Sample'], neo['Mutation'], str(len(neo['MutantPeptide']))])
refDict.update({id: neo})
return (header, refDict)
def loadWTMutTable(fileName):
refDict = {}
with open(fileName, 'r') as inputFile:
lines = [line.replace('\n', '').split('\t') for line in inputFile.readlines()]
header = lines[0]
data = [dict(zip(header, v)) for v in lines[0:]]
for neo in data:
id = '.'.join([neo['Sample'], neo['MUTATION_ID'], str(len(neo['MT.PEPTIDE']))])
refDict.update({id: neo})
return (header, refDict)
def loadSamTypes(fileName):
lines = {}
with open(fileName, 'r') as inputFile:
for line in inputFile.readlines():
t = line.replace('\n','').split('\t')
lines.update({t[0]:t[1]})
return(lines)
def BuildMasterTable(localpath, Options):
samDict = loadSamTypes(Options.SamTypes)
predHeader, preds = loadPreds(Options.neoPredIn)
recoHeader, reco = loadRecos(Options.recopreds)
wtHeader, wtTab = loadWTMutTable(Options.wt_neo_table)
outHead = predHeader[0:24] + ['SampleType','WT.PEPTIDE','WT.SCORE','MutatedPeptide','ResidueChangeClass','A','R','Excluded','NeoantigenRecognitionPotential']
with open(Options.neoPredIn.replace('.txt','.NeoRecoPo.txt'),'w') as outFile:
outFile.write('\t'.join(outHead) + '\n')
for neo in preds:
a = preds[neo]
b = reco[neo]
c = wtTab[neo]
outLine = [a[item] for item in predHeader][0:24]
additionalInfo = [samDict[a["Sample"]],c['WT.PEPTIDE'], c['WT.SCORE'], b['MutatedPeptide'],b['ResidueChangeClass'],b['A'],b['R'],b['Excluded'],b['NeoantigenRecognitionPotential']]
line = outLine + additionalInfo
outFile.write('\t'.join(line) + '\n')
def main():
print("INFO: Begin.")
# Pull information about usr system files
localpath = os.path.abspath(__file__).replace('NeoRecoPoBlend.py', '') # path to scripts working directory
Config = configparser.ConfigParser()
Config.read(localpath + "usr_paths.ini")
Options = Parser()
BuildMasterTable(localpath, Options)
print("INFO: Complete.")
if __name__=="__main__":
main()