... | ... | @@ -164,9 +164,9 @@ The **len(self)** method should work with the **three types** of sequences. In c |
|
|
|
|
|
```
|
|
|
-----| Practice 1, Exercise 4 |------
|
|
|
NULL Seq created
|
|
|
NULL sequence created
|
|
|
New sequence created!
|
|
|
INVALID Seq!
|
|
|
INVALID sequence!
|
|
|
Sequence 1: (Length: 0) NULL
|
|
|
Sequence 2: (Length: 5) ACTGA
|
|
|
Sequence 3: (Length: 0) ERROR
|
... | ... | @@ -183,9 +183,9 @@ Implement the **count_base(self, base)** method. If the sequence is either null |
|
|
|
|
|
```
|
|
|
-----| Practice 1, Exercise 5 |------
|
|
|
NULL Seq created
|
|
|
NULL sequence created
|
|
|
New sequence created!
|
|
|
INVALID Seq!
|
|
|
INVALID sequence!
|
|
|
Sequence 0: (Length: 0) NULL
|
|
|
A: 0, C: 0, T: 0, G: 0
|
|
|
Sequence 1: (Length: 5) ACTGA
|
... | ... | @@ -205,9 +205,9 @@ Implement the **count(self)** method. If the sequence is null or invalid, the re |
|
|
|
|
|
```
|
|
|
-----| Practice 1, Exercise 6 |------
|
|
|
NULL Seq created
|
|
|
NULL sequence created
|
|
|
New sequence created!
|
|
|
INVALID Seq!
|
|
|
INVALID sequence!
|
|
|
Sequence 0: (Length: 0) NULL
|
|
|
Bases: {'A': 0, 'T': 0, 'C': 0, 'G': 0}
|
|
|
Sequence 1: (Length: 5) ACTGA
|
... | ... | @@ -227,9 +227,9 @@ Implement the **reverse(self)** method. If the sequence is either null or invali |
|
|
|
|
|
```
|
|
|
-----| Practice 1, Exercise 7 |------
|
|
|
NULL Seq created
|
|
|
NULL sequence created
|
|
|
New sequence created!
|
|
|
INVALID Seq!
|
|
|
INVALID sequence!
|
|
|
Sequence 0: (Length: 0) NULL
|
|
|
Bases: {'A': 0, 'T': 0, 'C': 0, 'G': 0}
|
|
|
Rev: NULL
|
... | ... | @@ -250,9 +250,9 @@ Implement the **complement(self)** method. If the sequence is either null or inv |
|
|
|
|
|
```
|
|
|
-----| Practice 1, Exercise 8 |------
|
|
|
NULL Seq created
|
|
|
NULL sequence created
|
|
|
New sequence created!
|
|
|
INVALID Seq!
|
|
|
INVALID sequence!
|
|
|
Sequence 0: (Length: 0) NULL
|
|
|
Bases: {'A': 0, 'T': 0, 'C': 0, 'G': 0}
|
|
|
Rev: NULL
|
... | ... | @@ -347,7 +347,7 @@ The session is finished. Make sure during this week that everything in this list |
|
|
* [ ] e9.py
|
|
|
* [ ] e10.py
|
|
|
* [ ] Seq1.py
|
|
|
* [ ] All the previous files have been pushed to your remote Gitlab repo
|
|
|
* [ ] All the previous files have been pushed to your remote Github repo
|
|
|
|
|
|
# Credits
|
|
|
|
... | ... | |