File tree Expand file tree Collapse file tree 6 files changed +9
-8
lines changed Expand file tree Collapse file tree 6 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -309,7 +309,7 @@ from an anatomical segmentation. The resulting table has ``FrameTimesStart`` and
309
309
310
310
sub-<subject_label>/
311
311
pet/
312
- sub-<subject_label>_[specifiers]_seg-<seg>_desc-preproc_timeseries .tsv
312
+ sub-<subject_label>_[specifiers]_seg-<seg>_desc-preproc_tacs .tsv
313
313
314
314
The ``desc-preproc `` entity indicates that the curves were derived from the
315
315
preprocessed PET series.
@@ -323,7 +323,7 @@ table containing the mean uptake within that region::
323
323
324
324
sub-<subject_label>/
325
325
pet/
326
- sub-<subject_label>_[specifiers]_seg-<seg>_ref-<ref>_desc-preproc_timeseries .tsv
326
+ sub-<subject_label>_[specifiers]_seg-<seg>_ref-<ref>_desc-preproc_tacs .tsv
327
327
328
328
The ``ref `` entity captures the reference region identifier provided via the
329
329
:ref: `CLI options <cli_refmask >` ``--ref-mask-name `` and ``--ref-mask-index ``.
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def _run_interface(self, runtime):
80
80
81
81
out_file = fname_presuffix (
82
82
self .inputs .in_file ,
83
- suffix = '_timeseries .tsv' ,
83
+ suffix = '_tacs .tsv' ,
84
84
newpath = runtime .cwd ,
85
85
use_ext = False ,
86
86
)
@@ -138,7 +138,7 @@ def _run_interface(self, runtime):
138
138
139
139
out_file = fname_presuffix (
140
140
self .inputs .in_file ,
141
- suffix = '_timeseries .tsv' ,
141
+ suffix = '_tacs .tsv' ,
142
142
newpath = runtime .cwd ,
143
143
use_ext = False ,
144
144
)
Original file line number Diff line number Diff line change @@ -164,7 +164,7 @@ def test_tacs_workflow(tmp_path):
164
164
inputs = pickle .load (f )
165
165
166
166
assert inputs ['in_file' ] == str (resampled_pet )
167
- assert Path (tmp_path / 'pet_tacs_wf' / 'tac' / 'pet_resampled_timeseries .tsv' ).exists ()
167
+ assert Path (tmp_path / 'pet_tacs_wf' / 'tac' / 'pet_resampled_tacs .tsv' ).exists ()
168
168
169
169
170
170
def test_ExtractRefTAC (tmp_path ):
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ def write_bidsignore(deriv_dir):
103
103
'*_pet.pet.gii' ,
104
104
'*_mixing.tsv' ,
105
105
'*_timeseries.tsv' ,
106
+ '*_tacs.tsv' ,
106
107
)
107
108
ignore_file = Path (deriv_dir ) / '.bidsignore'
108
109
Original file line number Diff line number Diff line change @@ -694,7 +694,7 @@ def init_pet_wf(
694
694
ds_pet_tacs = pe .Node (
695
695
DerivativesDataSink (
696
696
base_directory = petprep_dir ,
697
- suffix = 'timeseries ' ,
697
+ suffix = 'tacs ' ,
698
698
seg = config .workflow .seg ,
699
699
desc = 'preproc' ,
700
700
allowed_entities = ('seg' ,),
@@ -728,7 +728,7 @@ def init_pet_wf(
728
728
ds_ref_tacs = pe .Node (
729
729
DerivativesDataSink (
730
730
base_directory = petprep_dir ,
731
- suffix = 'timeseries ' ,
731
+ suffix = 'tacs ' ,
732
732
seg = config .workflow .seg ,
733
733
desc = 'preproc' ,
734
734
ref = config .workflow .ref_mask_name ,
Original file line number Diff line number Diff line change @@ -468,7 +468,7 @@ def init_pet_fit_wf(
468
468
ds_ref_tacs = pe .Node (
469
469
DerivativesDataSink (
470
470
base_directory = config .execution .petprep_dir ,
471
- suffix = 'timeseries ' ,
471
+ suffix = 'tacs ' ,
472
472
seg = config .workflow .seg ,
473
473
desc = 'preproc' ,
474
474
ref = config .workflow .ref_mask_name ,
You can’t perform that action at this time.
0 commit comments