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

Upload New File

parent 18647bf2
No related branches found
No related tags found
No related merge requests found
%% Cell type:markdown id: tags:
# Python course 2021 - Exercises C
%% Cell type:markdown id: tags:
## Part1 - file handling
%% Cell type:markdown id: tags:
---
1.1) Count number of sequences (number of headers) in AtCol0_Exons.fasta!
%% Cell type:code id: tags:
```
from google.colab import drive
drive.mount('/content/drive')
```
%% Output
Drive already mounted at /content/drive; to attempt to forcibly remount, call drive.mount("/content/drive", force_remount=True).
%% Cell type:code id: tags:
```
datei = open("/content/drive/MyDrive/Python_course_2021_data/AtCol0_Exons.fasta", "r")
lines = datei.readlines()
datei.close()
```
%% Cell type:markdown id: tags:
---
1.2) Count number of sequence lines!
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.3) Count number of characters in document! (How many per line?)
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.4) How long are all contained sequences combined?
%% Cell type:code id: tags:
```
```
%% Cell type:markdown id: tags:
---
1.5) Calculate the average sequence length in this file!
%% 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