-
Notifications
You must be signed in to change notification settings - Fork 0
/
pycap_Splithalf_postcap_analysis_grace_seedfree.sh
318 lines (255 loc) · 9.05 KB
/
pycap_Splithalf_postcap_analysis_grace_seedfree.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
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
#!/bin/bash
#SBATCH -J postcap_seedfree
#SBATCH --mem-per-cpu=8G
#SBATCH --cpus-per-task=8
#SBATCH --partition=day
#SBATCH --time=1-00:00:00
#SBATCH --output="/Studies/CAP_Time_Analytics/cap_codes/slurm_output/postcap_seedfree-%A.out"
module load miniconda
source activate /software/env/pycap_env
####################################################
#
# Post-CAP analysis
#
####################################################
basedir=/Studies/
# Initial information required before running any CAP codes
homedir=$basedir/Connectome/subjects/
outdir=$basedir/CAP_Time_Analytics/results/Splithalf_postcap/
mkdir $outdir
datadirtag="$basedir/CAP_Time_Analytics/results/"
pscalarfilen=/$basedir/Connectome/Parcellations/CABNP/CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_parcels_LR_ReorderedByNetworks_Zeroes.pscalar.nii
sublistfilen=$basedir/CAP_Time_Analytics/sublist/hcp_n337.csv
parcelinfofilen=$basedir/CAP_Time_Analytics/parcellation/CABNP_info.csv
maxperm = 10
# Information needed to run Step 12
# These information can be obtained after running <Step 8: Identify subsets of population using time-analytics>
ksubgroupfilen=$basedir/CAP_Time_Analytics/results/Splithalf_postcap/gsr_seedfree/P100.0_k_solution_subcounts_allcTh.csv
subgroupfilen=$basedir/CAP_Time_Analytics/results/Splithalf_postcap/gsr_seedfree/P100.0_FO_mDT_vDT_subgroup_30nf.csv
# Information needed to run Step 12
# These information can be obtained after running NBM analysis on behavioral data
neuralpcafilen=$basedir/CAP_Time_Analytics/results/Splithalf_postcap/gsr_seedfree/P100.0_FO_mDT_vDT_neuralPCs_30nf.csv
behavtag="All_All_flip_dropAS_30nf"
behavpcn=27
behavfilen=/CAP_behavior_prep_RESTRICTED_hcp_n337_All_All_flip_dropAS_30nf.tsv
behavpcafilen=$basedir/CAP_Time_Analytics/results/Connectome_All_All_flip_dropAS_30nf_n337/analysis/results/NBRIDGE_Connectome_All_All_flip_dropAS_30nf_n337_BehaviorPCAScores.tsv
# ####################################################
# # Step 1: collect data
# ####################################################
for st in 100 #st=100 indicates using 100% of datapoints (seedfree)
do
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step1_colldata.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthreshold $st
done
####################################################
# Step 2: Plot QC and group level stats
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step2_plotqcgroup.py \
--homedir $homedir \
--outdir $outdir \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--ncapofinterest 4 5
####################################################
# Step 3: determine a set of basis CAPs
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step3_basis_caps.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--standardTthreshold 100 \
--basismethod hac \
--basis_k_range 4 5
#####################################################################
# Step 4: spatial reliability of basis CAPs (marginal distribution analysis)
#####################################################################
for stdk in 4 5
do
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step4_basis_45caps_margdist.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--standardTthreshold 100 \
--randTthresholdrange 100 \
--basismethod hac \
--basis_k_range $stdk
done
#####################################################################
# Step 5: Basis CAPs vs CAB-NP
#####################################################################
for stdk in 4 5
do
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step5_basis_45caps_vs_cabnp.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--parcelinfofilen $parcelinfofilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--standardTthreshold 100 \
--randTthresholdrange 100 \
--basismethod hac \
--basis_k_range $stdk
done
####################################################
# Step 6: Identify subsets of population contribution to k=4 or 5 solutions
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step6_subset_ksolution.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--classTh 1 2 \
--basis_k_range 4 5
####################################################
# Step 7: Test-retest (Day 1 vs Day 2) Time analytics Data (e.g.use 5-basis CAPs)
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step7_TRT_timeanalytics_data.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--basis_k_range 5
####################################################
# Step 8: Identify subsets of population using time-analytics
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step8_subset_timeanalytics.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--basis_k_range 5
####################################################
# Step 9: Test-retest (Day 1 vs Day 2) Time analytics Plot
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step9_TRT_timeanalytics_plot.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--subgroupfilen $subgroupfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--classTh 30 \
--basis_k_range 5
####################################################
# Step 10: Individual reliability Time analytics (heatmap rank-ordered subjects)
# Submit to bigmem, for each neural measure seperately.
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step10_indpermrel_timeanalytics.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--subgroupfilen $subgroupfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--classTh 30 \
--basis_k_range 5
####################################################
# Step 11: Positive-Negative state comparisons of Time analytics
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step11_posneg_timeanalytics.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--basis_k_range 5
####################################################
# Step 12: Subgroups of k=4 or 5 solutions vs bahavior
####################################################
python $basedir/CAP_Time_Analytics/cap_codes/pyCAP/pyCAP/pycap_Splithalf_postcap_step12_subset_ksolution_to_behavior.py \
--homedir $homedir \
--outdir $outdir \
--datadirtag $datadirtag \
--sublistfilen $sublistfilen \
--pscalarfilen $pscalarfilen \
--neuralpcafilen $neuralpcafilen \
--ksubgroupfilen $ksubgroupfilen \
--neuralsubgroupfilen $subgroupfilen \
--behavtag $behavtag \
--behavfilen $behavfilen \
--behavpcafilen $behavpcafilen \
--neuralpcafilen $neuralpcafilen \
--gsr y \
--unit p \
--minperm 1 \
--maxperm $maxperm \
--seedtype seedfree \
--randTthresholdrange 100 \
--classTh 30 \
--behavpcn $behavpcn \
--basis_k_range 5