-
Notifications
You must be signed in to change notification settings - Fork 5
/
run_batcheffect_pipeline.slurm
220 lines (157 loc) · 6.28 KB
/
run_batcheffect_pipeline.slurm
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
#!/bin/bash
#SBATCH --job-name=batcheffect
#SBATCH --output=celltyping_batcheffect.out
#SBATCH --gres=gpu:1
#SBATCH --cpus-per-task=10
source ~/.bashrc
PROJECT_PATH=""
ENV_PATH=""
conda activate $ENV_PATH/celltyping
cd $PROJECT_PATH
batcheffect="Harmony"
#batcheffect="fastMNN"
## 1. PBMC_batch1_indS1_to_indS5
task="PBMC_batch1_ind"
train="1154"
test="1085"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 2. PBMC_batch1_A_to_B
task="PBMC_batch1_ABC"
train="A"
test="B"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 3. PBMC_downsampled_batch1_A_to_indS5
task="PBMC_batch1_batchtoind"
train="A"
test="1085"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 4. PBMC_batch2_control_to_stimulated
task="PBMC_batch2"
train="control"
test="stimulated"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 5. PBMC_protocols_Smart-seq2_to_CEL-Seq2
task="PBMC_protocols_pbmc1"
train="Smart-seq2"
test="CEL-Seq2"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 6. PBMC_protocols_CEL-Seq2_to_10X
task="PBMC_protocols_pbmc1"
train="CEL-Seq2"
test="10x-v2"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 7. PBMC_protocols_10X_to_CEL-Seq2
task="PBMC_protocols_pbmc1"
train="10x-v2"
test="CEL-Seq2"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 8. PBMC_protocols_Smart-Seq2_PBMC1_to_PBMC2
task="PBMC_protocols_batch_smart"
train="pbmc1"
test="pbmc2"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 9. Seg_to_Muraro
task="pancreas"
train="seg"
test="muraro"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 10. Muraro_to_Seg
task="pancreas"
train="muraro"
test="seg"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 11. Seg_Xin_to_Muraro
task="pancreas_multi_to_multi"
train="seg_xin"
test="muraro"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 12. Seg_Healthy_to_T2D
task="pancreas_seg_cond"
train="Healthy"
test="T2D"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 13. Seg_Healthy_to_Muraro
task="pancreas_custom"
train="Healthy"
test="muraro"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 14. Seg_6Healthy3T2D_to_Seg_1T2D
task="pancreas_seg_mix"
train="Healthy"
test="T2D"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 15. Seg_5Healthy4T2D_to_Seg_1Healthy
task="pancreas_seg_mix"
train="T2D"
test="Healthy"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 16. Wholebrain_FC_ind1_to_ind2_major_celltypes
task="mousebrain_FC"
train="P60FCRep1"
test="P60FCCx3cr1Rep1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 17. Wholebrain_FC_ind1_to_ind2_sub_celltypes
task="mousebrain_FC_sub"
train="P60FCRep1"
test="P60FCCx3cr1Rep1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 18. Wholebrain_HC_ind1_to_ind2_major_celltypes
task="mousebrain_HC"
train="P60HippoRep1"
test="P60HippoRep2"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 19. Wholebrain_HC_ind1_to_ind2_sub_celltypes
task="mousebrain_HC_sub"
train="P60HippoRep1"
test="P60HippoRep2"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 20. Wholebrain_FC_to_HC_major_celltypes, cannot run no-feature because CUDA out of memory
task="mousebrain_region"
train="FC"
test="HC"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 21. pFC_Adult_to_P21_major_celltypes
task="mousebrain_FC_stage"
train="Adult"
test="P21"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 22. pFC_Adult_to_P21_sub_celltypes
task="mousebrain_FC_stage_sub"
train="Adult"
test="P21"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 23. Wholebrain_FC_adult_to_pFC_adult_major_celltypes, cannot run no-feature because CUDA out of memory
task="mousebrain_FC_datasets"
train="FC"
test="Adult"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 24. Wholebrain_FC_ind1_to_pFC_ind1
task="mousebrain_FC_datasets_multiinds"
train="FC_P60FCRep1"
test="Adult_PFCSample1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 25. Wholebrain_FC_exclude_ind2_to_ind2_major_celltypes
task="mousebrain_FC_multiinds"
train="ALL"
test="P60FCCx3cr1Rep1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 26. Wholebrain_FC_exclude_ind2_to_ind2_sub_celltypes
task="mousebrain_FC_multiinds_sub"
train="ALL"
test="P60FCCx3cr1Rep1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 27. Wholebrain_FC_downsampled_exclude_ind2_to_ind2_major_celltypes
task="mousebrain_FC_multiinds_sample"
train="P60FCRep1"
test="P60FCCx3cr1Rep1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 28. Wholebrain_FC_downsample_exclude_ind2_to_ind2_sub_celltypes
task="mousebrain_FC_multiinds_sub_sample"
train="P60FCRep1"
test="P60FCCx3cr1Rep1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect
## 29. Wholebrain_FC_downsample_adult_to_pFC_ind1
task="mousebrain_FC_datasets_multiinds_sample"
train="FC_P60FCRep1"
test="Adult_PFCSample1"
python -m test_batcheffect.test_batcheffect $task --train $train --test $test --batcheffect $batcheffect