File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,6 @@ $ cd data
20
20
$ snakemake -s download.smk -j1
21
21
```
22
22
23
- * NOTE: Only 10 % of the entire OAS sequences were downloaded for now due to space and computational cost.*
23
+ * NOTE: Only 3 % of the entire OAS sequences were downloaded for now due to space and computational cost.*
24
24
25
25
* TODO: Hint for total # of sequences, total size*
Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ import pandas as pd
2
2
3
3
manifest = pd .read_csv ('manifest_230324.csv' )
4
4
5
- # Randomly sample 10 % of the dataset.
6
- manifest = manifest .sample (frac = 0.1 , random_state = 42 )
5
+ # Randomly sample 3 % of the dataset.
6
+ manifest = manifest .sample (frac = 0.03 , random_state = 42 )
7
7
8
8
f2type = {r .filename :r .seq_type for r in manifest .to_records ()}
9
9
f2study = {r .filename :r .study for r in manifest .to_records ()}
You can’t perform that action at this time.
0 commit comments