Skip to content

Commit

Permalink
Correcting hypothesis files
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Mar 15, 2024
1 parent 78dbe44 commit 6b322bd
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions narps_open/pipelines/team_R9K3.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,40 +590,40 @@ def get_hypotheses_outputs(self):
nb_sub = len(self.subject_list)
files = [
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'),
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'),
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'),
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'),
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'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold1', 'spmT_0001_thr.nii'),
'_contrast_id_0002', '_threshold1', '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'),
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'),
join(f'group_level_analysis_equalRange_nsub_{nb_sub}',
'_contrast_id_0003', '_threshold0', 'spmT_0002_thr.nii'),
'_contrast_id_0002', '_threshold0', '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'),
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 6b322bd

Please sign in to comment.