File tree 4 files changed +75
-0
lines changed
4 files changed +75
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # TODO: add download and updater scripts -> data/gisaid-aligned.fa
4
+
1
5
# screen for non-human and low-coverage samples -> gisaid-filtered.fa
2
6
python3 filtering.py
3
7
@@ -17,4 +21,7 @@ sed -i 's/[{}]//g' data/variants.tn93.txt
17
21
Rscript hclust.R
18
22
19
23
# run FastTree and TreeTime
24
+ if [ ! -d " treetime" ]; then
25
+ mkdir treetime
26
+ fi
20
27
python3 treetime.py
Original file line number Diff line number Diff line change
1
+ body {
2
+ width : 95% ;
3
+ max-width : 1200px ;
4
+ margin : 1em auto;
5
+ font : .9 em/1.2 Cabin, Lato, sans-serif;
6
+ }
7
+
8
+ .container {
9
+ display : grid;
10
+ grid-template-columns : repeat (3 , minmax (0 , 1fr ));
11
+ grid-gap : 10px ;
12
+ }
13
+
14
+ header {
15
+ grid-column : 1 / 3 ;
16
+ grid-row : 1 ;
17
+ }
18
+
19
+ sidebar {
20
+ grid-column : 1 ;
21
+ grid-row : 2 ;
22
+ }
23
+
24
+ interface {
25
+ grid-column : 2 / 3 ;
26
+ grid-row : 2 ;
27
+ }
28
+
29
+ footer {
30
+ grid-column : 1 / 3 ;
31
+ grid-row : 3 ;
32
+ }
33
+
34
+ header ,
35
+ footer {
36
+ border-radius : 1px ;
37
+ padding : 10px ;
38
+ background-color : rgb (207 , 232 , 220 );
39
+ border : 2px solid rgb (79 , 185 , 227 );
40
+ }
41
+
42
+ sidebar {
43
+ border-right : 1px solid # 999 ;
44
+ }
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html xmlns ="http://www.w3.org/1999/xhtml " xml:lang ="en " lang ="en-us ">
3
+ < head >
4
+ < title > CoVizu</ title >
5
+ < link rel ="stylesheet " href ="/css/style.css ">
6
+ </ head >
7
+ < body >
8
+ < div class ="container ">
9
+ < header > header</ header >
10
+ < interface >
11
+ < canvas >
12
+
13
+ </ canvas >
14
+ </ interface >
15
+ < sidebar >
16
+ sidebar
17
+ </ sidebar >
18
+ < footer > footer</ footer >
19
+ </ div >
20
+ < script src ="js/covizu.js "> </ script >
21
+ </ body >
22
+ </ html >
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ python3 -m http.server 8001 --bind 127.0.0.1
You can’t perform that action at this time.
0 commit comments