Skip to content
This repository was archived by the owner on Dec 17, 2018. It is now read-only.

Commit 04918a5

Browse files
committed
add live coding session from Wed 4 July 2018 course and small example of pandas
1 parent 060d438 commit 04918a5

10 files changed

+938
-0
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ pip install matplotlib
4444

4545
# biopython
4646
pip install biopython
47+
48+
# pandas
49+
pip install pandas
4750
```
4851

4952
On mac OSX you may need to run this command to accept the XCode license, before installing biopython:

live/data/genes.txt

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
gene chrom start end
2+
BRCA2 13 32889611 32973805
3+
TNFAIP3 6 138188351 138204449
4+
TCF7 5 133450402 133487556

live/data/seq.txt

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
AAAAAAAAAAAA
2+
TTTTTTTTTTTT
3+
CCCCCC
4+
GGGG
5+
ATCGAATCGTAAA

live/gc_content_data.csv

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
seq,gc
2+
AAAAAAAAAAAA,0
3+
TTTTTTTTTTTT,0
4+
CCCCCC,6
5+
GGGG,4
6+
ATCGAATCGTAAA,4

0 commit comments

Comments
 (0)