@@ -68,6 +68,8 @@ She needs you to write a function that accepts multiple gene IDs and converts th
68
68
<details >
69
69
<summary >Examples</summary >
70
70
71
+ <hr >
72
+
71
73
** Example 1**
72
74
73
75
Usage:
@@ -97,6 +99,8 @@ Output (error message may vary):
97
99
# ValueError: Unknown gene IDs supplied: NOT-A-VALID-ID
98
100
```
99
101
102
+ <hr >
103
+
100
104
</details >
101
105
102
106
@@ -131,6 +135,7 @@ The senior bioinformatician has hypothesized that [single nucleotide variants (S
131
135
<details >
132
136
<summary >Examples</summary >
133
137
138
+ <hr >
134
139
135
140
** Example 1**
136
141
@@ -168,6 +173,9 @@ Output (error text may vary):
168
173
# ValueError: Sequences should be the same length.
169
174
```
170
175
176
+ <hr >
177
+
178
+
171
179
</details >
172
180
173
181
@@ -199,6 +207,9 @@ NOTE: For additional background on the transcription of DNA to RNA, see the foll
199
207
<details >
200
208
<summary >Examples</summary >
201
209
210
+ <hr >
211
+
212
+
202
213
** Example 1**
203
214
204
215
Input:
@@ -227,6 +238,8 @@ Output (error text may vary):
227
238
# ValueError: All supplied sequences must be one of 'A', 'T', 'G', or 'C'
228
239
```
229
240
241
+ <hr >
242
+
230
243
</details >
231
244
232
245
### Task 4: Conversion to protein (translation)
@@ -256,6 +269,8 @@ Your supervisor now needs your help converting the RNA sequences to protein sequ
256
269
<details >
257
270
<summary >Examples</summary >
258
271
272
+ <hr >
273
+
259
274
** Example 1**
260
275
261
276
Input:
@@ -284,6 +299,8 @@ Output (error text may vary):
284
299
# ValueError: Supplied sequence length must be divisible by 3
285
300
```
286
301
302
+ <hr >
303
+
287
304
</details >
288
305
289
306
@@ -318,6 +335,8 @@ Thus far, you have built functions to identify variants and convert between DNA,
318
335
<details >
319
336
<summary >Examples</summary >
320
337
338
+ <hr >
339
+
321
340
** Example 1**
322
341
323
342
Input:
@@ -355,6 +374,8 @@ Output (error text may vary):
355
374
# ValueError: a and b must be the same length and longer than 0
356
375
```
357
376
377
+ <hr >
378
+
358
379
</details >
359
380
360
381
@@ -393,6 +414,8 @@ In some cases, SNVs can lead to a premature STOP codon. This is called a ["nonse
393
414
<details >
394
415
<summary >Examples</summary >
395
416
417
+ <hr >
418
+
396
419
** Example 1**
397
420
398
421
Input:
@@ -445,9 +468,10 @@ Output (error text may vary):
445
468
# ValueError: All supplied sequences must be one of 'A', 'T', 'G', or 'C'
446
469
```
447
470
471
+ <hr >
472
+
448
473
</details >
449
474
450
- <br >
451
475
452
476
453
477
## Guidance
0 commit comments