-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmod_translate.py
337 lines (278 loc) · 8.92 KB
/
mod_translate.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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
#!/usr/local/python/bin/python
# Copyright 2002,2003,2004,2005 Rasmus Wernersson, Technical University of Denmark
#
# This file is part of RevTrans.
#
# RevTrans is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# RevTrans is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with RevTrans; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
# $Id: mod_translate.py,v 1.7 2005/06/09 09:58:54 raz Exp $
#
# $Log: mod_translate.py,v $
# Revision 1.7 2005/06/09 09:58:54 raz
# Handles the simutation where multiple DNA sequences gives rise to the same
# peptide sequence.
#
# Revision 1.6 2005/05/13 10:56:58 raz
# All modules/subprogram now supports special recognition of the very first codon
# as the start codon. Depending on the translation matrix, codon that internally
# does not code for Met can do so in this position.
#
# Revision 1.5 2005/01/18 19:49:22 raz
# Fixed trivial error that prevented translation of sequences containing degenerate nucleotides.
#
# This error has existed since the addition of multiple translation tables.
#
# Revision 1.4 2004/07/07 21:10:37 raz
# Translation tables:
#
# Build-in support of all the translation tables defined by the NCBI
# Taxonomy group.
#
# Fixed a lot of typos in the documentation.
#
# Revision 1.3 2004/07/06 04:36:49 raz
# It's now possible to supply an alternative translation matrix.
# The Main functionality is added to mod_translate.
#
# The translation functions are also updated with several speed-ups and clean-ups.
#
# Other small improvements include:
#
# *) The case of the peptide alignments is now transferred to the DNA alignment.
# *) Stop codons are handled much better.
# *) Speed-ups in RevTrans.
#
# Revision 1.2 2003/04/04 20:24:16 raz
# All revtrans files now released under the GPL
#
# Revision 1.1 2003/04/04 20:03:17 raz
# Translation has been moved into it's own module, and improved quite a lot. Supports
# full IUPAC.
#
# Handling of files hae also been moved into it's own module. When reading FASTA files
# the entire line after ">" counts as the name. Comments might just as well be phased
# out.
#
# Revtrans now makes sure no illegal characters exist in the read files. This also fixes
# problems with sequences with white-spaces.
"""
Simple DNA to peptide translator. Supports the full IUPAC degenerated alphabet.
April 2003
July 2004 - support for custom translation matrices
Rasmus Wernersson, raz@cbs.dtu.dk
"""
import sys,string
class TransTableRec:
def __init__(self):
self.description = ""
self.d_all = {}
self.d_first = {}
def toString(self):
return "Description: %s\nd_all: %s\nd_first: %s" % (self.description,str(self.d_all),str(self.d_first))
# Standard genetic code:
d = {}
# nTn
d["TTT"] = d["TTC"] = "F"
d["TTA"] = d["TTG"] = d["CTT"] = d["CTC"] = d["CTA"] = d["CTG"] = "L"
d["ATT"] = d["ATC"] = d["ATA"] = "I"
d["ATG"] = "M"
d["GTT"] = d["GTC"] = d["GTA"] = d["GTG"] = "V"
# nCn
d["TCT"] = d["TCC"] = d["TCA"] = d["TCG"] = "S"
d["CCT"] = d["CCC"] = d["CCA"] = d["CCG"] = "P"
d["ACT"] = d["ACC"] = d["ACA"] = d["ACG"] = "T"
d["GCT"] = d["GCC"] = d["GCA"] = d["GCG"] = "A"
# nAn
d["TAT"] = d["TAC"] = "Y"
d["TAA"] = d["TAG"] = "*" #Stop
d["CAT"] = d["CAC"] = "H"
d["CAA"] = d["CAG"] = "Q"
d["AAT"] = d["AAC"] = "N"
d["AAA"] = d["AAG"] = "K"
d["GAT"] = d["GAC"] = "D"
d["GAA"] = d["GAG"] = "E"
# nGn
d["TGT"] = d["TGC"] = "C"
d["TGA"] = "*" #Stop
d["TGG"] = "W"
d["CGT"] = d["CGC"] = d["CGA"] = d["CGG"] = "R"
d["AGT"] = d["AGC"] = "S"
d["AGA"] = d["AGG"] = "R"
d["GGT"] = d["GGC"] = d["GGA"] = d["GGG"] = "G"
dStdRec = TransTableRec()
dStdRec.d_all = dStdRec.d_first = d
iupac = {}
iupac["A"] = "A"
iupac["C"] = "C"
iupac["G"] = "G"
iupac["T"] = "T"
iupac["R"] = "AG" #puRine
iupac["Y"] = "CT" #pYrimidine
iupac["M"] = "CA"
iupac["K"] = "TG" #Keto
iupac["W"] = "AT" #Weak
iupac["S"] = "GC" #Strong
iupac["B"] = "CGT" #not A
iupac["D"] = "AGT" #not C
iupac["H"] = "ACT" #not G
iupac["V"] = "ACG" #not T ("U" is Uracile)
iupac["N"] = "ACGT" #aNy
alphaDNA = "ACGTRYMKWSBDHVN"
alphaDNAStrict = "ACGT"
alphaPep ="*ACDEFGHIKLMNPQRSTVWY"
DEBUG = 1;
d_ncbi_table = {}
def parseNcbiTable(lines):
result = {}
tab_id = ""
desc = aa_all = aa_first = ""
dRec = TransTableRec()
for line in lines.split("\n"):
line = line.strip()
#print "!!!"+line
if line.startswith("name ") and (desc == ""):
dRec.description += line.split('"')[1]+" "
elif line.startswith("id "):
tab_id = line.split()[1]
elif line.startswith("ncbieaa"):
aa_all = line.split('"')[1]
elif line.startswith("sncbieaa"):
aa_first = line.split('"')[1]
c = 0
for b1 in "TCAG":
for b2 in "TCAG":
for b3 in "TCAG":
codon = b1+b2+b3
dRec.d_all[codon] = aa_all[c]
aaf = aa_first[c]
if aaf == "-": aaf = aa_all[c]
dRec.d_first[codon] = aaf
c += 1
result[tab_id] = dRec
dRec = TransTableRec()
tab_id = ""
return result
def parseMatrixLines(iterator):
result = {}
for line in iterator:
line = line.strip()
if not line:
continue # Ignore blank lines
if line.startswith("#"):
continue # Ignore comment lines
tokens = line.split()
try:
codon, aa = tokens
# Skip invalid entries
if len(codon) <> 3:
badCodon = 1
else:
codon = codon.upper().replace("U","T")
for c in codon:
if not c in alphaDNAStrict: badCodon = 1
badCodon = 0
if badCodon:
raise "Bad codon: %s [%s]" % (codon,line)
if len(aa) <> 1: #or (not aa in alphaPep):
raise "Bad aa: %s [%s]" % (aa,line)
result[codon] = aa
except Exception, e:
if DEBUG:
sys.stderr.write("Matrix Error - %s\n" % e)
if len(d) != 64 and DEBUG:
sys.stderr.write("Matrix Error - size of matrix differs from 64 [%i]\n" % len(d))
return result
def parseMatrixFile(filename):
if d_ncbi_table.has_key(filename):
dRec = d_ncbi_table[filename]
return dRec
dRec = TransTableRec()
dRec.d_all = parseMatrixLines(open(filename,"r").xreadlines())
dRec.d_first = dRec.d_all
dRec.descrption = "Custom translation table '%s'" % filename
return dRec
def trim(seq):
return seq.upper().replace("U","T")
def trim_old(seq):
result = []
for c in seq.upper():
if c in alphaDNA: result.append(c)
elif c == "U": result.append("T")
else: result.append("N")
return result
# Assumption: Degenerate codons are rare - speed is not an issue
def decode(codon,dRec,isFirst):
if len(codon) != 3: return []
#Use the relevant translation table
if isFirst: d_gc = dRec.d_first
else: d_gc = dRec.d_all
#Check for the simple case: this is a standard non-degenerate codon
if d_gc.has_key(codon):
return [ d_gc[codon]]
#The codon is to some degree degenerate - start the whole recursive scheme
result = []
for i in range(0,3):
p = iupac[codon[i]]
if (len(p) > 1):
for c in p:
result += (decode(codon[0:i]+c+codon[i+1:3],dRec,isFirst))
return result
if len(p) == 0:
return [] # Unknown/illegal char
#return [d[codon]]
def condense(lst):
result = []
for e in lst:
if not e in result: result.append(e)
return result
def translate(seq,transRec):
return translate(seq,transRec,True,True)
def translate(seq,transRec,firstIsStartCodon,readThroughStopCodon):
# debug = "gacaggatcaccaagatgaggcgtgtaatcaaggctctgtcccagtggagatctctgcctaccagcaagc" in seq
# debug = debug and "atgaaggtgattgtgctagctcttgctgtggcctttgcagctgcgaatcaggtcagcctggtcccagaat" in seq
debug = False
if not transRec:
transRec = dStdRec # Use the Standard Genetic Code if no custom matrix is supplied
result = []
seq = trim(seq)
if firstIsStartCodon: isFirst = True
else: isFirst = False
for i in range(0,len(seq),3):
aa = condense(decode(seq[i:i+3],transRec,isFirst))
if debug: print seq[i:i+3], aa
if aa:
if aa[0] == "*" and not readThroughStopCodon:
break
if len(aa) == 1: result.append(aa[0])
else:
s = string.join(aa,"")
if s == "DN" or s == "ND": result.append("B") #N or D
elif s == "EQ" or s == "QE": result.append("Z") #E or Q
else : result.append("X") #Any
#print seq[i:i+3]
isFirst = False
pepseq = "".join(result)
if debug:
print pepseq
return pepseq
#def translate(seq):
# translate(seq,None)
try:
import ncbi_genetic_codes
d_ncbi_table = parseNcbiTable(ncbi_genetic_codes.ncbi_gc_table)
except:
pass
if __name__ == "__main__":
for line in sys.stdin.readlines():
print translate(line,None,True,False)