-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDNAToolkit.py
238 lines (235 loc) · 7.65 KB
/
DNAToolkit.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
#DNA Toolkit file
"""
This file contains the functions for the DNA?RNA Toolkit.
Copyriright (C) 2021 manikineko.nl Under the MIT Licsensing.
"""
import collections
import json
Nucleotides = ['A', 'C', 'G', 'T']
class DNA:
"""
DNA Class
"""
def __init__(self, dna_seq):
"""
Initializes the DNA class.
"""
self.seq = validateSeq(dna_seq)
if self.seq == False:
raise ValueError('Invalid sequence')
self.freq = countNucFreq(self.seq)
self.rna = transcribe(self.seq)
self.revcomp = reverseComplement(self.seq)
self.orf = findORF(self.seq)
self.orf_all = findORF_all(self.seq)
self.orf_all_sorted = findORF_all_sorted(self.seq)
self.orf_all_sorted_longest = findORF_all_sorted_longest(self.seq)
def toJSON(self):
return json.dumps(self, default=lambda o: o.__dict__,
sort_keys=True, indent=4)
def validateSeq(dna_seq):
"""
Validates the sequence to ensure that it contains only valid nucleotides.
"""
tmpseq = dna_seq.upper();
for nucleotide in tmpseq:
if nucleotide not in Nucleotides:
return False
return tmpseq
def countNucFreq(dna_seq):
"""
Counts the frequency of each nucleotide in the sequence.
"""
tmpseq = dna_seq.upper();
freq = {'A':0, 'C':0, 'G':0, 'T':0}
for nucleotide in tmpseq:
freq[nucleotide] += 1
return freq
def transcribe(dna_seq):
"""
Transcribes the DNA sequence into RNA.
"""
tmpseq = dna_seq.upper();
rna_seq = ''
for nucleotide in tmpseq:
if nucleotide == 'T':
rna_seq += 'U'
else:
rna_seq += nucleotide
return rna_seq
def reverseComplement(dna_seq):
"""
Returns the reverse complement of the DNA sequence.
"""
tmpseq = dna_seq.upper();
revcomp = ''
for nucleotide in tmpseq:
if nucleotide == 'A':
revcomp += 'T'
elif nucleotide == 'T':
revcomp += 'A'
elif nucleotide == 'C':
revcomp += 'G'
elif nucleotide == 'G':
revcomp += 'C'
return revcomp[::-1]
def findORF(dna_seq):
"""
Finds the longest open reading frame in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf = ''
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
break
for i in range(0, len(orf), 3):
codon = orf[i:i+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
return orf[:i]
return orf
def findORF_all(dna_seq):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return orf_all
def findORF_all_sorted(dna_seq):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)
def findORF_all_sorted_longest(dna_seq):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[0]
def findORF_all_sorted_longest_n(dna_seq, n):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[:n]
def findORF_all_sorted_longest_n_r(dna_seq, n):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[-n:]
def findORF_all_sorted_longest_n_r_r(dna_seq, n):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[-n:][::-1]
def findORF_all_sorted_longest_n_r_r_r(dna_seq, n):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[-n:][::-1][::-1]
def findORF_all_sorted_longest_n_r_r_r_r(dna_seq, n):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[-n:][::-1][::-1][::-1]
def findORF_all_sorted_longest_n_r_r_r_r_r(dna_seq, n):
"""
Finds all the longest open reading frames in the DNA sequence.
"""
tmpseq = dna_seq.upper();
orf_all = []
for i in range(0, len(tmpseq), 3):
codon = tmpseq[i:i+3]
if codon == 'ATG':
orf = tmpseq[i:]
for j in range(0, len(orf), 3):
codon = orf[j:j+3]
if codon == 'TAA' or codon == 'TAG' or codon == 'TGA':
orf_all.append(orf[:j])
break
return sorted(orf_all, key=len, reverse=True)[-n:][::-1][::-1][::-1][::-1]