We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0b2056f + aa4c566 commit aaa532cCopy full SHA for aaa532c
nibabies/workflows/base.py
@@ -43,6 +43,7 @@
43
from __future__ import annotations
44
45
import os
46
+import pprint
47
import sys
48
import typing as ty
49
import warnings
@@ -366,6 +367,13 @@ def init_single_subject_wf(
366
367
368
anat = reference_anat.lower() # To be used for workflow connections
369
370
+ config.loggers.workflow.info(
371
+ 'Collected the following data for %s:\nRaw:\n%s\n\nDerivatives:\n\n%s\n',
372
+ f'sub-{subject_id}' if not session_id else f'sub-{subject_id}_ses-{session_id}',
373
+ pprint.pformat(subject_data),
374
+ pprint.pformat(anatomical_cache),
375
+ )
376
+
377
bids_root = str(config.execution.bids_dir)
378
output_dir = str(config.execution.nibabies_dir)
379
omp_nthreads = config.nipype.omp_nthreads
0 commit comments