Skip to content

Commit

Permalink
Hypotheses files names
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Mar 15, 2024
1 parent 6b322bd commit b9222b4
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions narps_open/pipelines/team_R9K3.py
Original file line number Diff line number Diff line change
Expand Up @@ -589,38 +589,47 @@ def get_hypotheses_outputs(self):
"""
nb_sub = len(self.subject_list)
files = [
# Hypothesis 1
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 2
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 3
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 4
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 5
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold1', 'spmT_0002_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0002.nii'),
# Hypothesis 6
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold1', 'spmT_0001_thr.nii'),
'_contrast_id_0002', '_threshold1', 'spmT_0002_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0001.nii'),
'_contrast_id_0002', 'spmT_0002.nii'),
# Hypothesis 7
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0001.nii'),
# Hypothesis 8
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0002_thr.nii'),
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0002.nii'),
'_contrast_id_0002', 'spmT_0001.nii'),
# Hypothesis 9
join(f'group_level_analysis_groupComp_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_groupComp_nsub_{nb_sub}',
Expand Down

0 comments on commit b9222b4

Please sign in to comment.