forked from McGranahanLab/CONIPHER-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0_runningTreeBuilding.sh
28 lines (19 loc) · 940 Bytes
/
0_runningTreeBuilding.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash
################################################################################## Input parameters
###################################################################################################
case_id="CRUKTOY001"
scriptDir=`pwd`"/src/"
inputTSV=`pwd`"/data/input_tsv.tsv"
outDir=`pwd`"/data/results"
###################################################################### Running treebuilding wrapper
###################################################################################################
source activate conipher
treeDir=${outDir}"/TreeBuilding/"
mkdir -p ${treeDir}
Rscript ${scriptDir}run_treebuilding.R \
--input_tsv ${inputTSV} \
--out_dir ${treeDir} \
--script_dir ${scriptDir} \
--prefix CRUK
############################################################################################### End
###################################################################################################