Skip to content
Snippets Groups Projects
Commit 8b57154b authored by Bianca Laker's avatar Bianca Laker
Browse files

Upload New File

parent 29786a45
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
# Python course 2021 - Exercises F
%% Cell type:markdown id: tags:
## Part1 - DNA, RNA and peptide sequences
%% Cell type:markdown id: tags:
---
1.1) Write a function to get the reverse complement (upper case letters) of a DNA sequence given in upper case letters!
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.2) Write a function to convert a DNA sequence into a RNA sequence!
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.3) Write a function to translate a DNA sequence into amino acids (first frame only)!
* Tip: [wiki - codon tables](https://en.wikipedia.org/wiki/DNA_and_RNA_codon_tables)
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.4) Write a function to translate DNA sequences in all 6 frames into peptide sequences! The longest peptide sequence per DNA sequence should be returned!
%% Cell type:code id: tags:
```
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment