-
Notifications
You must be signed in to change notification settings - Fork 10
/
map_peptide2genome.py
234 lines (195 loc) · 9.33 KB
/
map_peptide2genome.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
'''
this script will map peptides to genome and output an peptide gff3 file with coordinates.
which genome it maps to depends on the GTF input file provided.
written by Yafeng Zhu @ Karolinska Institutet. Email: yafeng.zhu@ki.se
'''
import sys
import os
import getopt
import numpy as np
import re
from Bio import SeqIO
class EXON(object):
def __init__(self,number=0,gene=None,variant=None,chr=None,strand=None,start=0,end=0,length=0,trans_start=0,trans_end=0):
self.gene=gene
self.variant=variant
self.number=number
self.start=start #chromosome start coordinate
self.end=end #chromosome end coordinate
self.strand=strand
self.chr=chr
self.trans_start=trans_start
self.trans_end=trans_end
def length(self):
self.length=self.trans_end-self.trans_start+1
def cal_trans_pos(exon_list): # calculate transcript position of exon start & end, exon_list is a list of exon objects
strand=exon_list[0].strand
if strand=="+":
new_exon_list=sorted(exon_list,key=lambda x:x.start)
else:
new_exon_list=sorted(exon_list,key=lambda x:x.start,reverse=True)
sumExonlength=0
for exon in new_exon_list:
exon_length=exon.end-exon.start+1
exon.trans_start=1+sumExonlength
exon.trans_end=exon.trans_start+exon_length-1
sumExonlength+=exon_length
return new_exon_list
def get_pep_cor(exon_object_list,n1,n2): # return peptide's chromosome start and end cor given peptide's trans_start (n1) and trans_end (n2)
pep_chr=""
pep_strand=""
pep_chr_start=0
pep_chr_end=0
pep_start_exon=0
pep_end_exon=0
for i in range(len(exon_object_list)):
exon=exon_object_list[i]
if n1<=exon.trans_end and n1>=exon.trans_start:
pep_chr=exon.chr
pep_strand=exon.strand
pep_start_exon=i+1
if pep_strand=='+':
pep_chr_start=exon.start+(n1-exon.trans_start)
else:
pep_chr_end=exon.end-(n1-exon.trans_start)
if n2<=exon.trans_end and n2>=exon.trans_start:
pep_chr=exon.chr
pep_strand=exon.strand
pep_end_exon=i+1
if pep_strand=='+':
pep_chr_end=exon.start+(n2-exon.trans_start)
else: # chr_cor of n2 is pep_chr_start
pep_chr_start=exon.end-(n2-exon.trans_start)
return pep_chr,pep_strand,pep_chr_start,pep_chr_end,pep_start_exon,pep_end_exon
def parse_gtf(infile):
dic={}
with open(infile,"r") as infile_object:
for line in infile_object:
if line[0]!="#": # skip lines commmented out
row=line.strip().split("\t")
if row[0] not in chr_dic:
continue;
if row[2]=="CDS":
attri_list=row[8].split(";")
transID=""
exon=EXON(start=int(row[3]),end=int(row[4]),chr=row[0],strand=row[6])
for attri in attri_list:
if "transcript_id" in attri:
transID=attri.strip().replace("transcript_id ","").replace('\"',"")
if transID not in dic:
dic[transID]=[exon]
else:
dic[transID].append(exon)
return dic
################ Comand-line arguments ################
if len(sys.argv[1:])<=1: ### Indicates that there are insufficient number of command-line arguments
print("Warning! wrong command, please read the mannual in Readme.txt.")
print("Example: python map_peptide2genome.py --input input_filename --gtf Homo_sapiens.GRCh37.75.gtf --fasta Homo_sapiens.GRCh37.75.pep.all.fa --IDmap Ensembl75_IDlist.txt --output output_filename")
else:
options, remainder = getopt.getopt(sys.argv[1:],'', ['input=',
'gtf=',
'fasta=',
'IDmap=',
'output='])
for opt, arg in options:
if opt == '--input': input_file=arg
elif opt == '--gtf':gtf_file=arg
elif opt == '--fasta': fasta_file=arg
elif opt == '--IDmap':IDmap_file=arg
elif opt == '--output': output_file=arg
else:
print("Warning! Command-line argument: %s not recognized. Exiting..." % opt); sys.exit()
#restrict peptide mapping in the 24 chromosomes.
chr_dic={"MT":1,"X":1,"Y":1,"M":1}
for i in range(1,23):
chr_dic[str(i)]=1
print("reading GTF input file")
feature_dic=parse_gtf(gtf_file)
print("number of unique transcripts in GTF file",len(feature_dic))
IDlist_input=open(IDmap_file,"r")
id_dic={}
for line in IDlist_input:
row=line.strip().split("\t")
if len(row)==3:
enst=row[1]
ensp=row[2]
if ensp not in id_dic:
id_dic[ensp]=enst
IDlist_input.close()
print("number of unique ENSP IDs in ID table",len(id_dic))
track_color="0,0,0" #RGB value for color
pep_dic={}
input=open(input_file,'r') # peptide table with two columns, peptide sequence in first column, protein ID in second column
input.readline()
for line in input:
row=line.strip().split("\t")
pep=re.sub("[\W\d]","",row[0].strip())
acc=row[1].split(";")[0]
if pep not in pep_dic:
pep_dic[pep]=acc
input.close()
output=open(output_file,'w')
seq_dic = SeqIO.index(fasta_file,'fasta')
print("number of unique protein sequences in fasta file",len(seq_dic))
non_mapped_pep=0
for peptide,ensp in pep_dic.items():
enst=id_dic[ensp]
try:
exons=feature_dic[enst]
except KeyError:
non_mapped_pep+=1
continue;
aa_seq=str(seq_dic[ensp].seq)
pep_index=aa_seq.index(peptide)
pep_trans_start=3*pep_index+1
pep_trans_end=pep_trans_start+3*len(peptide)-1
exons=cal_trans_pos(exons)
#print pep_trans_start,pep_trans_end
pep_chr,pep_strand,pep_chr_start,pep_chr_end,pep_start_exon,pep_end_exon=get_pep_cor(exons,pep_trans_start,pep_trans_end)
#handle exceptions
if pep_chr_start>pep_chr_end:
non_mapped_pep+=1
#print peptide,ensp,enst
continue;
if pep_chr_start<=0:
non_mapped_pep+=1
#print peptide,ensp,enst,pep_trans_start,pep_trans_end
continue;
#print pep_chr_start,pep_chr_end
#print pep_start_exon,pep_end_exon
pep_chr="chr"+pep_chr.replace("MT","M")
if pep_start_exon==pep_end_exon: #if peptide map to one exon
gff_format_line1=[pep_chr,"MS","mRNA",pep_chr_start,pep_chr_end,".",pep_strand,".","ID="+peptide]
gff_format_line2=[pep_chr,"MS","CDS",pep_chr_start,pep_chr_end,".",pep_strand,"0","Parent="+peptide]
output.write("\t".join(map(str,gff_format_line1))+"\n")
output.write("\t".join(map(str,gff_format_line2))+"\n")
elif abs(pep_start_exon-pep_end_exon)==1: #if it is a splice junction peptide spanning over two exons
if pep_strand=="+":
gff_format_line1=[pep_chr,"MS","mRNA",pep_chr_start,pep_chr_end,".",pep_strand,".","ID="+peptide]
gff_format_line2=[pep_chr,"MS","CDS",pep_chr_start,exons[pep_start_exon-1].end,".",pep_strand,"0","Parent="+peptide]
gff_format_line3=[pep_chr,"MS","CDS",exons[pep_end_exon-1].start,pep_chr_end,".",pep_strand,".","Parent="+peptide]
else:
gff_format_line1=[pep_chr,"MS","mRNA",pep_chr_start,pep_chr_end,".",pep_strand,".","ID="+peptide]
gff_format_line2=[pep_chr,"MS","CDS",pep_chr_start,exons[pep_end_exon-1].end,".",pep_strand,"0","Parent="+peptide]
gff_format_line3=[pep_chr,"MS","CDS",exons[pep_start_exon-1].start,pep_chr_end,".",pep_strand,".","Parent="+peptide]
output.write("\t".join(map(str,gff_format_line1))+"\n")
output.write("\t".join(map(str,gff_format_line2))+"\n")
output.write("\t".join(map(str,gff_format_line3))+"\n")
elif abs(pep_start_exon-pep_end_exon)>1: #if peptide span multiple exons,rare case!
if pep_strand=="+":
gff_format_line1=[pep_chr,"MS","mRNA",pep_chr_start,pep_chr_end,".",pep_strand,".","ID="+peptide]
gff_format_line2=[pep_chr,"MS","CDS",pep_chr_start,exons[pep_start_exon-1].end,".",pep_strand,"0","Parent="+peptide]
gff_format_line3=[pep_chr,"MS","CDS",exons[pep_end_exon-1].start,pep_chr_end,".",pep_strand,".","Parent="+peptide]
else:
gff_format_line1=[pep_chr,"MS","mRNA",pep_chr_start,pep_chr_end,".",pep_strand,".","ID="+peptide]
gff_format_line2=[pep_chr,"MS","CDS",pep_chr_start,exons[pep_end_exon-1].end,".",pep_strand,"0","Parent="+peptide]
gff_format_line3=[pep_chr,"MS","CDS",exons[pep_start_exon-1].start,pep_chr_end,".",pep_strand,".","Parent="+peptide]
output.write("\t".join(map(str,gff_format_line1))+"\n")
output.write("\t".join(map(str,gff_format_line2))+"\n")
for k in range(min(pep_start_exon,pep_end_exon)+1,max(pep_start_exon,pep_end_exon)):
gff_format_line=[pep_chr,"MS","CDS",exons[k-1].start,exons[k-1].end,".",pep_strand,".","Parent="+peptide]
output.write("\t".join(map(str,gff_format_line))+"\n")
output.write("\t".join(map(str,gff_format_line3))+"\n")
output.close()
print("total number of unique peptides",len(pep_dic))
print("total number of unmapped peptides",non_mapped_pep)