-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrunall.sh
executable file
·71 lines (64 loc) · 1.87 KB
/
runall.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/bin/bash
bin/rfpred.R \
-t training_data/master.csv.gz \
-i training_data/master.info.csv \
-s test_data/18_set.csv \
-o results/18_master \
-m 15
bin/rfpred.R \
-t training_data/lombardo_new.csv.gz \
-i training_data/lombardo.info.csv \
-s test_data/18_set.csv \
-o results/18_lombardo \
-m 15
bin/mergeph.R \
-d excel_files/647/647_structures2_export_descriptors.xlsx \
-p excel_files/647/647_structures2_export_pH2.xlsx \
-m excel_files/647/647_Moka_incl_designation.xlsx \
-o test_data/647_set.csv
bin/rfpred.R \
-t training_data/master.csv.gz \
-i training_data/master.info.csv \
-s test_data/647_set.csv \
-o results/647_master \
-m 500
bin/rfpred.R \
-t training_data/lombardo_new.csv.gz \
-i training_data/lombardo.info.csv \
-s test_data/647_set.csv \
-o results/647_lombardo \
-m 500
bin/mergeph.R \
-d excel_files/1202/1202_structures_export_pH74.xlsx \
-p excel_files/1202/1202_structures_export_pH2.xls \
-m excel_files/1202/1202_Moka_incl_designation.xlsx \
-o test_data/1202_set.csv
bin/rfpred.R \
-t training_data/master.csv.gz \
-i training_data/master.info.csv \
-s test_data/1202_set.csv \
-o results/1202_master \
-m 1000
bin/rfpred.R \
-t training_data/lombardo_new.csv.gz \
-i training_data/lombardo.info.csv \
-s test_data/1202_set.csv \
-o results/1202_lombardo \
-m 1000
bin/mergeph.R \
-d excel_files/5000/5000_pH74.xlsx \
-p excel_files/5000/5000_structures_only_export_pH2.xlsx \
-m excel_files/5000/5000_Moka_incl_designation.xlsx \
-o test_data/5000_set.csv
bin/rfpred.R \
-t training_data/master.csv.gz \
-i training_data/master.info.csv \
-s test_data/5000_set.csv \
-o results/5000_master \
-m 1000
bin/rfpred.R \
-t training_data/lombardo_new.csv.gz \
-i training_data/lombardo.info.csv \
-s test_data/5000_set.csv \
-o results/5000_lombardo \
-m 1000