Skip to content

Commit e36dd69

Browse files
authored
Added horizontal rules to examples
1 parent 8dde4d7 commit e36dd69

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

README.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,8 @@ She needs you to write a function that accepts multiple gene IDs and converts th
6868
<details>
6969
<summary>Examples</summary>
7070

71+
<hr>
72+
7173
**Example 1**
7274

7375
Usage:
@@ -97,6 +99,8 @@ Output (error message may vary):
9799
# ValueError: Unknown gene IDs supplied: NOT-A-VALID-ID
98100
```
99101

102+
<hr>
103+
100104
</details>
101105

102106

@@ -131,6 +135,7 @@ The senior bioinformatician has hypothesized that [single nucleotide variants (S
131135
<details>
132136
<summary>Examples</summary>
133137

138+
<hr>
134139

135140
**Example 1**
136141

@@ -168,6 +173,9 @@ Output (error text may vary):
168173
# ValueError: Sequences should be the same length.
169174
```
170175

176+
<hr>
177+
178+
171179
</details>
172180

173181

@@ -199,6 +207,9 @@ NOTE: For additional background on the transcription of DNA to RNA, see the foll
199207
<details>
200208
<summary>Examples</summary>
201209

210+
<hr>
211+
212+
202213
**Example 1**
203214

204215
Input:
@@ -227,6 +238,8 @@ Output (error text may vary):
227238
# ValueError: All supplied sequences must be one of 'A', 'T', 'G', or 'C'
228239
```
229240

241+
<hr>
242+
230243
</details>
231244

232245
### Task 4: Conversion to protein (translation)
@@ -256,6 +269,8 @@ Your supervisor now needs your help converting the RNA sequences to protein sequ
256269
<details>
257270
<summary>Examples</summary>
258271

272+
<hr>
273+
259274
**Example 1**
260275

261276
Input:
@@ -284,6 +299,8 @@ Output (error text may vary):
284299
# ValueError: Supplied sequence length must be divisible by 3
285300
```
286301

302+
<hr>
303+
287304
</details>
288305

289306

@@ -318,6 +335,8 @@ Thus far, you have built functions to identify variants and convert between DNA,
318335
<details>
319336
<summary>Examples</summary>
320337

338+
<hr>
339+
321340
**Example 1**
322341

323342
Input:
@@ -355,6 +374,8 @@ Output (error text may vary):
355374
# ValueError: a and b must be the same length and longer than 0
356375
```
357376

377+
<hr>
378+
358379
</details>
359380

360381

@@ -393,6 +414,8 @@ In some cases, SNVs can lead to a premature STOP codon. This is called a ["nonse
393414
<details>
394415
<summary>Examples</summary>
395416

417+
<hr>
418+
396419
**Example 1**
397420

398421
Input:
@@ -445,9 +468,10 @@ Output (error text may vary):
445468
# ValueError: All supplied sequences must be one of 'A', 'T', 'G', or 'C'
446469
```
447470

471+
<hr>
472+
448473
</details>
449474

450-
<br>
451475

452476

453477
## Guidance

0 commit comments

Comments
 (0)