-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNA.java
More file actions
410 lines (353 loc) · 12.2 KB
/
RNA.java
File metadata and controls
410 lines (353 loc) · 12.2 KB
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
import tester.Tester;
interface ILoString {
int length();
String makeString(int length);
String firstCodon();
ILoString cutFirstCodon();
ILoString cutFirst(int length);
boolean stop();
boolean start();
ILoString toStart();
ILoString makeProtein();
ILoString cutRNA();
ILoLoString translate();
}
class MtLoString implements ILoString {
/* TEMPLATE
* fields:
*
* methods:
* this.length()... int
* this.makeString(int)... String
* this.firstCodon()... String
* this.cutFirst(int)... ILoString
* this.cutFirstCodon()... ILoString
* this.stop()... boolean
* this.start()... boolean
* this.toStart()... ILoString
* this.makeProtein(ILoString)... ILoString
* this.cutRNA()... ILoString
* this.translate()... ILoLoString
*
* methods for fields:
*/
//returns a length of zero.
public int length() {
return 0;
}
//returns an empty string
public String makeString(int length) {
return "";
}
//returns an empty string
public String firstCodon() {
return "";
}
//returns an MtLoString
public ILoString cutFirstCodon() {
return this;
}
public ILoString cutFirst(int length) {
return this;
}
//says that an empty codon is not a stop codon
public boolean stop() {
return false;
}
//says that an empty string is not a start codon
public boolean start() {
return false;
}
//returns an MtLoString
public ILoString toStart() {
return this;
}
//returns an MtLoString
public ILoString makeProtein() {
return this;
}
public ILoString cutRNA() {
return this;
}
//returns an empty list of proteins
public ILoLoString translate() {
return new MtLoLoString();
}
}
class ConsLoString implements ILoString {
//fields
String first;
ILoString rest;
//constructor
ConsLoString(String first, ILoString rest) {
this.first = first;
this.rest = rest;
}
/* TEMPLATE
* fields:
* this.first... String
* this.rest... ILoString
*
* methods:
* this.length()... int
* this.makeString(int)... String
* this.firstCodon()... String
* this.cutFirst(int)... ILoString
* this.cutFirstCodon()... ILoString
* this.stop()... boolean
* this.start()... boolean
* this.toStart()... ILoString
* this.makeProtein(ILoString)... ILoString
* this.cutRNA()... ILoString
* this.translate()... ILoLoString
*
* methods for fields:
* this.rest.length()... int
* this.rest.makeString(int)... String
* this.rest.firstCodon()... String
* this.rest.cutFirst(int)... ILoString
* this.rest.cutFirstCodon()... ILoString
* this.stop()... boolean
* this.start()... boolean
* this.toStart()... ILoString
* this.makeProtein(ILoString)... ILoString
* this.cutRNA()... ILoString
* this.translate()... ILoLoString
*/
//tells the list's length
public int length() {
return 1 + this.rest.length();
}
//turns the last (outermost) length base pairs into a single string
public String makeString(int length) {
if (length <= 1) {
return this.first;
}
else {
return this.first + this.rest.makeString(length - 1);
}
}
//returns the first (innermost) three bases in a ILoString
//only meant for ConsLoStrings 3 BPs or longer in length
//if it's too short, returns ""
public String firstCodon() {
return this.makeString(3);
}
//returns a ILoString with the first (innermost) length BPs replaced with MtLoString
//only meant for ConsLoStrings length BPs or longer in length
//if it's too short, returns MtLoString
public ILoString cutFirst(int length) {
if (length <= 1) {
return this.rest;
}
else {
return this.rest.cutFirst(length - 1);
}
}
//returns a ILoString with the first (innermost) 3 BP replaced with MtLoString
//only meant for ConsLoStrings 3 BPs or longer in length
//if it's too short, returns MtLoString
public ILoString cutFirstCodon() {
return this.cutFirst(3);
}
//tells whether the first (innermost) codon is a stop codon
public boolean stop() {
return this.firstCodon().equals("UAG")
|| this.firstCodon().equals("UAA")
|| this.firstCodon().equals("UGA");
}
//tells whether the first (innermost) codon is a start codon
public boolean start() {
return this.firstCodon().equals("AUG");
}
//removes all base pairs until the next start codon
//stops if the RNA gets too short
public ILoString toStart() {
if (this.start() || this.length() < 3) {
return this;
}
else {
return this.cutFirstCodon().toStart();
}
}
//returns the longest protein that abides by the rules
//if the stop codon is first, returns an empty list
//if the list is too short, return an empty list
public ILoString makeProtein() {
if (this.length() < 3 || this.stop()) {
return new MtLoString();
}
else {
return new ConsLoString(this.firstCodon(), this.cutFirstCodon().makeProtein());
}
}
//removes all of the base-pairs up until the next stop codon
//stops if the RNA gets too short
public ILoString cutRNA() {
if (this.length() < 3) {
return this;
}
else if (this.stop()) {
return this.cutFirstCodon();
}
else {
return this.cutFirstCodon().cutRNA();
}
}
//makes a list of lists of strings. each list of strings represents a protein.
//starts only when it sees a start codon,
//ends when it reaches an end codon or the RNA gets too short
public ILoLoString translate() {
ILoString chopped = this.toStart();
if (chopped.length() >= 3) {
ILoString protein = chopped.makeProtein();
return new ConsLoLoString(protein, chopped.cutRNA().translate());
}
else {
return new MtLoLoString();
}
}
}
interface ILoLoString {}
class MtLoLoString implements ILoLoString {}
class ConsLoLoString implements ILoLoString {
//fields
ILoString first;
ILoLoString rest;
//constructor
ConsLoLoString(ILoString first, ILoLoString rest) {
this.first = first;
this.rest = rest;
}
}
class ExamplesRNA {
//examples of RNA
ILoString emptyRNA = new MtLoString();
ILoString s1 = new ConsLoString("A", emptyRNA);
ILoString s2 = new ConsLoString("U", s1);
ILoString s3 = new ConsLoString("C", s2);
ILoString s3b = new ConsLoString("A", s3);
ILoString s3c = new ConsLoString("G", s3b);
ILoString s4 = new ConsLoString("G", new ConsLoString("U", new ConsLoString("A", s3)));
ILoString s5 = new ConsLoString("A", new ConsLoString("A", new ConsLoString("A", s4)));
ILoString s6 = new ConsLoString("A", new ConsLoString("A", new ConsLoString("U", s5)));
ILoString s7 = new ConsLoString("A", new ConsLoString("A", new ConsLoString("U", s6)));
ILoString s8 = new ConsLoString("G", new ConsLoString("U", new ConsLoString("A", s7)));
ILoString s9 = new ConsLoString("C", new ConsLoString("A", new ConsLoString("G", s8)));
ILoString s10 = new ConsLoString("A", new ConsLoString("A", new ConsLoString("U", s9)));
ILoString s11 = new ConsLoString("A", new ConsLoString("A", new ConsLoString("U", s10)));
//examples of proteins
ILoLoString emptyProtein = new MtLoLoString();
ILoLoString p1 = new ConsLoLoString(new ConsLoString("AUG", emptyRNA), emptyProtein);
ILoLoString p2 = new ConsLoLoString(new ConsLoString("AAA", new
ConsLoString("AUG", emptyRNA)), emptyProtein);
ILoLoString p3 = new ConsLoLoString(new ConsLoString("GAC", new
ConsLoString("AUG", emptyRNA)), p2);
//tests of methods:
//test for length()
boolean testLength(Tester t) {
return t.checkExpect(emptyRNA.length(), 0)
&& t.checkExpect(s1.length(), 1)
&& t.checkExpect(s4.length(), 6);
}
//test for makeString()
boolean testMakeString(Tester t) {
return t.checkExpect(emptyRNA.makeString(0), "")
&& t.checkExpect(emptyRNA.makeString(2), "")
&& t.checkExpect(s1.makeString(1), "A")
&& t.checkExpect(s1.makeString(3), "A")
&& t.checkExpect(s3b.makeString(3), "UCA");
}
//test for firstCodon()
boolean testFirstCodon(Tester t) {
return t.checkExpect(emptyRNA.firstCodon(), "")
&& t.checkExpect(s2.firstCodon(), "")
&& t.checkExpect(s3.firstCodon(), "AUC")
&& t.checkExpect(s3c.firstCodon(), "AUC")
&& t.checkExpect(s4.firstCodon(), "AUC");
}
//test for cutFirst(int)
boolean testCutFirst(Tester t) {
return t.checkExpect(emptyRNA.cutFirst(2), emptyRNA)
&& t.checkExpect(s2.cutFirst(1), new ConsLoString("U", emptyRNA))
&& t.checkExpect(s2.cutFirst(2), emptyRNA)
&& t.checkExpect(s3.cutFirst(2), new ConsLoString("C", emptyRNA));
}
//test for cutFirstCodon()
boolean testCutFirstCodon(Tester t) {
return t.checkExpect(emptyRNA.cutFirstCodon(), emptyRNA)
&& t.checkExpect(s2.cutFirstCodon(), emptyRNA)
&& t.checkExpect(s3b.cutFirstCodon(), s1);
}
//test for stop()
boolean testStop(Tester t) {
return t.checkExpect(emptyRNA.stop(), false)
&& t.checkExpect(s1.stop(), false)
&& t.checkExpect(s3.stop(), false)
&& t.checkExpect(s4.stop(), false)
&& t.checkExpect(new ConsLoString("G", new ConsLoString("A", new
ConsLoString("U", emptyRNA))).stop(), true)
&& t.checkExpect(new ConsLoString("A", new ConsLoString("A", new
ConsLoString("U", emptyRNA))).stop(), true)
&& t.checkExpect(new ConsLoString("A", new ConsLoString("G", new
ConsLoString("U", emptyRNA))).stop(), true)
&& t.checkExpect(new ConsLoString("C", new ConsLoString("G", new
ConsLoString("A", new ConsLoString("U", emptyRNA)))).stop(), true);
}
//test for start()
boolean testStart(Tester t) {
return t.checkExpect(emptyRNA.start(), false)
&& t.checkExpect(s1.start(), false)
&& t.checkExpect(s3.start(), false)
&& t.checkExpect(s4.start(), false)
&& t.checkExpect(new ConsLoString("G", new ConsLoString("U", new
ConsLoString("A", emptyRNA))).start(), true)
&& t.checkExpect(new ConsLoString("A", new ConsLoString("G", new
ConsLoString("U", new ConsLoString("A", emptyRNA)))).start(), true);
}
//test for toStart()
boolean testToStart(Tester t) {
return t.checkExpect(emptyRNA.toStart(), emptyRNA)
&& t.checkExpect(s1.toStart(), s1)
&& t.checkExpect(s3b.toStart(), s1)
&& t.checkExpect(s4.toStart(), new ConsLoString("G", new ConsLoString("U", new
ConsLoString("A", emptyRNA))));
}
//test for makeProtein(ILoString)
/*
boolean testMakeProtein(Tester t) {
return t.checkExpect(emptyRNA.makeProtein(emptyRNA), emptyRNA)
&& t.checkExpect(s1.makeProtein(emptyRNA), emptyRNA)
&& t.checkExpect(s2.makeProtein(emptyRNA), emptyRNA)
&& t.checkExpect(s3.makeProtein(emptyRNA), new ConsLoString("AUC", emptyRNA))
&& t.checkExpect(s3c.makeProtein(emptyRNA), new ConsLoString("AUC", emptyRNA))
&& t.checkExpect(s6.makeProtein(emptyRNA), new ConsLoString("AAA", new
ConsLoString("AUG", new ConsLoString("AUC", emptyRNA))))
&& t.checkExpect(s7.makeProtein(emptyRNA), new ConsLoString("AAA", new
ConsLoString("AUG", new ConsLoString("AUC", emptyRNA))))
&& t.checkExpect(s8.makeProtein(emptyRNA), new ConsLoString("AAA", new
ConsLoString("AUG", new ConsLoString("AUC", emptyRNA))));
}*/
//test for cutRNA
boolean testCutRNA(Tester t) {
return t.checkExpect(emptyRNA.cutRNA(), emptyRNA)
&& t.checkExpect(s1.cutRNA(), s1)
&& t.checkExpect(s3b.cutRNA(), s1)
&& t.checkExpect(s4.cutRNA(), emptyRNA)
&& t.checkExpect(s6.cutRNA(), emptyRNA)
&& t.checkExpect(s7.cutRNA(), new ConsLoString("A", new
ConsLoString("A", new ConsLoString("U", emptyRNA))));
}
//test for translate()
boolean testTranslate(Tester t) {
return t.checkExpect(emptyRNA.translate(), emptyProtein)
&& t.checkExpect(s1.translate(), emptyProtein)
&& t.checkExpect(s3.translate(), emptyProtein)
&& t.checkExpect(s4.translate(), p1)
&& t.checkExpect(s5.translate(), p2)
&& t.checkExpect(s6.translate(), p2)
&& t.checkExpect(s9.translate(), p3)
&& t.checkExpect(s10.translate(), p3)
&& t.checkExpect(s11.translate(), p3);
}
}