Create scripts/run_model.sh (#5)
Browse files- Create scripts/run_model.sh (f6e3642f9daa9c9e094291f028fc8c1504df251e)
Co-authored-by: Ryan Keivanfar <[email protected]>
- scripts/run_model.sh +7 -0
scripts/run_model.sh
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/bash
|
2 |
+
|
3 |
+
# Ensure that you have hg38.fa and hg38.fa.fai in Tahoeformer/data
|
4 |
+
# wget -O - http://hgdownload.cse.ucsc.edu/goldenPath/hg38/bigZips/hg38.fa.gz | gunzip -c > /PATH/TO/Tahoeformer/data/hg38.fa
|
5 |
+
# samtools samtools faidx /PATH/TO/Tahoeformer/data/hg38.fa
|
6 |
+
|
7 |
+
python /PATH/TO/Tahoeformer/scripts/train.py --config /PATH/TO/Tahoeformer/configs/config.yaml
|