File tree 2 files changed +66
-0
lines changed
2 files changed +66
-0
lines changed Original file line number Diff line number Diff line change
1
+ <!doctype html>
2
+
3
+ < html lang ="en ">
4
+
5
+ < head >
6
+ < meta charset ="utf-8 ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
+
9
+ < title > SNP DNA SEQ</ title >
10
+
11
+ < link rel ="stylesheet " href ="style.css ">
12
+ </ head >
13
+
14
+ < body >
15
+ < div >
16
+ < h1 > Random SNPs</ h1 >
17
+
18
+ < h2 > Original Sequence</ h2 >
19
+
20
+ < p > {{original}}</ p >
21
+
22
+ {% for mutated_seq in mutated_seq_list %}
23
+ < h2 > Sequence {{loop.index}}</ h2 >
24
+
25
+ < p >
26
+ {{mutated_seq}}
27
+ </ p >
28
+ {% endfor %}
29
+
30
+ </ div >
31
+ </ body >
32
+
33
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!doctype html>
2
+
3
+ < html lang ="en ">
4
+
5
+ < head >
6
+ < meta charset ="utf-8 ">
7
+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8
+
9
+ < title > SNP DNA SEQ</ title >
10
+
11
+ < link rel ="stylesheet " href ="style.css ">
12
+ </ head >
13
+
14
+ < body >
15
+ < div >
16
+ < h1 > Random SNPs</ h1 >
17
+
18
+ < h2 > Original Sequence</ h2 >
19
+
20
+ < p > {{original}}</ p >
21
+
22
+ {% for mutated_seq in mutated_seq_list %}
23
+ < h2 > Sequence {{loop.index}}</ h2 >
24
+
25
+ < p >
26
+ {{mutated_seq.before}} < span id ="mutation "> {{mutated_seq.new_letter}} </ span > {{mutated_seq.after}}
27
+ </ p >
28
+ {% endfor %}
29
+
30
+ </ div >
31
+ </ body >
32
+
33
+ </ html >
You can’t perform that action at this time.
0 commit comments