Skip to content

Commit

Permalink
Hypotheses naming
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Apr 9, 2024
1 parent bd835ca commit dd39735
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions narps_open/pipelines/team_3TR7.py
Original file line number Diff line number Diff line change
Expand Up @@ -621,48 +621,48 @@ def get_hypotheses_outputs(self):
files = [
# Hypothesis 1
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0001.nii'),
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 2
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0001.nii'),
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 3
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0001.nii'),
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 4
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0001', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0002', 'spmT_0001.nii'),
'_contrast_id_0001', 'spmT_0001.nii'),
# Hypothesis 5
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold1', 'spmT_0002_thr.nii'),
'_contrast_id_0002', '_threshold1', 'spmT_0002_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0003', 'spmT_0002.nii'),
'_contrast_id_0002', 'spmT_0002.nii'),
# Hypothesis 6
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold1', 'spmT_0002_thr.nii'),
'_contrast_id_0002', '_threshold1', 'spmT_0002_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0003', 'spmT_0002.nii'),
'_contrast_id_0002', 'spmT_0002.nii'),
# Hypothesis 7
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalIndifference_nsub_{nb_sub}',
'_contrast_id_0003', 'spmT_0001.nii'),
'_contrast_id_0002', 'spmT_0001.nii'),
# Hypothesis 8
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0003', 'spmT_0001.nii'),
'_contrast_id_0002', 'spmT_0001.nii'),
# Hypothesis 9
join(f'group_level_analysis_groupComp_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold0', 'spmT_0001_thr.nii'),
'_contrast_id_0002', '_threshold0', 'spmT_0001_thr.nii'),
join(f'group_level_analysis_groupComp_nsub_{nb_sub}',
'_contrast_id_0003', 'spmT_0001.nii')
'_contrast_id_0002', 'spmT_0001.nii')
]
return [join(self.directories.output_dir, f) for f in files]

0 comments on commit dd39735

Please sign in to comment.