https://doi.org/10.5281/zenodo.19627256

Scripted First-Level Analyses in FSL using fMRIPrep data#

This notebook walks through a simple, novice-friendly workflow in Neurodesk EDU:

  1. install one OpenNeuro dataset and get one subject

  2. run fMRIPrep for that subject and extract FEAT-ready confounds

  3. convert BIDS events.tsv files to FSL 3-column EV files

  4. render and run a first-level FEAT model from a trust-game FEAT template

  5. make a first pass at viewing the result in NiiVue

Author:

Date: April 2, 2026

License:

Provenance: This notebook adapts course materials and selected logic from the Fareri trust-game workflow code, but rewrites the steps so they can be followed directly in notebook cells. Full workflow repository: tubric/fareri-2022-neuroimage.

Acknowledgments: This notebook was generated with assistance from ChatGPT-5 across several iterations and then revised by the instructor. The instructor reviewed the final content and takes responsibility for it.

Citation and Resources#

Study-specific references#

  • Fareri et al. (2022): Fareri, D. S., Hackett, K., Tepfer, L. J., Kelly, V., Henninger, N., Reeck, C., Giovannetti, T., & Smith, D. V. (2022). Age-related differences in ventral striatal and default mode network function during reciprocated trust. NeuroImage, 256, 119267. https://doi.org/10.1016/j.neuroimage.2022.119267

  • Smith et al. (2024): Smith, D. V., Ludwig, R. M., Dennison, J. B., Reeck, C., & Fareri, D. S. (2024). An fMRI Dataset on Social Reward Processing and Decision Making in Younger and Older Adults. Scientific Data, 11(1), 158. https://doi.org/10.1038/s41597-024-02931-y

Full workflow repository#

Tools included in this workflow#

  • fMRIPrep: Esteban, O., Markiewicz, C. J., Blair, R. W., et al. (2019). fMRIPrep: a robust preprocessing pipeline for functional MRI. Nature Methods, 16, 111–116.

  • FSL / FEAT: Jenkinson, M., Beckmann, C. F., Behrens, T. E. J., Woolrich, M. W., & Smith, S. M. (2012). FSL. NeuroImage, 62, 782–790.

  • DataLad: Halchenko, Y. O., Meyer, K., Poldrack, B., et al. (2021). DataLad: distributed system for joint management of code, data, and their relationship. Journal of Open Source Software, 6, 3262.

  • bidsutils / BIDSto3col.sh: Tom Nichols and contributors. bids-standard/bidsutils.

  • NiiVue / ipyniivue for interactive image viewing in Jupyter.

Dataset#

  • OpenNeuro ds003745 (trust game dataset used in class materials and labs)

Educational resources#

  • Course labs on Neurodesk, fMRIPrep, FEAT, and 3-column event files.

Table of content#

1. Load software tools and import python libraries
2. Data preparation
3. Run fMRIPrep for one subject
4. Make a FEAT confounds file
5. Convert events.tsv to 3-column files
6. Render the FEAT template
7. Run first-level FEAT
8. Fix FEAT registration for fMRIPrep-preprocessed data
9. Results
10. Dependencies in Jupyter/Python

1. Load software tools and import python libraries#

import module
await module.load('fmriprep/25.2.5')
await module.load('fsl/6.0.7.22')
await module.list()
['fmriprep/25.2.5', 'fsl/6.0.7.22']
%%capture
!pip install pandas
from pathlib import Path
import os
import glob
import pandas as pd
from IPython.display import display, Markdown, Image

base_dir = Path.home() / "trust_example"
print(base_dir)
/home/jovyan/trust_example

2. Data preparation#

We will keep everything for this example in one folder directly under the home directory:

~/trust_example

That makes the paths easy to read, and it also makes it easier to rerun or delete the whole example later if you want a clean start.

Inside that folder, we will make a few subdirectories:

  • templates/ for the FEAT template

  • bids/ for the OpenNeuro dataset

  • derivatives/ for fMRIPrep output, confounds, EV files, and FEAT output

  • scratch/ for temporary working files

  • bidsutils/ for Tom Nichols’ BIDSto3col.sh

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example"

mkdir -p "$EXAMPLE_DIR"
cd "$EXAMPLE_DIR"

# Keep the example organized in one project folder.
mkdir -p templates bids derivatives scratch

# Copy the one FEAT template we need.
curl -L \
  https://raw.githubusercontent.com/tubric/fareri-2022-neuroimage/main/templates/L1_task-trust_model-01_type-act.fsf \
  -o templates/L1_task-trust_model-01_type-act.fsf

# Install bidsutils separately so we can use BIDSto3col.sh.
if [ ! -d bidsutils ]; then
  git clone --depth 1 https://github.com/bids-standard/bidsutils.git
fi

# Install the OpenNeuro dataset skeleton and get the full subject recursively.
cd bids
if [ ! -d ds003745 ]; then
  datalad install https://github.com/OpenNeuroDatasets/ds003745.git
fi

cd ds003745
datalad get -r sub-104
install(ok): /home/jovyan/trust_example/bids/ds003745 (dataset)
get(ok): sub-104/anat/sub-104_T1w.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/anat/sub-104_T2w.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/fmap/sub-104_magnitude1.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/fmap/sub
-104_magnitude2.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/fmap/sub-104_phasediff.nii.gz (fi
le) [from s3-PUBLIC...]
get(ok): sub-104/func/sub-104_task-sharedreward_run-01_bold.nii.gz (file) [f
rom s3-PUBLIC...]
get(ok): sub-104/func/sub-104_task-sharedreward_run-02_bold.nii.gz (file) [from s3
-PUBLIC...]
get(ok): sub-104/func/sub-104_task-trust_run-01_bold.nii.gz (file) [from s3-PUBLIC...]
g
et(ok): sub-104/func/sub-104_task-trust_run-02_bold.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-1
04/func/sub-104_task-trust_run-03_bold.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/func/sub-1
04_task-trust_run-04_bold.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/func/sub-104_task-trust
_run-05_bold.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/func/sub-104_task-ultimatum_run-01_b
old.nii.gz (file) [from s3-PUBLIC...]
get(ok): sub-104/func/sub-104_task-ultimatum_run-02_bold.nii.g
z (file) [from s3-PUBLIC...]
get(ok): sub-104 (directory)
action summary:
  get (ok: 15)
 % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
            Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0
  0 --:--:-- --:--:-- --:--:--     0
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100 73223  100 73223    0     0   200k      0 --:--:-- --:--:-- --:--:--  199k
Cloning into 'bidsutils'...
[INFO] Attempting a clone into /home/jovyan/trust_example/bids/ds003745 
[INFO] Attempting to clone
from https://github.com/OpenNeuroDatasets/ds003745.git to /home/jovyan/trust_example/bids/ds003745
[INFO] Start enumerating objects 
[INFO] Start counting objects
[INFO] Start compressing objects
[INFO] Start receiving objects
[INFO] Start resolving deltas
[INFO] Completed clone attempts for Dataset(/home/jovyan/trust_example/bids/ds003745)
[INFO] Remote origin not usable by git-annex; setting annex-ignore
[INFO] https://github.com/OpenNeuroDatasets/ds003745.git/config download failed: Not Found
[INFO] access to 1 dataset sibling s3-PRIVATE not auto-enabled, enable with:
| 		datalad siblings -d
 "/home/jovyan/trust_example/bids/ds003745" enable -s s3-PRIVATE
[INFO] Ensuring presence of Dataset(/home/jovyan/trust_example/bids/ds003745) to get /home/jovyan/tr
ust_example/bids/ds003745/sub-104
!tree -L 3 ~/trust_example/templates
!tree -L 3 ~/trust_example/bids/ds003745/sub-104
/home/jovyan/trust_example/templates
└── L1_task-trust_model-01_type-act.fsf

1 directory, 1 file
/home/jovyan/trust_example/bids/ds003745/sub-104
├── anat
│   ├── sub-104_T1w.json
│   ├── sub-104_T1w.nii.gz -> ../../.git/annex/objects/wM/31/MD5E-s8381149--5fd51ee8f8b1d0fa00490acab7054f44.nii.gz/MD5E-s8381149--5fd51ee8f8b1d0fa00490acab7054f44.nii.gz
│   ├── sub-104_T2w.json
│   └── sub-104_T2w.nii.gz -> ../../.git/annex/objects/Z3/xJ/MD5E-s9405965--d643b78dc1b963c582be22a5e67576c5.nii.gz/MD5E-s9405965--d643b78dc1b963c582be22a5e67576c5.nii.gz
├── fmap
│   ├── sub-104_magnitude1.json
│   ├── sub-104_magnitude1.nii.gz -> ../../.git/annex/objects/5p/kK/MD5E-s227307--ff542908f56f6acec5e8ef22a84ec4b2.nii.gz/MD5E-s227307--ff542908f56f6acec5e8ef22a84ec4b2.nii.gz
│   ├── sub-104_magnitude2.json
│   ├── sub-104_magnitude2.nii.gz -> ../../.git/annex/objects/fz/8J/MD5E-s225256--6926b13a836ec3487bb68649bf0f36cb.nii.gz/MD5E-s225256--6926b13a836ec3487bb68649bf0f36cb.nii.gz
│   ├── sub-104_phasediff.json
│   └── sub-104_phasediff.nii.gz -> ../../.git/annex/objects/Qw/1v/MD5E-s315320--78621dbba52c9bf69a344e60e82a7c57.nii.gz/MD5E-s315320--78621dbba52c9bf69a344e60e82a7c57.nii.gz
├── func
│   ├── sub-104_task-sharedreward_run-01_bold.json
│   ├── sub-104_task-sharedreward_run-01_bold.nii.gz -> ../../.git/annex/objects/8G/Jk/MD5E-s46088562--9731c3b106760361503f64a140d31914.nii.gz/MD5E-s46088562--9731c3b106760361503f64a140d31914.nii.gz
│   ├── sub-104_task-sharedreward_run-01_events.tsv
│   ├── sub-104_task-sharedreward_run-02_bold.json
│   ├── sub-104_task-sharedreward_run-02_bold.nii.gz -> ../../.git/annex/objects/F7/ZF/MD5E-s46094097--51993b075ce4576cf7d9f87af3ed87fb.nii.gz/MD5E-s46094097--51993b075ce4576cf7d9f87af3ed87fb.nii.gz
│   ├── sub-104_task-sharedreward_run-02_events.tsv
│   ├── sub-104_task-trust_run-01_bold.json
│   ├── sub-104_task-trust_run-01_bold.nii.gz -> ../../.git/annex/objects/qQ/Wf/MD5E-s49583622--5df9c6e76342f61d119f834930f1b106.nii.gz/MD5E-s49583622--5df9c6e76342f61d119f834930f1b106.nii.gz
│   ├── sub-104_task-trust_run-01_events.tsv
│   ├── sub-104_task-trust_run-02_bold.json
│   ├── sub-104_task-trust_run-02_bold.nii.gz -> ../../.git/annex/objects/Zx/1g/MD5E-s49598762--8064d7bae979bf7dce903a5d9566c179.nii.gz/MD5E-s49598762--8064d7bae979bf7dce903a5d9566c179.nii.gz
│   ├── sub-104_task-trust_run-02_events.tsv
│   ├── sub-104_task-trust_run-03_bold.json
│   ├── sub-104_task-trust_run-03_bold.nii.gz -> ../../.git/annex/objects/wg/zf/MD5E-s49517139--ab7192041bf89d0090c5073efde94d35.nii.gz/MD5E-s49517139--ab7192041bf89d0090c5073efde94d35.nii.gz
│   ├── sub-104_task-trust_run-03_events.tsv
│   ├── sub-104_task-trust_run-04_bold.json
│   ├── sub-104_task-trust_run-04_bold.nii.gz -> ../../.git/annex/objects/7j/Z7/MD5E-s49498400--842108100e1e9e1ba319befbf607a742.nii.gz/MD5E-s49498400--842108100e1e9e1ba319befbf607a742.nii.gz
│   ├── sub-104_task-trust_run-04_events.tsv
│   ├── sub-104_task-trust_run-05_bold.json
│   ├── sub-104_task-trust_run-05_bold.nii.gz -> ../../.git/annex/objects/2z/m5/MD5E-s49530982--83aa67c0eeb97763f1a9ed2fed446f5f.nii.gz/MD5E-s49530982--83aa67c0eeb97763f1a9ed2fed446f5f.nii.gz
│   ├── sub-104_task-trust_run-05_events.tsv
│   ├── sub-104_task-ultimatum_run-01_bold.json
│   ├── sub-104_task-ultimatum_run-01_bold.nii.gz -> ../../.git/annex/objects/px/3W/MD5E-s45649089--6c0c75aa15a19bd42fa34aa85f86364c.nii.gz/MD5E-s45649089--6c0c75aa15a19bd42fa34aa85f86364c.nii.gz
│   ├── sub-104_task-ultimatum_run-01_events.tsv
│   ├── sub-104_task-ultimatum_run-02_bold.json
│   ├── sub-104_task-ultimatum_run-02_bold.nii.gz -> ../../.git/annex/objects/mx/Qg/MD5E-s45657152--c4ca6e2d5208031fd9aaf4a8735692a2.nii.gz/MD5E-s45657152--c4ca6e2d5208031fd9aaf4a8735692a2.nii.gz
│   └── sub-104_task-ultimatum_run-02_events.tsv
├── sub-104_scans.json
└── sub-104_scans.tsv

4 directories, 39 files

The example below uses:

  • subject: 104

  • task: trust

  • run: 01

That keeps the notebook manageable, but the same logic can be repeated for the other runs.

For teaching purposes, one run is a nice compromise: the model is still realistic, but the files and paths stay simple enough to follow line by line.

3. Run fMRIPrep for one subject#

The next cell runs fMRIPrep on one participant and writes the outputs under ~/trust_example/derivatives/fmriprep.

A few practical notes:

  • the FreeSurfer license file should exist at ~/.license

  • this command will likely take a couple of hours to run

  • if you are wondering whether it is still running, go back to the Terminal and type top

  • the antsRegistration step is especially slow, so long stretches of apparent inactivity are normal

  • we use MNI152NLin6Asym:res-2 so the preprocessed BOLD file lands on a 2 mm MNI grid that is easy to use alongside standard FSL templates and atlases

One important detail: the res-2 part controls the output grid of the resampled BOLD files. It does not change the resolution used for the underlying nonlinear normalization.

# Request a freesurfer license and store it in your homedirectory. 
# This is just an example - please replace with your license id:
!echo "Steffen.Bollmann@cai.uq.edu.au" > ~/.license
!echo "21029" >> ~/.license
!echo "*Cqyn12sqTCxo" >> ~/.license
!echo "FSxgcvGkNR59Y" >> ~/.license
!ls -l ~/.license
-rw-rw-r-- 1 jovyan jovyan 65 Apr 20 04:12 /home/jovyan/.license
%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example"

sub=104
BIDS_DIR="$EXAMPLE_DIR/bids/ds003745"
OUT_DIR="$EXAMPLE_DIR/derivatives/fmriprep"
WORK_DIR="$EXAMPLE_DIR/scratch/fmriprep_work"
FS_LIC="$HOME/.license"

mkdir -p "$OUT_DIR" "$WORK_DIR"

export OMP_NUM_THREADS=1
export ITK_GLOBAL_DEFAULT_NUMBER_OF_THREADS=1

mkdir -p "$HOME/freesurfer-subjects-dir"
export SUBJECTS_DIR="$HOME/freesurfer-subjects-dir"

# This command will likely take a couple of hours to finish.
# If you want to confirm that it is still running, go back to the
# Terminal and type: top
# The antsRegistration process is especially slow and can run for
# a long time without printing much new output.

fmriprep \
  "$BIDS_DIR" \
  "$OUT_DIR" \
  participant \
  --participant-label "$sub" \
  --stop-on-first-crash \
  --fs-license-file "$FS_LIC" \
  --fs-subjects-dir "$SUBJECTS_DIR" \
  --fs-no-reconall \
  --output-spaces MNI152NLin6Asym:res-2 \
  --nthreads 12 \
  --omp-nthreads 1 \
  --mem-mb 12000 \
  -w "$WORK_DIR"
bids-validator@1.14.10
This dataset appears to be BIDS compatible.
        Summary:
        Available Tasks:        Available Modalities:
 292 Files, 429.42MB        sharedreward            MRI                   
        50 - Subjects
          trust                                         
        1 - Session                ultimatu
m                                     


	If you have any questions, please post on https://neu
rostars.org/tags/bids.
260420-04:13:54,118 nipype.workflow IMPORTANT:
	 Running fMRIPrep version 25.2.5

         License N
OTICE ##################################################
         fMRIPrep 25.2.5
         Copyright
 The NiPreps Developers.
         
         This product includes software developed by
         the
 NiPreps Community (https://nipreps.org/).
         
         Portions of this software were develop
ed at the Department of
         Psychology at Stanford University, Stanford, CA, US.
     This software is also distributed as a Docker container image.
         The bootstrapping file
for the image ("Dockerfile") is licensed
         under the MIT License.
         
         This sof
tware may be distributed through an add-on package called
         "Docker Wrapper" that is under th
e BSD 3-clause License.
         #################################################################
2
60420-04:13:54,118 nipype.workflow IMPORTANT:
	 Building fMRIPrep's workflow:
           * BIDS data
set path: /home/jovyan/trust_example/bids/ds003745.
           * Participants and sessions: sub-104.

           * Run identifier: 20260420-041258_614836ed-11c2-44a7-93d9-1f1c425dfd68.
           * Out
put spaces: MNI152NLin6Asym:res-2.
           * Pre-run FreeSurfer's SUBJECTS_DIR: /home/jovyan/free
surfer-subjects-dir.
260420-04:14:09,292 nipype.workflow INFO:
	 ANAT Stage 1: Adding template workflow
260420-04:14:10,645 nipype.workflow INFO:
	 ANAT Stage 2: Preparing brain extraction workflow
260420-04:14:23,75 nipype.workflow INFO:
	 ANAT Stage 3: Preparing segmentation workflow
260420-04:14:23,80 nipype.workflow INFO:
	 ANAT Stage 4: Preparing normalization workflow for ['MNI1
52NLin6Asym', 'MNI152NLin2009cAsym']
260420-04:14:23,90 nipype.workflow INFO:
	 ANAT Skipping Stages 5+
260420-04:14:24,18 nipype.workflow INFO:
	 B0 field inhomogeneity map will be estimated with the fol
lowing 1 estimator(s): [<EstimatorType.PHASEDIFF: 3>].
260420-04:14:24,168 nipype.workflow INFO:
	 Setting up fieldmap "auto_00000" (EstimatorType.PHASEDIF
F) with <sub-104_phasediff.nii.gz, sub-104_magnitude1.nii.gz, sub-104_magnitude2.nii.gz>
260420-04:14:24,254 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-sharedre
ward_run-01_bold.nii.gz.
260420-04:14:24,419 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:24,433 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:24,447 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:24,449 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:24,458 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:29,835 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:29,839 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:29,856 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:31,612 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-sharedre
ward_run-02_bold.nii.gz.
260420-04:14:31,682 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:31,691 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:31,696 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:31,698 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:31,704 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:31,756 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:31,760 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:31,773 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.971s.
260420-04:14:31,914 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-trust_ru
n-01_bold.nii.gz.
260420-04:14:31,986 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:31,996 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:32,2 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:32,5 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:32,13 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:32,69 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:32,72 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, registeri
ng with T1w instead.
260420-04:14:32,93 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an off
set of 0.972s.
260420-04:14:32,229 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-trust_ru
n-02_bold.nii.gz.
260420-04:14:32,300 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:32,310 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:32,316 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:32,318 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:32,323 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:32,376 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:32,380 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:32,394 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:32,537 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-trust_ru
n-03_bold.nii.gz.
260420-04:14:32,614 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:32,624 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:32,630 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:32,632 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:32,640 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:32,691 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:32,694 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:32,708 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:33,91 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-trust_run
-04_bold.nii.gz.
260420-04:14:33,162 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:33,171 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:33,176 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:33,177 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:33,183 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:33,232 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:33,235 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:33,250 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:33,421 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-trust_ru
n-05_bold.nii.gz.
260420-04:14:33,494 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:33,503 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:33,508 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:33,510 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:33,516 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:33,569 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:33,572 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:33,589 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:33,729 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-ultimatu
m_run-01_bold.nii.gz.
260420-04:14:33,793 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:33,800 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:33,804 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:33,806 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:33,810 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:33,857 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:33,860 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:33,872 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:33,996 nipype.workflow INFO:
	 No single-band-reference found for sub-104_task-ultimatu
m_run-02_bold.nii.gz.
260420-04:14:34,59 nipype.workflow INFO:
	 Stage 1: Adding HMC boldref workflow
260420-04:14:34,67 nipype.workflow INFO:
	 Stage 2: Adding motion correction workflow
260420-04:14:34,71 nipype.workflow INFO:
	 Stage 3: Adding fieldmap reconstruction workflow
260420-04:14:34,72 nipype.workflow INFO:
	 Stage 3: Registering fieldmap to boldref
260420-04:14:34,77 nipype.workflow INFO:
	 Stage 4: Adding coregistration boldref workflow
260420-04:14:34,121 nipype.workflow INFO:
	 Stage 5: Adding coregistration workflow
260420-04:14:34,123 nipype.workflow WARNING:
	 T2w intermediate for FSL is not implemented, register
ing with T1w instead.
260420-04:14:34,133 nipype.workflow IMPORTANT:
	 BOLD series will be slice-timing corrected to an of
fset of 0.972s.
260420-04:14:48,182 nipype.workflow INFO:
	 fMRIPrep workflow graph with 2030 nodes built successful
ly.
260420-04:15:34,337 nipype.workflow IMPORTANT:
	 fMRIPrep started!
260420-04:15:48,424 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.full_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_w
f/sub_104_wf/anat_fit_wf/brain_extraction_wf/full_wm".
260420-04:15:48,426 nipype.workflow INFO:
	 [Node] Executing "full_wm" <nipype.interfaces.utility.wr
appers.Function>
260420-04:15:48,683 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.res_tmpl" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_
wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/res_tmpl".
260420-04:15:48,685 nipype.workflow INFO:
	 [Node] Executing "res_tmpl" <niworkflows.interfaces.niba
bel.RegridToZooms>
260420-04:15:49,466 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.out_merge_fmap_id" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_
104_wf/fmap_preproc_wf/out_merge_fmap_id".
260420-04:15:49,468 nipype.workflow INFO:
	 [Node] Execut
ing "out_merge_fmap_id" <nipype.interfaces.utility.base.Merge>
260420-04:15:49,479 nipype.workflow INFO:
	 [Node] Finished "full_wm", elapsed time 1.041842s.
260420-04:15:49,482 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.out_merge_method" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/fmap_preproc_wf/out_merge_method".
260420-04:15:49,484 nipype.workflow INFO:
	 [Node] Executing "out_merge_method" <nipype.interfaces.u
tility.base.Merge>
260420-04:15:49,485 nipype.workflow INFO:
	 [Node] Finished "out_merge_method", e
lapsed time 0.000224s.
260420-04:15:49,505 nipype.workflow INFO:
	 [Node] Finished "out_merge_fmap_id", elapsed time 0.0003
52s.
260420-04:15:49,985 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.lap_tmpl" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_
wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/lap_tmpl".
260420-04:15:49,990 nipype.workflow INFO:
 [Node] Executing "lap_tmpl" <nipype.interfaces.ants.utils.ImageMath>
260420-04:15:50,164 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_native_wf/bold_source".
260420-04:15:50,167 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utilit
y.base.Select>
260420-04:15:50,173 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.000553s.
260420-04:15:50,219 nipype.workflow INFO:
	 [Node] Finished "res_tmpl", elapsed time 1.524874s.
260420-04:15:50,231 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jo
vyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_w
f/bold_fit_wf/hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:50,233 nipype.workflow INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bol
d.NonsteadyStatesDetector>
260420-04:15:50,387 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jo
vyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_w
f/bold_fit_wf/hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:50,389 nipype.workflow INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bol
d.NonsteadyStatesDetector>
260420-04:15:50,688 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jov
yan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf
/bold_fit_wf/hmc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:50,691 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:50,797 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.104897s.
260420-04:15:50,997 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.763124s.
260420-04:15:51,289 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.899194s.
260420-04:15:51,394 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jov
yan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf
/bold_fit_wf/hmc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:51,404 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:51,524 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.115078s.
260420-04:15:51,776 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bidssrc"
in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bidssrc".
260420-04:15:51,779 nipype.workflow INFO:
	 [Node] Executing "bidssrc" <niworkflows.interfaces.bids.
BIDSDataGrabber>
260420-04:15:51,812 nipype.interface INFO:
	 No "pet" images found for sub-104
260420-04:15:51,812 n
ipype.interface INFO:
	 No "sbref" images found for sub-104
260420-04:15:51,812 nipype.interface INF
O:
	 No "asl" images found for sub-104
260420-04:15:51,812 nipype.interface INFO:
	 No "roi" images
found for sub-104
260420-04:15:51,812 nipype.interface INFO:
	 No "dwi" images found for sub-104
260
420-04:15:51,812 nipype.interface INFO:
	 No "flair" images found for sub-104
260420-04:15:51,813 nipype.workflow INFO:
	 [Node] Finished "bidssrc", elapsed time 0.000921s.
260420-04:15:52,356 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_native_wf/bold_source".
260420-04:15:52,358 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utilit
y.base.Select>
260420-04:15:52,358 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.000302s.
260420-04:15:53,54 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_01_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/h
mc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:53,55 nipype.workflow INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bold
.NonsteadyStatesDetector>
260420-04:15:53,124 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:15:53,128 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:53,129 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000621s.
260420-04:15:53,215 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:15:53,217 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:53,263 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000612s.
260420-04:15:53,382 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_native_wf/bold_source".
260420-04:15:53,384
 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utility.base.Select>
260420-04:15:53,410 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.000435s.
2
60420-04:15:53,410 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_02_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/ds_hmc_boldr
ef_wf/sources".
260420-04:15:53,412 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.int
erfaces.bids.BIDSURI>
260420-04:15:53,441 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000547s.
260420-04:15:53,515 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/ds_hmc_bold
ref_wf/sources".
260420-04:15:53,517 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:53,570 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000577s.
260420-04:15:53,780 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.724573s.
260420-04:15:53,977 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:15:53,980 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:53,981 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000346s.
260420-04:15:54,203 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/h
mc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:54,206 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:54,342 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.091694s.
260420-04:15:54,689 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/ds_hmc_boldref_wf/sources
".
260420-04:15:54,690 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_trust_run_02_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:
15:54,692 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
2604
20-04:15:54,693 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000404s.
260420-04:15:54,696 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:54,700 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.002468s.
260420-04:15:54,717 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/h
mc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:54,718 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:54,787 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.067886s.
260420-04:15:55,374 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_native_wf/bold_source".
260420-04:15:55,376
 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utility.base.Select>
260420-04:15:55,377 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.000345s.
260420-04:15:55,463 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/ds_hmc_boldref_wf/sources
".
260420-04:15:55,465 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:55,466 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000378s.
260420-04:15:55,604 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/
hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:55,605 nipype.workflow INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bol
d.NonsteadyStatesDetector>
260420-04:15:55,689 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/
hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:55,691 nipype.workflow INFO:
	 [No
de] Executing "get_dummy" <niworkflows.interfaces.bold.NonsteadyStatesDetector>
260420-04:15:55,740 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/h
mc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:55,742 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:55,812 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.069705s.
260420-04:15:56,419 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:15:56,422 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:56,423 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000498s.
260420-04:15:56,440 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.748291s.
260420-04:15:56,471 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.781587s.
260420-04:15:56,756 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_native_wf/bold_source".
260420-04:15:56,758 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utilit
y.base.Select>
260420-04:15:56,759 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed ti
me 0.000286s.
260420-04:15:57,147 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/
hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:57,149 nipype.workflow INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bol
d.NonsteadyStatesDetector>
260420-04:15:57,195 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/h
mc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:57,199 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:57,263 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.062703s.
260420-04:15:57,449 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_native_wf/bold_source".
260420-04:15:57,451
 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utility.base.Select>
2604
20-04:15:57,452 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.000411s.
260420-04:15:58,291 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 1.141573s.
260420-04:15:58,915 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/ds_hmc_boldref_wf/sources
".
260420-04:15:58,943 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:58,944 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000438s.
260420-04:15:58,987 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/h
mc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:58,989 nipype.workflow INFO:
	 [Node] Executing "val_bold" <niworkflows.interfaces.head
er.ValidateImage>
260420-04:15:58,994 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/ds_hmc_boldref_wf/sources
".
260420-04:15:58,995 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_trust_run_05_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_
wf/hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:15:58,997 nipype.workflow INFO:
[Node] Executing "get_dummy" <niworkflows.interfaces.bold.NonsteadyStatesDetector>
260420-04:15:59,25 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDS
URI>
260420-04:15:59,27 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000486s.
260420-04:15:59,67 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.077047s.
260420-04:15:59,315 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_native_wf/bold_source".
260420-04:15:59,317
 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utility.base.Select>
260420-04:15:59,317 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.000249s.
260420-04:15:59,793 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/ds_hmc_boldref_wf/sources
".
260420-04:15:59,821 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:15:59,823 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.825816s.
260
420-04:15:59,824 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000766s.
260420-04:15:59,970 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_
fit_wf/hmc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:15:59,971 nipype.workflow INFO:

	 [Node] Executing "val_bold" <niworkflows.interfaces.header.ValidateImage>
260420-04:15:59,972 nip
ype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bo
ld_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/hmc_boldref_wf/
validation_and_dummies_wf/get_dummy".
260420-04:15:59,973 nipype.workflow INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bol
d.NonsteadyStatesDetector>
260420-04:16:00,48 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.07609s.
260420-04:16:00,266 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/ds_hmc_boldref_wf
/sources".
260420-04:16:00,269 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/ds_hmc_wf/sources".
26042
0-04:16:00,271 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>

260420-04:16:00,271 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BI
DSURI>
260420-04:16:00,272 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000352s
.
260420-04:16:00,272 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000352s.
260420-04:16:00,551 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_native_wf/bold_source".
260420-04:16:00,553 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utilit
y.base.Select>
260420-04:16:00,554 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed ti
me 0.00028s.
260420-04:16:00,725 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:16:00,734 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:16:00,735 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000345s.

260420-04:16:00,745 nipype.workflow INFO:
	 [Node] Finished "lap_tmpl", elapsed time 10.041656s.
260420-04:16:01,138 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.val_bold" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_
fit_wf/hmc_boldref_wf/validation_and_dummies_wf/val_bold".
260420-04:16:01,140 nipype.workflow INFO:

	 [Node] Executing "val_bold" <niworkflows.interfaces.header.ValidateImage>
260420-04:16:01,142 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.ds_hmc_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/ds_hmc_boldref_wf
/sources".
260420-04:16:01,145 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 1.1
70726s.
260420-04:16:01,145 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.b
old_task_ultimatum_run_02_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/ds_hmc_wf/sources
".
260420-04:16:01,147 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_ultimatum_run_02_wf.bold_fit_wf.hmc_boldref_wf.validation_and_dummies_wf.get_dummy" in "/home/jo
vyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/b
old_fit_wf/hmc_boldref_wf/validation_and_dummies_wf/get_dummy".
260420-04:16:01,148 nipype.workflow
INFO:
	 [Node] Executing "get_dummy" <niworkflows.interfaces.bold.NonsteadyStatesDetector>
260420-04
:16:01,158 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
260
420-04:16:01,158 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSUR
I>
260420-04:16:01,159 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000513s.
26
0420-04:16:01,159 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000375s.
260420-04:16:01,200 nipype.workflow INFO:
	 [Node] Finished "val_bold", elapsed time 0.059443s.
260420-04:16:01,874 nipype.workflow INFO:
	 [Node] Finished "get_dummy", elapsed time 0.724651s.
260420-04:16:02,255 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.ds_hmc_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/ds_hmc_wf/sources".
260420-04:16:02,291 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:16:02,292 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000407s.
260420-04:16:02,662 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_native_wf.bold_source" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_native_wf/bold_source".
260420-04:1
6:02,664 nipype.workflow INFO:
	 [Node] Executing "bold_source" <nipype.interfaces.utility.base.Sele
ct>
260420-04:16:02,665 nipype.workflow INFO:
	 [Node] Finished "bold_source", elapsed time 0.0003s.
260420-04:16:04,553 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.source_an
atomical" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/source_an
atomical".
260420-04:16:04,558 nipype.workflow INFO:
	 [Node] Executing "source_anatomical" <fmriprep.interface
s.bids.BIDSSourceFile>
260420-04:16:04,559 nipype.workflow INFO:
	 [Node] Finished "source_anatomical", elapsed time 0.0002
08s.
260420-04:16:04,561 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.mrg_tmpl" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_
wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/mrg_tmpl".
260420-04:16:04,580 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.anat_template_wf.anat_ref_dimensions" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/anat_fit_wf/anat_template_wf/anat_ref_dimensions".
260420-04:16:04,585 nipype.
workflow INFO:
	 [Node] Executing "anat_ref_dimensions" <niworkflows.interfaces.images.TemplateDimen
sions>
260420-04:16:04,757 nipype.workflow INFO:
	 [Node] Finished "anat_ref_dimensions", elapsed time 0.17
0805s.
260420-04:16:04,791 nipype.workflow INFO:
	 [Node] Executing "mrg_tmpl" <nipype.interfaces.utility.b
ase.Merge>
260420-04:16:04,792 nipype.workflow INFO:
	 [Node] Finished "mrg_tmpl", elapsed time 0.000273s.
260420-04:16:05,730 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_native_wf/validate_bold".
260420-04:16:05,732 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces
.header.ValidateImage>
260420-04:16:05,797 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.063581s.
260420-04:16:05,866 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/hmc_boldref_wf
/gen_avg".
260420-04:16:05,898 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.image
s.RobustAverage>
260420-04:16:06,35 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prepr
oc_wf.wf_auto_00000.check_register" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25
_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/check_register".
260420-04:16:06,38 nipype.workflow INFO:
	 [Node] Executing "check_register" <sdcflows.interfaces.fm
ap.CheckRegister>
260420-04:16:06,59 nipype.workflow INFO:
	 [Node] Finished "check_register", elapsed time 0.020092s.
260420-04:16:06,321 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_native_wf/validate_bold".
260420-04:16:06,329 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/hmc_boldref_wf
/gen_avg".
260420-04:16:06,331 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows
.interfaces.header.ValidateImage>
260420-04:16:06,334 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.image
s.RobustAverage>
260420-04:16:06,402 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.070291s.
260420-04:16:06,966 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_native_wf/validate_bold".
260420-04:16:06,969 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces
.header.ValidateImage>
260420-04:16:06,982 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/hmc_boldref_wf/gen_avg".
260420-04:16:06,994 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.image
s.RobustAverage>
260420-04:16:07,60 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.090223s.
260420-04:16:07,439 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.439015:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:07,439 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:07.439015:++ Authored by: RW Cox
260420-04:16:07,442 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.442879:** AFNI converts NIFT
I_datatype=4 (INT16) in file /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-sharedreward_
run-01_bold_sliced.nii.gz to FLOAT32
260420-04:16:07,443 nipype.interface INFO:
	 stderr 2026-04-20T
04:16:07.442879:     Warnings of this type will be muted for this session.
260420-04:16:07,443 nipyp
e.interface INFO:
	 stderr 2026-04-20T04:16:07.442879:     Set AFNI_NIFTI_TYPE_WARN to YES to see th
em all, NO to see none.
260420-04:16:07,453 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.4537
05:*+ WARNING:   If you are performing spatial transformations on an oblique dset,
260420-04
:16:07,453 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.453705:  such as /home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_w
f/hmc_boldref_wf/gen_avg/sub-104_task-sharedreward_run-01_bold_sliced.nii.gz,
260420-04:16:07,453 ni
pype.interface INFO:
	 stderr 2026-04-20T04:16:07.453705:  or viewing/combining it with volumes of d
iffering obliquity,
260420-04:16:07,453 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.453705:
 you should consider running: 
260420-04:16:07,453 nipype.interface INFO:
	 stderr 2026-04-20T04:16:
07.453705:     3dWarp -deoblique 
260420-04:16:07,453 nipype.interface INFO:
	 stderr 2026-04-20T04:
16:07.453705:  on this and  other oblique datasets in the same session.
260420-04:16:07,453 nipype.i
nterface INFO:
	 stderr 2026-04-20T04:16:07.453705: See 3dWarp -help for details.
260420-04:16:07,45
3 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.453705:++ Oblique dataset:/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_w
f/hmc_boldref_wf/gen_avg/sub-104_task-sharedreward_run-01_bold_sliced.nii.gz is 16.999994 degrees fr
om plumb.
260420-04:16:07,454 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.454037:++ Coarse d
el was 10, replaced with 4
260420-04:16:07,625 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.625542:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:07,631 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/hmc_boldref_wf/gen_avg".
260420-04:16:07,641 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_native_wf/validate_bold".
260420-04:16:07,644 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces
.header.ValidateImage>
260420-04:16:07,681 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.image
s.RobustAverage>
260420-04:16:07,694 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.694792:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:07,695 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.694792:++ Authored by: RW Co
x
260420-04:16:07,695 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.695504:** AFNI converts NI
FTI_datatype=4 (INT16) in file /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub
_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-sharedrewar
d_run-02_bold_sliced.nii.gz to FLOAT32
260420-04:16:07,695 nipype.interface INFO:
	 stderr 2026-04-2
0T04:16:07.695504:     Warnings of this type will be muted for this session.
260420-04:16:07,695 nip
ype.interface INFO:
	 stderr 2026-04-20T04:16:07.695504:     Set AFNI_NIFTI_TYPE_WARN to YES to see
them all, NO to see none.
260420-04:16:07,696 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.69
6057:*+ WARNING:   If you are performing spatial transformations on an oblique dset,
260420-
04:16:07,696 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.696057:  such as /home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit
_wf/hmc_boldref_wf/gen_avg/sub-104_task-sharedreward_run-02_bold_sliced.nii.gz,
260420-04:16:07,696
nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.696057:  or viewing/combining it with volumes of
 differing obliquity,
260420-04:16:07,696 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.696057
:  you should consider running: 
260420-04:16:07,696 nipype.interface INFO:
	 stderr 2026-04-20T04:1
6:07.696057:     3dWarp -deoblique 
260420-04:16:07,696 nipype.interface INFO:
	 stderr 2026-04-20T0
4:16:07.696057:  on this and  other oblique datasets in the same session.
260420-04:16:07,696 nipype
.interface INFO:
	 stderr 2026-04-20T04:16:07.696057: See 3dWarp -help for details.
260420-04:16:07,
696 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.696057:++ Oblique dataset:/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit
_wf/hmc_boldref_wf/gen_avg/sub-104_task-sharedreward_run-02_bold_sliced.nii.gz is 16.999994 degrees
from plumb.
260420-04:16:07,696 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.696057:++ Coarse
 del was 10, replaced with 4
260420-04:16:07,715 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.071018s.
260420-04:16:07,941 nipype.interface INFO:
	 stderr 2026-04-20T04:16:07.941543:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:08,295 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/hmc_boldref_wf/gen_avg".
260420-04:16:08,361 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.image
s.RobustAverage>
260420-04:16:08,379 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_native_wf/validate_bold".
260420-04:16:08,383 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces
.header.ValidateImage>
260420-04:16:08,459 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.07359s.
260420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:08.705552:++ Authored by: RW Cox
260420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-
04-20T04:16:08.705552:** AFNI converts NIFTI_datatype=4 (INT16) in file /home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/hmc_boldref_w
f/gen_avg/sub-104_task-trust_run-01_bold_sliced.nii.gz to FLOAT32
260420-04:16:08,705 nipype.interfa
ce INFO:
	 stderr 2026-04-20T04:16:08.705552:     Warnings of this type will be muted for this sessi
on.
260420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552:     Set AFNI_NIF
TI_TYPE_WARN to YES to see them all, NO to see none.
260420-04:16:08,705 nipype.interface INFO:
	 st
derr 2026-04-20T04:16:08.705552:*+ WARNING:   If you are performing spatial transformations
on an oblique dset,
260420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552:
 such as /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trus
t_run_01_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-01_bold_sliced.nii.gz,
260420-
04:16:08,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552:  or viewing/combining it wi
th volumes of differing obliquity,
260420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-04-20T04
:16:08.705552:  you should consider running: 
260420-04:16:08,705 nipype.interface INFO:
	 stderr 20
26-04-20T04:16:08.705552:     3dWarp -deoblique 
260420-04:16:08,705 nipype.interface INFO:
	 stderr
 2026-04-20T04:16:08.705552:  on this and  other oblique datasets in the same session.
260420-04:16:
08,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552: See 3dWarp -help for details.
260
420-04:16:08,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552:++ Oblique dataset:/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bo
ld_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-01_bold_sliced.nii.gz is 16.999994 degrees f
rom plumb.
260420-04:16:08,706 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.705552:++ Coarse
del was 10, replaced with 4
260420-04:16:08,834 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.834032:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:08,905 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:08,905 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:08.905559:++ Authored by: RW Cox
260420-04:16:08,905 nipype.interface INFO:
	 stderr 2026-
04-20T04:16:08.905559:** AFNI converts NIFTI_datatype=4 (INT16) in file /home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/hmc_boldref_w
f/gen_avg/sub-104_task-trust_run-02_bold_sliced.nii.gz to FLOAT32
260420-04:16:08,905 nipype.interfa
ce INFO:
	 stderr 2026-04-20T04:16:08.905559:     Warnings of this type will be muted for this sessi
on.
260420-04:16:08,905 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:     Set AFNI_NIF
TI_TYPE_WARN to YES to see them all, NO to see none.
260420-04:16:08,905 nipype.interface INFO:
	 st
derr 2026-04-20T04:16:08.905559:*+ WARNING:   If you are performing spatial transformations
on an oblique dset,
260420-04:16:08,906 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:
 such as /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trus
t_run_02_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-02_bold_sliced.nii.gz,
260420-
04:16:08,905 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_
run_04_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_native_wf/validate_bold".
260420-04:16:08,906 ni
pype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:  or viewing/combining it with volumes of d
iffering obliquity,
260420-04:16:08,906 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:
 you should consider running: 
260420-04:16:08,906 nipype.interface INFO:
	 stderr 2026-04-20T04:16:
08.905559:     3dWarp -deoblique 
260420-04:16:08,906 nipype.interface INFO:
	 stderr 2026-04-20T04:
16:08.905559:  on this and  other oblique datasets in the same session.
260420-04:16:08,906 nipype.i
nterface INFO:
	 stderr 2026-04-20T04:16:08.905559: See 3dWarp -help for details.
260420-04:16:08,90
6 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:++ Oblique dataset:/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/hmc_b
oldref_wf/gen_avg/sub-104_task-trust_run-02_bold_sliced.nii.gz is 16.999994 degrees from plumb.
2604
20-04:16:08,906 nipype.interface INFO:
	 stderr 2026-04-20T04:16:08.905559:++ Coarse del was 10, rep
laced with 4
260420-04:16:08,908 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflo
ws.interfaces.header.ValidateImage>
260420-04:16:08,917 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/hmc_boldref_wf/gen_avg".
260420-04:16:08,981 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.073262s.
260420-04:16:09,7 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.images.
RobustAverage>
260420-04:16:09,49 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.049541:++ edt_blur: sigx 2, d
x 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:09,765 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:++ Authored by: RW Co
x
260420-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:** AFNI converts NI
FTI_datatype=4 (INT16) in file /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub
_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-03_bold_
sliced.nii.gz to FLOAT32
260420-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765
565:     Warnings of this type will be muted for this session.
260420-04:16:09,766 nipype.interface
INFO:
	 stderr 2026-04-20T04:16:09.765565:     Set AFNI_NIFTI_TYPE_WARN to YES to see them all, NO t
o see none.
260420-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:*+ WA
RNING:   If you are performing spatial transformations on an oblique dset,
260420-04:16:09,766 n
ipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:  such as /home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/hmc_boldref_wf/ge
n_avg/sub-104_task-trust_run-03_bold_sliced.nii.gz,
260420-04:16:09,766 nipype.interface INFO:
	 std
err 2026-04-20T04:16:09.765565:  or viewing/combining it with volumes of differing obliquity,
260420
-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:  you should consider runni
ng: 
260420-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:     3dWarp -deo
blique 
260420-04:16:09,766 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.765565:  on this and
  other oblique datasets in the same session.
260420-04:16:09,766 nipype.interface INFO:
	 stderr 20
26-04-20T04:16:09.765565: See 3dWarp -help for details.
260420-04:16:09,766 nipype.interface INFO:
 stderr 2026-04-20T04:16:09.765565:++ Oblique dataset:/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_
task-trust_run-03_bold_sliced.nii.gz is 16.999994 degrees from plumb.
260420-04:16:09,766 nipype.int
erface INFO:
	 stderr 2026-04-20T04:16:09.765565:++ Coarse del was 10, replaced with 4
260420-04:16:09,785 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_native_wf/validate_bold".
260420-04:16:09
,788 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces.header.Validat
eImage>
260420-04:16:09,792 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.b
old_task_trust_run_05_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/hmc_boldref_wf/gen_a
vg".
260420-04:16:09,877 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.088
777s.
260420-04:16:09,911 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces
.images.RobustAverage>
260420-04:16:09,964 nipype.interface INFO:
	 stderr 2026-04-20T04:16:09.964554:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:10,485 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.485572:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:10,485 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:10.485882:++ Authored by: RW Cox
260420-04:16:10,486 nipype.interface INFO:
	 stderr 2026-
04-20T04:16:10.486550:** AFNI converts NIFTI_datatype=4 (INT16) in file /home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/hmc_boldref_w
f/gen_avg/sub-104_task-trust_run-04_bold_sliced.nii.gz to FLOAT32
260420-04:16:10,486 nipype.interfa
ce INFO:
	 stderr 2026-04-20T04:16:10.486664:     Warnings of this type will be muted for this sessi
on.
260420-04:16:10,486 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.486664:     Set AFNI_NIF
TI_TYPE_WARN to YES to see them all, NO to see none.
260420-04:16:10,487 nipype.interface INFO:
	 st
derr 2026-04-20T04:16:10.487163:*+ WARNING:   If you are performing spatial transformations
on an oblique dset,
260420-04:16:10,487 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.487163:
 such as /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trus
t_run_04_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-04_bold_sliced.nii.gz,
260420-
04:16:10,487 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.487163:  or viewing/combining it wi
th volumes of differing obliquity,
260420-04:16:10,487 nipype.interface INFO:
	 stderr 2026-04-20T04
:16:10.487163:  you should consider running: 
260420-04:16:10,487 nipype.interface INFO:
	 stderr 20
26-04-20T04:16:10.487163:     3dWarp -deoblique 
260420-04:16:10,487 nipype.interface INFO:
	 stderr
 2026-04-20T04:16:10.487163:  on this and  other oblique datasets in the same session.
260420-04:16:
10,487 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.487163: See 3dWarp -help for details.
260
420-04:16:10,487 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.487455:++ Oblique dataset:/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bo
ld_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-04_bold_sliced.nii.gz is 16.999994 degrees f
rom plumb.
260420-04:16:10,487 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.487545:++ Coarse
del was 10, replaced with 4
260420-04:16:10,650 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_native_wf/validate_bold".
260420-
04:16:10,650 nipype.interface INFO:
	 stderr 2026-04-20T04:16:10.650490:++ edt_blur: sigx 2, dx 1, f
whm 4.70964, sfac 2.5, firx 5
260420-04:16:10,652 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces
.header.ValidateImage>
260420-04:16:10,655 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/hmc_boldref_wf/gen_a
vg".
260420-04:16:10,660 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.image
s.RobustAverage>
260420-04:16:10,737 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.084339s.
260420-04:16:10,937 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.hmc_boldref_wf.gen_avg" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/hmc_boldref_wf/gen_a
vg".
260420-04:16:10,942 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_native_wf.validate_bold" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_native_wf/validate_bold".
260420-
04:16:10,942 nipype.workflow INFO:
	 [Node] Executing "gen_avg" <niworkflows.interfaces.images.Robus
tAverage>
260420-04:16:10,944 nipype.workflow INFO:
	 [Node] Executing "validate_bold" <niworkflows.interfaces
.header.ValidateImage>
260420-04:16:11,25 nipype.workflow INFO:
	 [Node] Finished "validate_bold", elapsed time 0.079701s.
260420-04:16:11,569 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.569585:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:11,569 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:11.569585:++ Authored by: RW Cox
260420-04:16:11,569 nipype.interface INFO:
	 stderr 2026-
04-20T04:16:11.569585:** AFNI converts NIFTI_datatype=4 (INT16) in file /home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/hmc_boldref_w
f/gen_avg/sub-104_task-trust_run-05_bold_sliced.nii.gz to FLOAT32
260420-04:16:11,569 nipype.interfa
ce INFO:
	 stderr 2026-04-20T04:16:11.569585:     Warnings of this type will be muted for this sessi
on.
260420-04:16:11,569 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.569585:     Set AFNI_NIF
TI_TYPE_WARN to YES to see them all, NO to see none.
260420-04:16:11,570 nipype.interface INFO:
	 st
derr 2026-04-20T04:16:11.569585:*+ WARNING:   If you are performing spatial transformations
on an oblique dset,
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.569585:  such as /home/jovya
n/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit
_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-05_bold_sliced.nii.gz,
260420-04:16:11,570 nipype.
interface INFO:
	 stderr 2026-04-20T04:16:11.569585:  or viewing/combining it with volumes of differ
ing obliquity,
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.569585:  you
should consider running: 
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.56
9585:     3dWarp -deoblique 
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11
.569585:  on this and  other oblique datasets in the same session.
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.569585: See 3dWarp -help for
 details.
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.569585:++ Oblique
dataset:/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust
_run_05_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-trust_run-05_bold_sliced.nii.gz is 16.999
994 degrees from plumb.
260420-04:16:11,570 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.5695
85:++ Coarse del was 10, replaced with 4
260420-04:16:11,773 nipype.interface INFO:
	 stderr 2026-04-20T04:16:11.773608:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:12,111 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.111324:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:12,111 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:12.111614:++ Authored by: RW Cox
260420-04:16:12,112 nipype.interface INFO:
	 stderr 2026-
04-20T04:16:12.112313:** AFNI converts NIFTI_datatype=4 (INT16) in file /home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/hmc_boldr
ef_wf/gen_avg/sub-104_task-ultimatum_run-01_bold_sliced.nii.gz to FLOAT32
260420-04:16:12,112 nipype
.interface INFO:
	 stderr 2026-04-20T04:16:12.112428:     Warnings of this type will be muted for th
is session.
260420-04:16:12,112 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.112428:     Set
AFNI_NIFTI_TYPE_WARN to YES to see them all, NO to see none.
260420-04:16:12,112 nipype.interface IN
FO:
	 stderr 2026-04-20T04:16:12.112910:*+ WARNING:   If you are performing spatial transfor
mations on an oblique dset,
260420-04:16:12,112 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.
112910:  such as /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_t
ask_ultimatum_run_01_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-ultimatum_run-01_bold_sliced
.nii.gz,
260420-04:16:12,113 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.112910:  or viewing
/combining it with volumes of differing obliquity,
260420-04:16:12,113 nipype.interface INFO:
	 stde
rr 2026-04-20T04:16:12.112910:  you should consider running: 
260420-04:16:12,113 nipype.interface I
NFO:
	 stderr 2026-04-20T04:16:12.112910:     3dWarp -deoblique 
260420-04:16:12,113 nipype.interfac
e INFO:
	 stderr 2026-04-20T04:16:12.112910:  on this and  other oblique datasets in the same sessio
n.
260420-04:16:12,113 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.112910: See 3dWarp -help
for details.
260420-04:16:12,113 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.113144:++ Obliq
ue dataset:/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ul
timatum_run_01_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-ultimatum_run-01_bold_sliced.nii.g
z is 16.999994 degrees from plumb.
260420-04:16:12,113 nipype.interface INFO:
	 stderr 2026-04-20T04
:16:12.113264:++ Coarse del was 10, replaced with 4
260420-04:16:12,294 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.294531:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:12,705 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.705836:++ 3dvolreg: AFNI ver
sion=AFNI_25.2.09 (Aug 24 2025) [64-bit]
260420-04:16:12,706 nipype.interface INFO:
	 stderr 2026-04
-20T04:16:12.706114:++ Authored by: RW Cox
260420-04:16:12,706 nipype.interface INFO:
	 stderr 2026-
04-20T04:16:12.706791:** AFNI converts NIFTI_datatype=4 (INT16) in file /home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/hmc_boldr
ef_wf/gen_avg/sub-104_task-ultimatum_run-02_bold_sliced.nii.gz to FLOAT32
260420-04:16:12,706 nipype
.interface INFO:
	 stderr 2026-04-20T04:16:12.706893:     Warnings of this type will be muted for th
is session.
260420-04:16:12,706 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.706893:     Set
AFNI_NIFTI_TYPE_WARN to YES to see them all, NO to see none.
260420-04:16:12,707 nipype.interface IN
FO:
	 stderr 2026-04-20T04:16:12.707412:*+ WARNING:   If you are performing spatial transfor
mations on an oblique dset,
260420-04:16:12,707 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.
707412:  such as /home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_t
ask_ultimatum_run_02_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-ultimatum_run-02_bold_sliced
.nii.gz,
260420-04:16:12,707 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.707412:  or viewing
/combining it with volumes of differing obliquity,
260420-04:16:12,707 nipype.interface INFO:
	 stde
rr 2026-04-20T04:16:12.707412:  you should consider running: 
260420-04:16:12,707 nipype.interface I
NFO:
	 stderr 2026-04-20T04:16:12.707412:     3dWarp -deoblique 
260420-04:16:12,707 nipype.interfac
e INFO:
	 stderr 2026-04-20T04:16:12.707412:  on this and  other oblique datasets in the same sessio
n.
260420-04:16:12,707 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.707412: See 3dWarp -help
for details.
260420-04:16:12,707 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.707648:++ Obliq
ue dataset:/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ul
timatum_run_02_wf/bold_fit_wf/hmc_boldref_wf/gen_avg/sub-104_task-ultimatum_run-02_bold_sliced.nii.g
z is 16.999994 degrees from plumb.
260420-04:16:12,707 nipype.interface INFO:
	 stderr 2026-04-20T04
:16:12.707739:++ Coarse del was 10, replaced with 4
260420-04:16:12,872 nipype.interface INFO:
	 stderr 2026-04-20T04:16:12.872649:++ edt_blur: sigx 2,
dx 1, fwhm 4.70964, sfac 2.5, firx 5
260420-04:16:20,216 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bids_info
" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bids_info".
260420-04:16:20,218 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.ds_t1w_mask_wf.raw_sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf
/sub_104_wf/anat_fit_wf/ds_t1w_mask_wf/raw_sources".
260420-04:16:20,218 nipype.workflow INFO:
	 [Node] Executing "bids_info" <niworkflows.interfaces.bid
s.BIDSInfo>
260420-04:16:20,233 nipype.workflow INFO:
	 [Node] Finished "bids_info", elapsed time 0.01402s.
260420-04:16:20,238 nipype.workflow INFO:
	 [Node] Executing "raw_sources" <nipype.interfaces.utilit
y.wrappers.Function>
260420-04:16:20,240 nipype.workflow INFO:
	 [Node] Finished "raw_sources", elap
sed time 0.000651s.
260420-04:16:20,372 nipype.workflow INFO:
	 [Node] Setting-up "_denoise0" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/anat_template_wf/denoise/mapflow/
_denoise0".
260420-04:16:20,377 nipype.workflow INFO:
	 [Node] Executing "_denoise0" <nipype.interfaces.ants.seg
mentation.DenoiseImage>
260420-04:16:22,970 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.magnitude_wf.magmrg" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/magnitude_wf/magmrg".
260420-04:16:23,638 nipype.workflow INFO:
	 [Node] Executing "magmrg" <niworkflows.interfaces.images
.IntraModalMerge>
260420-04:16:23,707 nipype.workflow INFO:
	 [Node] Finished "magmrg", elapsed time 0.067897s.
260420-04:16:29,183 nipype.interface INFO:
	 stderr 2026-04-20T04:16:29.183636:++ Max displacement i
n automask = 0.19 (mm) at sub-brick 18
260420-04:16:29,183 nipype.interface INFO:
	 stderr 2026-04-2
0T04:16:29.183636:++ Max delta displ  in automask = 0.14 (mm) at sub-brick 1
260420-04:16:30,609 nipype.interface INFO:
	 stderr 2026-04-20T04:16:30.609540:++ Max displacement i
n automask = 0.26 (mm) at sub-brick 19
260420-04:16:30,609 nipype.interface INFO:
	 stderr 2026-04-2
0T04:16:30.609540:++ Max delta displ  in automask = 0.13 (mm) at sub-brick 9
260420-04:16:30,860 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 24.960491s.
260420-04:16:32,790 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-sharedreward_run-01_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:32,889 nipype.interface INFO:
	 stderr 2026-04-20T04:16:32.889555:++ Max displacement i
n automask = 0.15 (mm) at sub-brick 6
260420-04:16:32,889 nipype.interface INFO:
	 stderr 2026-04-20
T04:16:32.889555:++ Max delta displ  in automask = 0.18 (mm) at sub-brick 6
260420-04:16:33,27 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 26.692633s.
260420-04:16:33,353 nipype.interface INFO:
	 stderr 2026-04-20T04:16:33.353524:++ Max displacement i
n automask = 0.78 (mm) at sub-brick 11
260420-04:16:33,353 nipype.interface INFO:
	 stderr 2026-04-2
0T04:16:33.353524:++ Max delta displ  in automask = 0.35 (mm) at sub-brick 11
260420-04:16:34,532 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 26.849686s.
260420-04:16:34,675 nipype.interface INFO:
	 stderr 2026-04-20T04:16:34.675147:++ Max displacement i
n automask = 0.32 (mm) at sub-brick 14
260420-04:16:34,675 nipype.interface INFO:
	 stderr 2026-04-2
0T04:16:34.675147:++ Max delta displ  in automask = 0.26 (mm) at sub-brick 14
260420-04:16:34,769 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-sharedreward_run-02_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:35,46 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 26.038181s.
260420-04:16:35,517 nipype.interface INFO:
	 stderr 2026-04-20T04:16:35.517309:++ Max displacement i
n automask = 0.85 (mm) at sub-brick 4
260420-04:16:35,517 nipype.interface INFO:
	 stderr 2026-04-20
T04:16:35.517309:++ Max delta displ  in automask = 0.83 (mm) at sub-brick 4
260420-04:16:36,483 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 29.487882s.
260420-04:16:36,564 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-02_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:36,658 nipype.interface INFO:
	 stderr 2026-04-20T04:16:36.658214:++ Max displacement i
n automask = 0.54 (mm) at sub-brick 5
260420-04:16:36,658 nipype.interface INFO:
	 stderr 2026-04-20
T04:16:36.658214:++ Max delta displ  in automask = 0.42 (mm) at sub-brick 5
260420-04:16:36,870 nipype.interface INFO:
	 stderr 2026-04-20T04:16:36.870454:++ Max displacement i
n automask = 0.20 (mm) at sub-brick 19
260420-04:16:36,870 nipype.interface INFO:
	 stderr 2026-04-2
0T04:16:36.870454:++ Max delta displ  in automask = 0.05 (mm) at sub-brick 1
260420-04:16:36,963 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-04_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:37,471 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 29.108761s.
260420-04:16:38,410 nipype.interface INFO:
	 stderr 2026-04-20T04:16:38.410354:++ Max displacement i
n automask = 0.50 (mm) at sub-brick 8
260420-04:16:38,410 nipype.interface INFO:
	 stderr 2026-04-20
T04:16:38.410354:++ Max delta displ  in automask = 0.43 (mm) at sub-brick 8
260420-04:16:38,486 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 27.825675s.
260420-04:16:38,496 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 28.584818s.
260420-04:16:38,721 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-01_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:39,123 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-03_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:40,196 nipype.workflow INFO:
	 [Node] Finished "gen_avg", elapsed time 29.253093s.
260420-04:16:40,925 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-05_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:41,381 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-ultimatum_run-01_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:41,740 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-ultimatum_run-02_desc-hmc_boldref.nii.gz dtype from int16 to int16
260420-04:16:42,76 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_w
f.register_template_wf.set_reference" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/anat_fit_wf/register_template_wf/_template_MNI152NLin6Asym/set_reference".
260420-04:16:42,78 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_w
f.register_template_wf.set_reference" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/anat_fit_wf/register_template_wf/_template_MNI152NLin2009cAsym/set_reference".
260420-04:16:42,124 nipype.workflow INFO:
	 [Node] Executing "set_reference" <nipype.interfaces.util
ity.wrappers.Function>
260420-04:16:42,125 nipype.workflow INFO:
	 [Node] Finished "set_reference", elapsed time 0.000409s.
260420-04:16:42,141 nipype.workflow INFO:
	 [Node] Executing "set_reference" <nipype.interfaces.util
ity.wrappers.Function>
260420-04:16:42,142 nipype.workflow INFO:
	 [Node] Finished "set_reference",
elapsed time 0.000424s.
260420-04:16:42,281 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_nativ
e_wf/bold_stc_wf/slice_timing_correction".
260420-04:16:42,286 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:42,731 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.create_fs
_id" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/create_fs_id".
260420-04:16:42,732 nipype.workflow INFO:
	 [Node] Executing "create_fs_id" <fmriprep.interfaces.bid
s.CreateFreeSurferID>
260420-04:16:42,733 nipype.workflow INFO:
	 [Node] Finished "create_fs_id", el
apsed time 0.000104s.
260420-04:16:43,554 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.magnitude_wf.brainextraction_wf.clipper_pre" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/magnitude_wf/brainextra
ction_wf/clipper_pre".
260420-04:16:43,556 nipype.workflow INFO:
	 [Node] Executing "clipper_pre" <niworkflows.interfaces.n
ibabel.IntensityClip>
260420-04:16:43,773 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_nativ
e_wf/bold_stc_wf/slice_timing_correction".
260420-04:16:43,778 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:44,884 nipype.workflow INFO:
	 [Node] Finished "clipper_pre", elapsed time 1.327147s.
260420-04:16:44,901 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fmapref_buffer".
26042
0-04:16:44,904 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.utility.
wrappers.Function>
260420-04:16:44,914 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer", elapsed time 0.009557s
.
260420-04:16:46,765 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/fmapref_buffer".
26042
0-04:16:46,767 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.utility.
wrappers.Function>
260420-04:16:46,768 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer", ela
psed time 0.000347s.
260420-04:16:46,991 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bold_hmc_wf/mcfli
rt".
260420-04:16:46,994 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.prepro
cess.MCFLIRT>
260420-04:16:47,501 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_native_wf/bold_stc_
wf/slice_timing_correction".
260420-04:16:47,504 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:47,595 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_native_wf/bold_stc_
wf/slice_timing_correction".
260420-04:16:47,605 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:49,140 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold_hmc_wf/mcfli
rt".
260420-04:16:49,145 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.prepro
cess.MCFLIRT>
260420-04:16:50,806 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_native_wf/bold_stc_
wf/slice_timing_correction".
260420-04:16:50,815 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:51,252 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_native_wf/bold_stc_
wf/slice_timing_correction".
260420-04:16:51,256 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:53,415 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_native_wf/bold_stc_
wf/slice_timing_correction".
260420-04:16:53,421 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:56,144 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_native_wf/b
old_stc_wf/slice_timing_correction".
260420-04:16:56,152 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:57,441 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
15.153552s.
260420-04:16:58,198 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
14.419206s.
260420-04:16:58,691 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_native_wf.bold_stc_wf.slice_timing_correction" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_native_wf/b
old_stc_wf/slice_timing_correction".
260420-04:16:58,696 nipype.workflow INFO:
	 [Node] Executing "slice_timing_correction" <fmriprep.wor
kflows.bold.stc.TShift>
260420-04:16:58,821 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_native_wf/bold_stc
_wf/copy_xform".
260420-04:16:58,826 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces.he
ader.CopyXForm>
260420-04:16:58,838 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_native_wf/bold_stc
_wf/copy_xform".
260420-04:16:58,851 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces.he
ader.CopyXForm>
260420-04:17:01,688 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 2.836442s.
260420-04:17:02,460 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 3.632575s.
260420-04:17:02,770 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/fmapref_buffer".
260420-04:17:02,772 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.uti
lity.wrappers.Function>
260420-04:17:02,776 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer"
, elapsed time 0.003378s.
260420-04:17:03,601 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
16.095891s.
260420-04:17:04,605 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_native_wf/bold_stc_wf/copy_xform
".
260420-04:17:04,606 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_trust_run_01_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_hmc_wf/mcflirt".
260420-04:17:04,607 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/fmapref_buffer".
260420-04:17:04,608
 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces.header.CopyXForm>
260
420-04:17:04,609 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.preproces
s.MCFLIRT>
260420-04:17:04,610 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.int
erfaces.utility.wrappers.Function>
260420-04:17:04,614 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer", elapsed time 0.003746s
.
260420-04:17:06,212 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
18.605382s.
260420-04:17:06,597 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
15.339754s.
260420-04:17:06,639 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_hmc_wf/mcflirt".
260420-04:17:06,642 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.prepro
cess.MCFLIRT>
260420-04:17:06,646 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/fmapref_buffer".
260420-04:17:06,649 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.uti
lity.wrappers.Function>
260420-04:17:06,652 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer", elapsed time 0.001782s
.
260420-04:17:07,489 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
16.672924s.
260420-04:17:08,383 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 3.774029s.
260420-04:17:08,674 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_native_wf/bold_stc_wf/copy_xform
".
260420-04:17:08,677 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_hmc_wf/mcflirt".
260420-04:17:08,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_native_wf/bold_stc_wf/copy_xform
".
260420-04:17:08,680 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces.he
ader.CopyXForm>
260420-04:17:08,682 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflo
ws.interfaces.header.CopyXForm>
260420-04:17:08,689 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.prepro
cess.MCFLIRT>
260420-04:17:08,767 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
15.345371s.
260420-04:17:10,135 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
13.981136s.
260420-04:17:10,714 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/fmapref_buffer".
260420-04:17:10,716 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.uti
lity.wrappers.Function>
260420-04:17:10,717 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer"
, elapsed time 0.000442s.
260420-04:17:10,718 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25
_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_
hmc_wf/mcflirt".
260420-04:17:10,719 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_trust_run_04_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_native_wf/bold_
stc_wf/copy_xform".
260420-04:17:10,722 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces.he
ader.CopyXForm>
260420-04:17:10,722 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.inter
faces.fsl.preprocess.MCFLIRT>
260420-04:17:11,625 nipype.workflow INFO:
	 [Node] Finished "slice_timing_correction", elapsed time
12.928352s.
260420-04:17:12,10 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 3.322669s.
260420-04:17:12,73 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 3.39134s.
260420-04:17:12,653 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/fmapref_buffer".
260420-04:17:12,656
 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.utility.wrappers.Funct
ion>
260420-04:17:12,659 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_hmc_wf/mcflirt".
260420-04
:17:12,659 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer", elapsed time 0.002784s.
260420-04:17:12,663 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_native_wf/bold_stc_wf/copy_xform
".
260420-04:17:12,665 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.prepro
cess.MCFLIRT>
260420-04:17:12,666 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_10
4_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/fmapref_buffer
".
260420-04:17:12,666 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces
.header.CopyXForm>
260420-04:17:12,669 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <ni
pype.interfaces.utility.wrappers.Function>
260420-04:17:12,674 nipype.workflow INFO:
	 [Node] Finish
ed "fmapref_buffer", elapsed time 0.004899s.
260420-04:17:13,699 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 2.976851s.
260420-04:17:14,814 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_hmc_wf/mcflirt".
260420-04:17:14,818 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces.fsl.prepro
cess.MCFLIRT>
260420-04:17:14,819 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_10
4_wf.bold_task_ultimatum_run_01_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_native_wf/
bold_stc_wf/copy_xform".
260420-04:17:14,821 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <niworkflows.interfaces.he
ader.CopyXForm>
260420-04:17:14,827 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.fmapref_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/fmapref_buffer".
260420-04:17:14,830 nipype.workflow INFO:
	 [Node] Executing "fmapref_buffer" <nipype.interfaces.uti
lity.wrappers.Function>
260420-04:17:14,833 nipype.workflow INFO:
	 [Node] Finished "fmapref_buffer", elapsed time 0.000427s
.
260420-04:17:15,628 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 2.961009s.
260420-04:17:16,706 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.bold_hmc_wf.mcflirt" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bold_hmc_wf/mcflirt".
260420-04:17:16,706 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_native_wf.bold_stc_wf.copy_xform" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_native_wf/bold_stc_wf/co
py_xform".
260420-04:17:16,710 nipype.workflow INFO:
	 [Node] Executing "mcflirt" <nipype.interfaces
.fsl.preprocess.MCFLIRT>
260420-04:17:16,716 nipype.workflow INFO:
	 [Node] Executing "copy_xform" <
niworkflows.interfaces.header.CopyXForm>
260420-04:17:17,986 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 3.163503s.
260420-04:17:19,9 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_s
haredreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf
/enhance_and_skullstrip_bold_wf/init_aff".
260420-04:17:19,12 nipype.workflow INFO:
	 [Node] Executi
ng "init_aff" <nipype.interfaces.ants.utils.AI>
260420-04:17:19,280 nipype.workflow INFO:
	 [Node] Finished "copy_xform", elapsed time 2.563283s.
260420-04:17:21,614 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_
wf/enhance_and_skullstrip_bold_wf/init_aff".
260420-04:17:21,618 nipype.workflow INFO:
	 [Node] Exec
uting "init_aff" <nipype.interfaces.ants.utils.AI>
260420-04:17:29,123 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 42.127607s.
260420-04:17:30,930 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bold_hmc_wf/fsl2i
tk".
260420-04:17:30,972 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:17:30,975 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:17:31,67 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 41.916486s.
260420-04:17:31,162 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.186925s.
260420-04:17:33,766 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/init_aff".
260420-04:17:33,770 nipype.workflow INFO:
	 [Node] Executing "init_af
f" <nipype.interfaces.ants.utils.AI>
260420-04:17:34,849 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold_hmc_wf/fsl2i
tk".
260420-04:17:34,889 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:17:34,890 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:17:35,98 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.208079s.
260420-04:17:37,990 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/init_aff".
260420-04:17:37,995 nipype.workflow INFO:
	 [Node] Executing "init_aff" <nipype.interfaces.ants.util
s.AI>
260420-04:17:48,149 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 43.539608s.
260420-04:17:48,813 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:17:48,873 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:17:48,875 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:17:49,164 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.288199s.
260420-04:17:51,496 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/init_aff".
260420-04:17:51,503 nipype.workflow INFO:
	 [Node] Executing "init_aff" <nipype.interfaces.ants.util
s.AI>
260420-04:17:52,99 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 45.455874s.
260420-04:17:52,808 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:17:52,862 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:17:52,864 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:17:53,135 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.270361s.
260420-04:17:54,233 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 43.509264s.
260420-04:17:55,814 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/init_aff".
260420-04:17:55,818 nipype.workflow INFO:
	 [Node] Executing "init_aff" <nipype.interfaces.ants.util
s.AI>
260420-04:17:55,822 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:17:55,872 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:17:55,872 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the
 num_threads input.
260420-04:17:56,178 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.305336s.
260420-04:17:56,305 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 43.639129s.
260420-04:17:57,602 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/init_aff".
260420-04:17:57,604 nipype.workflow INFO:
	 [Node] Executing "init_af
f" <nipype.interfaces.ants.utils.AI>
260420-04:17:58,622 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:17:58,673 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:17:58,677 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 41.966354s.
260420-04:17:58,679 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:17:58,771 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 50.080229s.
260420-04:17:58,837 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.158376s.
260420-04:18:00,927 nipype.workflow INFO:
	 [Node] Finished "mcflirt", elapsed time 46.108574s.
260420-04:18:01,288 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:18:01,334 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:18:01,336 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:18:01,505 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.169528s.
260420-04:18:01,721 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/enh
ance_and_skullstrip_bold_wf/init_aff".
260420-04:18:01,724 nipype.workflow INFO:
	 [Node] Executing
"init_aff" <nipype.interfaces.ants.utils.AI>
260420-04:18:02,438 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.init_aff" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/enh
ance_and_skullstrip_bold_wf/init_aff".
260420-04:18:02,441 nipype.workflow INFO:
	 [Node] Executing
"init_aff" <nipype.interfaces.ants.utils.AI>
260420-04:18:02,762 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:18:02,766 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.bold_hmc_wf.fsl2itk" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_hmc_wf/fsl2itk".
260420-04:18:02,811 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:18:02,813 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:18:02,815 nipype.workflow INFO:
	 [Node] Executing "fsl2itk" <niworkflows.interfaces.itk.M
CFLIRT2ITK>
260420-04:18:02,816 nipype.interface WARNING:
	 Multithreading is deprecated. Remove the num_threads
 input.
260420-04:18:03,22 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.208483s.
260420-04:18:03,93 nipype.workflow INFO:
	 [Node] Finished "fsl2itk", elapsed time 0.276695s.
260420-04:18:09,154 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/motion_para
ms".
260420-04:18:09,165 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/rmsd".
260420-04:18:
09,167 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.confounds.FSLMo
tionParams>
260420-04:18:09,168 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces
.confounds.FSLRMSDeviation>
260420-04:18:09,425 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.25621s.
260420-04:18:09,505 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.336436s.
260420-04:18:11,253 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/motion_para
ms".
260420-04:18:11,256 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfac
es.confounds.FSLMotionParams>
260420-04:18:11,260 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/rmsd".
260420-04:18:11,264 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confounds.F
SLRMSDeviation>
260420-04:18:11,413 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.147046s.
260420-04:18:11,419 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.162518s.
260420-04:18:13,150 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/motion_params".
260420-04:18:13,153 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/rmsd".
260420-04:18:13,155 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.co
nfounds.FSLMotionParams>
260420-04:18:13,156 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confounds.F
SLRMSDeviation>
260420-04:18:13,313 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.156391s.
260420-04:18:13,337 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.179789s.
260420-04:18:15,329 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/motion_params".
260420-04:18:15,334 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.co
nfounds.FSLMotionParams>
260420-04:18:15,336 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/rmsd".
260420-04:18:15,340 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confounds.F
SLRMSDeviation>
260420-04:18:15,515 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.180042s.
260420-04:18:15,539 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.191691s.
260420-04:18:17,294 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/motion_params".
260420-04
:18:17,297 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.confounds.F
SLMotionParams>
260420-04:18:17,311 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/rmsd".
260420-04:18:17,319 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confounds.F
SLRMSDeviation>
260420-04:18:17,528 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.229799s.
260420-04:18:17,604 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.281183s.
260420-04:18:19,342 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/motion_params".
260420-04:18:19,349 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.co
nfounds.FSLMotionParams>
260420-04:18:19,350 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/rmsd".
260420-04:18:19,352 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confounds.F
SLRMSDeviation>
260420-04:18:19,545 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.195437s.
260420-04:18:19,567 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.214309s.
260420-04:18:21,250 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/rmsd".
260420-04:18:21,250 nipype.
workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_confo
unds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104
_wf/bold_task_trust_run_05_wf/bold_confounds_wf/motion_params".
260420-04:18:21,253 nipype.workflow
INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confounds.FSLRMSDeviation>
260420-04:18:21,253 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.co
nfounds.FSLMotionParams>
260420-04:18:21,477 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.220375s.
260420-04:18:21,540 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.286067s.
260420-04:18:23,234 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/motion_params".
2
60420-04:18:23,237 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.con
founds.FSLMotionParams>
260420-04:18:23,237 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/rm
sd".
260420-04:18:23,240 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confou
nds.FSLRMSDeviation>
260420-04:18:23,407 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.16736s.
260420-04:18:23,458 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.217251s.
260420-04:18:25,297 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.motion_params" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/motion_params".
2
60420-04:18:25,301 nipype.workflow INFO:
	 [Node] Executing "motion_params" <fmriprep.interfaces.con
founds.FSLMotionParams>
260420-04:18:25,301 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_confounds_wf.rmsd" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/rm
sd".
260420-04:18:25,304 nipype.workflow INFO:
	 [Node] Executing "rmsd" <fmriprep.interfaces.confou
nds.FSLRMSDeviation>
260420-04:18:25,431 nipype.workflow INFO:
	 [Node] Finished "motion_params", elapsed time 0.130278s.
260420-04:18:25,506 nipype.workflow INFO:
	 [Node] Finished "rmsd", elapsed time 0.201193s.
260420-04:18:27,545 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/fdisp".
260420-04:1
8:27,547 nipype.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDi
splacement>
260420-04:18:27,545 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/fdisp".
260420-04:1
8:27,552 nipype.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDi
splacement>
260420-04:18:27,598 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.044967s.
260420-04:18:27,602 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.053585s.
260420-04:18:29,341 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/fdisp".
260420-04:18:29,344 nipype.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.
FramewiseDisplacement>
260420-04:18:29,349 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/fdisp".
260420-04:18:29,350 nipyp
e.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.005661s.
260420-04:18:29,351 nipype.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.
FramewiseDisplacement>
260420-04:18:29,370 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.01765s.
260420-04:18:31,226 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/fdisp".
260420-04:18:31,228 nipyp
e.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDisplacement>
260420-04:18:31,237 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/fdisp".
260420-04:18:31,240 nipyp
e.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDisplacement>
260420-04:18:31,243 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.014236s.
260420-04:18:31,256 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.015053s.
260420-04:18:33,354 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/fdisp".
260420-04:18:33,356 nipyp
e.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDisplacement>
26
0420-04:18:33,357 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_u
ltimatum_run_01_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/fdisp".
260420-04:18:33,359
 nipype.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDisplaceme
nt>
260420-04:18:33,370 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.013222s.
260420-04:18:33,373 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.005134s.
260420-04:18:35,426 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.fdisp" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/fdisp".
260420-04:18:35,4
28 nipype.workflow INFO:
	 [Node] Executing "fdisp" <fmriprep.interfaces.confounds.FramewiseDisplace
ment>
260420-04:18:35,434 nipype.workflow INFO:
	 [Node] Finished "fdisp", elapsed time 0.005039s.
260420-04:20:30,686 nipype.workflow INFO:
	 [Node] Finished "_denoise0", elapsed time 249.010297s.
260420-04:20:31,378 nipype.workflow INFO:
	 [Node] Setting-up "_anat_conform0" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/anat_template_wf/anat_confor
m/mapflow/_anat_conform0".
260420-04:20:31,380 nipype.workflow INFO:
	 [Node] Executing "_anat_conform0" <niworkflows.interface
s.images.Conform>
260420-04:20:31,482 nipype.workflow INFO:
	 [Node] Finished "_anat_conform0", elapsed time 0.10077s.
260420-04:20:33,370 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.anat_template_wf.get1st" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/su
b_104_wf/anat_fit_wf/anat_template_wf/get1st".
260420-04:20:33,374 nipype.workflow INFO:
	 [Node] Ex
ecuting "get1st" <nipype.interfaces.utility.base.Select>
260420-04:20:33,375 nipype.workflow INFO:
 [Node] Finished "get1st", elapsed time 0.000374s.
260420-04:20:37,404 nipype.workflow INFO:
	 [Node] Setting-up "_truncate_images0" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/trunc
ate_images/mapflow/_truncate_images0".
260420-04:20:37,406 nipype.workflow INFO:
	 [Node] Executing "_truncate_images0" <nipype.interfaces.
ants.utils.ImageMath>
260420-04:20:40,113 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 197.151753s.
260420-04:20:41,5 nipype.workflow INFO:
	 [Node] Finished "_truncate_images0", elapsed time 3.59865s
.
260420-04:20:41,263 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/norm".
260420-04:20:41,272 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.Fi
xHeaderRegistration>
260420-04:20:42,262 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 201.37623s.
260420-04:20:43,402 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/norm".
260420-04:20:43,407 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.Fi
xHeaderRegistration>
260420-04:20:43,410 nipype.workflow INFO:
	 [Node] Setting-up "_inu_n40" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/inu_n4/mapflow
/_inu_n40".
260420-04:20:43,411 nipype.workflow INFO:
	 [Node] Executing "_inu_n40" <nipype.interfac
es.ants.segmentation.N4BiasFieldCorrection>
260420-04:20:48,331 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 193.863224s.
260420-04:20:48,921 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 5.775671s.
260420-04:20:49,309 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold
_fit_wf/enhance_and_skullstrip_bold_wf/map_brainmask".
260420-04:20:49,313 nipype.workflow INFO:
	 [
Node] Executing "map_brainmask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:20:49,325 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and_sku
llstrip_bold_wf/norm".
260420-04:20:49,334 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.Fi
xHeaderRegistration>
260420-04:20:50,324 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 1.004054s.
260420-04:20:51,815 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 2.479994s.
260420-04:20:53,391 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhanc
e_and_skullstrip_bold_wf/map_brainmask".
260420-04:20:53,394 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fi
t_wf/enhance_and_skullstrip_bold_wf/n4_correct".
260420-04:20:53,395 nipype.workflow INFO:
	 [Node] Executing "map_brainmask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-04:20:53,397 nipype.workflow INFO:
	 [Node] Executing "n4_co
rrect" <niworkflows.interfaces.fixes.FixN4BiasFieldCorrection>
260420-04:20:54,540 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 1.144226s.
260420-04:20:55,157 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.759072s.
260420-04:20:55,345 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 10.928054s.
260420-04:20:57,362 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold
_fit_wf/enhance_and_skullstrip_bold_wf/map_brainmask".
260420-04:20:57,362 nipype.workflow INFO:
	 [
Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.enhance_and_skul
lstrip_bold_wf.n4_correct" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub
_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/n4_correct".
260420-04:
20:57,363 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedrew
ard_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_f
it_wf/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:20:57,366 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:20:57,366 nipype.workflow INFO:
	 [Node] Executing "map_brainmask"
 <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:20:57,369 nipype.workflow INFO:
	 [Node] Executing "n4_correct" <niworkflows.interfaces.fi
xes.FixN4BiasFieldCorrection>
260420-04:20:58,162 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 185.478236s.
260420-04:20:58,222 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 0.855863s.
260420-04:20:58,756 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.385872s.
260420-04:20:59,330 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_and_sku
llstrip_bold_wf/norm".
260420-04:20:59,334 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.Fi
xHeaderRegistration>
260420-04:20:59,632 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
265701s.
260420-04:20:59,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/
trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:20:59,685 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:21:00,440 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 201.198433s.
260420-04:21:00,955 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 1.619732s.
260420-04:21:01,314 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhance_and_sku
llstrip_bold_wf/norm".
260420-04:21:01,318 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhanc
e_and_skullstrip_bold_wf/map_brainmask".
260420-04:21:01,318 nipype.workflow INFO:
	 [Node] Setting-
up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_
bold_wf.first_dilate" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/first_dilate".
260420
-04:21:01,318 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_share
dreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/n4_correct".
260420-04:21:01,320 nipype.workflow INFO:
	 [Node] Execut
ing "norm" <niworkflows.interfaces.fixes.FixHeaderRegistration>
260420-04:21:01,320 nipype.workflow
INFO:
	 [Node] Executing "first_dilate" <niworkflows.interfaces.nibabel.BinaryDilation>
260420-04:21
:01,321 nipype.workflow INFO:
	 [Node] Executing "n4_correct" <niworkflows.interfaces.fixes.FixN4Bia
sFieldCorrection>
260420-04:21:01,321 nipype.workflow INFO:
	 [Node] Executing "map_brainmask" <niwo
rkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:21:01,598 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.277881s.
260420-04:21:01,937 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
25052s.
260420-04:21:02,4 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 0.6816s.
260420-04:21:02,828 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.50678400000
00001s.
260420-04:21:03,674 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/
jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01
_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:21:03,677 nipype.wo
rkflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfaces.fsl.preprocess.BET>
260420-04:21:03,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fi
t_wf/enhance_and_skullstrip_bold_wf/first_mask".
260420-04:21:03,681 nipype.workflow INFO:
	 [Node]
Executing "first_mask" <niworkflows.interfaces.nibabel.ApplyMask>
260420-04:21:03,695 nipype.workflo
w INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.enhan
ce_and_skullstrip_bold_wf.first_dilate" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/first_dila
te".
260420-04:21:03,697 nipype.workflow INFO:
	 [Node] Executing "first_dilate" <niworkflows.interf
aces.nibabel.BinaryDilation>
260420-04:21:03,721 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.038953s.
260420-04:21:04,132 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.433926s.
260420-04:21:04,494 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 3.173514s.
260420-04:21:05,318 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhanc
e_and_skullstrip_bold_wf/map_brainmask".
260420-04:21:05,327 nipype.workflow INFO:
	 [Node] Executing "map_brainmask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-04:21:05,334 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/n4_correct".
260420-04:21:05,337 nipype.workflow INFO:
	 [Node] Executing "n4_correct" <niworkflows.interfaces.fi
xes.FixN4BiasFieldCorrection>
260420-04:21:05,338 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/unifize".
260420-04:21:05,340 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:05,348 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/first_mask".
260420-04:21:05,604 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:05,660 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.054791s.
260420-04:21:05,938 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
260383s.
260420-04:21:06,81 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 0.752584s.
260420-04:21:06,785 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.44723699999
99999s.
260420-04:21:07,171 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 191.351518s.
260420-04:21:07,670 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/
trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:21:07,673 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:21:07,680 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_dil
ate" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_shar
edreward_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/first_dilate".
260420-04:21:07,682 nipype.workflow INFO:
	 [Node] Executing "first_dilate" <niworkflows.interfaces.
nibabel.BinaryDilation>
260420-04:21:07,802 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and_
skullstrip_bold_wf/unifize".
260420-04:21:07,804 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:08,24 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.340784s.
260420-04:21:09,318 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 190.596596s.
260420-04:21:09,332 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhance_and_sku
llstrip_bold_wf/norm".
260420-04:21:09,333 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_
wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/
home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_w
f/bold_fit_wf/enhance_and_skullstrip_bold_wf/n4_correct".
260420-04:21:09,336 nipype.workflow INFO:
	 [Node] Executing "n4_correct" <niworkflows.interfaces.fixes.FixN4BiasFieldCorrection>
260420-04:21
:09,337 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.FixHeaderRegis
tration>
260420-04:21:09,345 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fi
t_wf/enhance_and_skullstrip_bold_wf/first_mask".
260420-04:21:09,348 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:09,393 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.036795s.
260420-04:21:10,48 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.3
74415s.
260420-04:21:10,789 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.451838s.
260420-04:21:11,339 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_and_sku
llstrip_bold_wf/norm".
260420-04:21:11,339 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_
wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_
pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_tru
st_run_02_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:21:11,342
nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01
_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/enhance_and_skulls
trip_bold_wf/unifize".
260420-04:21:11,343 nipype.workflow INFO:
	 [Node] Executing "skullstrip_firs
t_pass" <nipype.interfaces.fsl.preprocess.BET>
260420-04:21:11,343 nipype.workflow INFO:
	 [Node] Ex
ecuting "norm" <niworkflows.interfaces.fixes.FixHeaderRegistration>
260420-04:21:11,345 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:11,352 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf
.bold_task_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_dilate" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_
wf/enhance_and_skullstrip_bold_wf/first_dilate".
260420-04:21:11,355 nipype.workflow INFO:
	 [Node]
Executing "first_dilate" <niworkflows.interfaces.nibabel.BinaryDilation>
260420-04:21:11,751 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.394956s.
260420-04:21:12,376 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 3.038016s.
260420-04:21:13,179 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 1.834753s.
260420-04:21:13,422 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhanc
e_and_skullstrip_bold_wf/map_brainmask".
260420-04:21:13,422 nipype.workflow INFO:
	 [Node] Setting-
up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf
.first_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_t
ask_trust_run_03_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/first_mask".
260420-04:21:13,425 nipy
pe.workflow INFO:
	 [Node] Executing "map_brainmask" <niworkflows.interfaces.fixes.FixHeaderApplyTra
nsforms>
260420-04:21:13,428 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:13,447 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 190.958655s.
260420-04:21:13,454 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
110407s.
260420-04:21:13,470 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.040436s.
260420-04:21:14,43 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 0.616785s.
260420-04:21:15,334 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/enhance
_and_skullstrip_bold_wf/norm".
260420-04:21:15,338 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.Fi
xHeaderRegistration>
260420-04:21:15,346 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf
.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "
/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_
wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/map_brainmask".
260420-04:21:15,349 nipype.workflow IN
FO:
	 [Node] Executing "map_brainmask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:21:15,666 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_and_
skullstrip_bold_wf/unifize".
260420-04:21:15,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_dilate" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhance
_and_skullstrip_bold_wf/first_dilate".
260420-04:21:15,680 nipype.workflow INFO:
	 [Node] Executing
"unifize" <nipype.interfaces.afni.utils.Unifize>
260420-04:21:15,686 nipype.workflow INFO:
	 [Node] Executing "first_dilate" <niworkflows.interfaces.
nibabel.BinaryDilation>
260420-04:21:16,463 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 1.113403s.
260420-04:21:16,586 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.899334s.
260420-04:21:17,674 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/n4_correct".
260420-04:21:17,677 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/first_mask".
260420-04:21:17,677 nipype.workflow INFO:
	 [Node] Executing "n4_
correct" <niworkflows.interfaces.fixes.FixN4BiasFieldCorrection>
260420-04:21:17,680 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:17,711 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.029941s.
260420-04:21:18,911 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 195.815754s.
260420-04:21:19,347 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.norm" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/enhance
_and_skullstrip_bold_wf/norm".
260420-04:21:19,350 nipype.workflow INFO:
	 [Node] Executing "norm" <
niworkflows.interfaces.fixes.FixHeaderRegistration>
260420-04:21:19,351 nipype.workflow INFO:
	 [Nod
e] Finished "n4_correct", elapsed time 1.6725780000000001s.
260420-04:21:19,358 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/n4_correct".
260420-04:21:19,361 nipype.workflow INFO:
	 [Node] Executing "n4_correct" <niworkflows.interfaces.fi
xes.FixN4BiasFieldCorrection>
260420-04:21:19,362 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhance_and_
skullstrip_bold_wf/unifize".
260420-04:21:19,366 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:20,269 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 4.929817s.
260420-04:21:21,55 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.692810000000
0001s.
260420-04:21:21,403 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/map_brainmask".
260420-04:21:21,405 nipype.workflow INFO:
	 [Node]
Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip
_bold_wf.skullstrip_first_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_w
f/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_first_p
ass".
260420-04:21:21,411 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:21:21,422 nipype.workflow INFO:
	 [Node] Executing "map_brainmask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-04:21:22,133 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 0.710115s.
260420-04:21:23,454 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 4.102329s.
260420-04:21:23,859 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/
trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:21:23,862 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:21:24,258 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
84621s.
260420-04:21:25,362 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.map_brainmask" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/map_brainmask".
260420-04:21:25,365 nipype.workflow INFO:
	 [Node]
Executing "map_brainmask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:21:25,366 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/n4_correct".
260420-04:21:25,366 nipype.workflow INFO:
	 [Node] Settin
g-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_
wf.first_dilate" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bo
ld_task_trust_run_04_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/first_dilate".
260420-04:21:25,36
8 nipype.workflow INFO:
	 [Node] Executing "first_dilate" <niworkflows.interfaces.nibabel.BinaryDila
tion>
260420-04:21:25,369 nipype.workflow INFO:
	 [Node] Executing "n4_correct" <niworkflows.interfa
ces.fixes.FixN4BiasFieldCorrection>
260420-04:21:25,733 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.363447s.
260420-04:21:25,996 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 0.629841s.
260420-04:21:27,1 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 3.13
8012s.
260420-04:21:27,91 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 1.721378s.
260420-04:21:27,667 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_dilate" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance
_and_skullstrip_bold_wf/first_dilate".
260420-04:21:27,669 nipype.workflow INFO:
	 [Node] Executing
"first_dilate" <niworkflows.interfaces.nibabel.BinaryDilation>
260420-04:21:27,686 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/first_mask".
260420-04:21:27,694 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:27,748 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.052606s.
260420-04:21:27,883 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.2137s.
260420-04:21:29,433 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.n4_correct" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/n4_correct".
260420-04:21:29,436 nipype.workflow INFO:
	 [Node] Execut
ing "n4_correct" <niworkflows.interfaces.fixes.FixN4BiasFieldCorrection>
260420-04:21:29,449 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/jov
yan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bo
ld_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:21:29,451 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/first_mask".
260420-04:21:29,451 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifi
ze" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust
_run_04_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/unifize".
260420-04:21:29,452 nipype.workflow
INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfaces.fsl.preprocess.BET>
260420-04:21:29,454 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:29,472 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:29,489 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.034419s.
260420-04:21:31,546 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_and_
skullstrip_bold_wf/unifize".
260420-04:21:31,549 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:31,632 nipype.workflow INFO:
	 [Node] Finished "n4_correct", elapsed time 2.195242s.
260420-04:21:32,273 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
819937s.
260420-04:21:33,385 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_first_pass" in "/home/jov
yan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bo
ld_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_first_pass".
260420-04:21:33,385 nipype.workflow
 INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.en
hance_and_skullstrip_bold_wf.first_dilate" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fir
st_dilate".
260420-04:21:33,387 nipype.workflow INFO:
	 [Node] Executing "first_dilate" <niworkflows.interfaces.
nibabel.BinaryDilation>
260420-04:21:33,388 nipype.workflow INFO:
	 [Node] Executing "skullstrip_fir
st_pass" <nipype.interfaces.fsl.preprocess.BET>
260420-04:21:33,546 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.157557s.
260420-04:21:35,354 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/first_mask".
260420-04:21:35,357 nipype.workflow INFO:
	 [Node] Execut
ing "first_mask" <niworkflows.interfaces.nibabel.ApplyMask>
260420-04:21:35,393 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.035069s.
260420-04:21:36,513 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 3.
12444s.
260420-04:21:37,371 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_dilate" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf
/enhance_and_skullstrip_bold_wf/first_dilate".
260420-04:21:37,373 nipype.workflow INFO:
	 [Node] Executing "first_dilate" <niworkflows.interfaces.
nibabel.BinaryDilation>
260420-04:21:37,376 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/enha
nce_and_skullstrip_bold_wf/unifize".
260420-04:21:37,380 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:21:37,760 nipype.workflow INFO:
	 [Node] Finished "first_dilate", elapsed time 0.385755s.
260420-04:21:39,396 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.first_mask" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/first_mask".
260420-04:21:39,398 nipype.workflow INFO:
	 [Node] Executing "first_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:21:39,448 nipype.workflow INFO:
	 [Node] Finished "first_mask", elapsed time 0.049471s.
260420-04:21:41,433 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.unifize" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/enha
nce_and_skullstrip_bold_wf/unifize".
260420-04:21:41,438 nipype.workflow INFO:
	 [Node] Executing "unifize" <nipype.interfaces.afni.utils
.Unifize>
260420-04:22:02,660 nipype.workflow INFO:
	 [Node] Finished "_inu_n40", elapsed time 79.248157s.
260420-04:22:03,514 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.res_target" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/res_target".
260420-04:22:03,516 nipype.workflow INF
O:
	 [Node] Executing "res_target" <niworkflows.interfaces.nibabel.RegridToZooms>
260420-04:22:03,517 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.lap_target" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/lap_target".
260420-04:22:03,520 nipype.workflow INF
O:
	 [Node] Executing "lap_target" <nipype.interfaces.ants.utils.ImageMath>
260420-04:22:04,512 nipype.workflow INFO:
	 [Node] Finished "res_target", elapsed time 0.99471s.
260420-04:22:05,492 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.init_aff" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_
wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/init_aff".
260420-04:22:05,534 nipype.workflow INFO:
	 [Node] Executing "init_aff" <nipype.interfaces.ants.util
s.AI>
260420-04:22:11,30 nipype.workflow INFO:
	 [Node] Finished "lap_target", elapsed time 7.509508s.
260420-04:22:11,422 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.mrg_target" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/mrg_target".
260420-04:22:11,424 nipype.workflow INFO:
	 [Node] Executing "mrg_target" <nipype.interfaces.utility
.base.Merge>
260420-04:22:11,425 nipype.workflow INFO:
	 [Node] Finished "mrg_target", elapsed time
0.000217s.
260420-04:23:02,611 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 117.270108s.
260420-04:23:03,617 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/
trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bol
d_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:03,619 nipype.workflow INFO:
 [Node] Executing "fixhdr_unifize" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:03,685 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.064667s
.
260420-04:23:04,683 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 116.877593s.
260420-04:23:05,690 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhan
ce_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:05,691 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_0
2_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:05,693 nipype.
workflow INFO:
	 [Node] Executing "fixhdr_unifize" <niworkflows.interfaces.header.CopyXForm>
260420-
04:23:05,695 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfaces.af
ni.preprocess.Automask>
260420-04:23:05,754 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.060219s
.
260420-04:23:06,184 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.487548s.
260420-04:23:06,999 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 115.653523s.
260420-04:23:07,573 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/
trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bol
d_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:07,576 nipype.workflow INFO:
 [Node] Executing "fixhdr_unifize" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:07,577 nip
ype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_f
it_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and_skullstr
ip_bold_wf/skullstrip_second_pass".
260420-04:23:07,578 nipype.workflow INFO:
	 [Node] Setting-up "f
mriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_
wf.fixhdr_skullstrip2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104
_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_skullstrip2".

260420-04:23:07,580 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.inter
faces.afni.preprocess.Automask>
260420-04:23:07,580 nipype.workflow INFO:
	 [Node] Executing "fixhdr
_skullstrip2" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:07,610 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.029
011s.
260420-04:23:07,641 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.060483s
.
260420-04:23:07,878 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.297637s.
260420-04:23:09,654 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/fixhdr_skullstrip2".
260420-04:23:09,654 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_0
1_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:09,655 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold
_fit_wf/enhance_and_skullstrip_bold_wf/combine_masks".
260420-04:23:09,657 nipype.workflow INFO:
	 [
Node] Executing "fixhdr_skullstrip2" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:09,658 n
ipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.maths.BinaryMaths>
26
0420-04:23:09,658 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfac
es.afni.preprocess.Automask>
260420-04:23:09,673 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.015
865s.
260420-04:23:09,955 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.296127s.
260420-04:23:10,254 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.595074s.
260420-04:23:11,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_skullstrip2" in "/home/jov
yan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf
/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_skullstrip2".
260420-04:23:11,587 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhanc
e_and_skullstrip_bold_wf/combine_masks".
260420-04:23:11,588 nipype.workflow INFO:
	 [Node] Executin
g "fixhdr_skullstrip2" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:11,590 nipype.workflow
 INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.maths.BinaryMaths>
260420-04:23:11,
605 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_ru
n_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/apply_mask".
260420-04:23:11,608 nipype.workflow INFO:
	 [Node] Executing "apply
_mask" <niworkflows.interfaces.nibabel.ApplyMask>
260420-04:23:11,626 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/fmapreg
_wf/dilate_target_mask".
260420-04:23:11,629 nipype.workflow INFO:
	 [Node] Executing "dilate_target
_mask" <sdcflows.interfaces.brainmask.BinaryDilation>
260420-04:23:11,639 nipype.workflow INFO:
	 [N
ode] Finished "fixhdr_skullstrip2", elapsed time 0.049798s.
260420-04:23:11,663 nipype.workflow INFO
:
	 [Node] Finished "apply_mask", elapsed time 0.054419s.
260420-04:23:11,812 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.178
15s.
260420-04:23:12,2 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.411463s.
260420-04:23:13,327 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 113.960179s.
260420-04:23:13,613 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold
_fit_wf/enhance_and_skullstrip_bold_wf/combine_masks".
260420-04:23:13,614 nipype.workflow INFO:
	 [
Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.enhance_and_skul
lstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub
_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/apply_mask".
260420-04:
23:13,616 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.maths.Bina
ryMaths>
260420-04:23:13,617 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:23:13,652 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.034023s.
260420-04:23:13,668 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/fmapreg_wf/dilate_tar
get_mask".
260420-04:23:13,671 nipype.workflow INFO:
	 [Node] Executing "dilate_target_mask" <sdcflows.interfac
es.brainmask.BinaryDilation>
260420-04:23:14,126 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.50963s.
260420-04:23:14,139 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.466
742s.
260420-04:23:15,15 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 119.334996s.
260420-04:23:15,574 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhan
ce_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:15,577 nipype.workflow INFO:
	 [Node] Execut
ing "fixhdr_unifize" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:15,577 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhan
ce_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:15,581 nipype.workflow INFO:
	 [Node] Executing "fixhdr_unifize" <niworkflows.interface
s.header.CopyXForm>
260420-04:23:15,582 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.
sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" i
n "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedrewa
rd_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/apply_mask".
260420-04:23:15,585 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:23:15,624 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.04275s.
260420-04:23:15,624 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.046945s
.
260420-04:23:15,628 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fmapreg
_wf/dilate_target_mask".
260420-04:23:15,632 nipype.workflow INFO:
	 [Node] Executing "dilate_target_mask" <sdcflows.interfac
es.brainmask.BinaryDilation>
260420-04:23:15,637 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.051082s.
260420-04:23:15,803 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.170
562s.
260420-04:23:17,519 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_
wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:17,522 nipype.workflow INFO:

	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.enhance_and_
skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullst
rip_second_pass".
260420-04:23:17,522 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pa
ss" <nipype.interfaces.afni.preprocess.Automask>
260420-04:23:17,524 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interf
aces.afni.preprocess.Automask>
260420-04:23:17,913 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.390683s.
260420-04:23:17,952 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.426471s.
260420-04:23:19,530 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/fixhdr_skullstrip2".
260420-04:23:19,530 nipype.workflow INFO:
	 [Node
] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.enhance_and_skullstr
ip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf
/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_skullstrip2"
.
260420-04:23:19,533 nipype.workflow INFO:
	 [Node] Executing "fixhdr_skullstrip2" <niworkflows.int
erfaces.header.CopyXForm>
260420-04:23:19,534 nipype.workflow INFO:
	 [Node] Executing "fixhdr_skullstrip2" <niworkflows.inter
faces.header.CopyXForm>
260420-04:23:19,570 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.036
789s.
260420-04:23:19,572 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.037
148s.
260420-04:23:21,570 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhanc
e_and_skullstrip_bold_wf/combine_masks".
260420-04:23:21,572 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.
maths.BinaryMaths>
260420-04:23:21,574 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.s
ub_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/h
ome/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf
/bold_fit_wf/enhance_and_skullstrip_bold_wf/combine_masks".
260420-04:23:21,577 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.
maths.BinaryMaths>
260420-04:23:21,826 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.252558s.
260420-04:23:21,999 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.421356s.
260420-04:23:23,545 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/apply_mask".
260420-04:23:23,548 nipype.workflow INFO:
	 [Node] Executing "app
ly_mask" <niworkflows.interfaces.nibabel.ApplyMask>
260420-04:23:23,558 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/enhance_a
nd_skullstrip_bold_wf/apply_mask".
260420-04:23:23,560 nipype.workflow INFO:
	 [Node] Executing "app
ly_mask" <niworkflows.interfaces.nibabel.ApplyMask>
260420-04:23:23,565 nipype.workflow INFO:
	 [Nod
e] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.fmapreg_wf.dilate_t
arget_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_ta
sk_trust_run_02_wf/bold_fit_wf/fmapreg_wf/dilate_target_mask".
260420-04:23:23,567 nipype.workflow I
NFO:
	 [Node] Executing "dilate_target_mask" <sdcflows.interfaces.brainmask.BinaryDilation>
260420-04:23:23,599 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.038083s.
26
0420-04:23:23,608 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.059359s.
2604
20-04:23:23,615 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_tru
st_run_03_wf.bold_fit_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/fmapreg_wf/dilate_target_
mask".
260420-04:23:23,623 nipype.workflow INFO:
	 [Node] Executing "dilate_target_mask" <sdcflows.interfac
es.brainmask.BinaryDilation>
260420-04:23:23,696 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.128
512s.
260420-04:23:24,20 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 114.547063s.
260420-04:23:24,199 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.574
644s.
260420-04:23:25,534 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.magnitude_wf.brainextraction_wf.n4" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/magnitude_wf/brainextraction_wf/
n4".
260420-04:23:25,536 nipype.workflow INFO:
	 [Node] Executing "n4" <nipype.interfaces.ants.segme
ntation.N4BiasFieldCorrection>
260420-04:23:29,340 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 111.958608s.
260420-04:23:30,340 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 118.791101s.
260420-04:23:30,955 nipype.workflow INFO:
	 [Node] Finished "n4", elapsed time 5.41736s.
260420-04:23:31,513 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.magnitude_wf.brainextraction_wf.clipper_post" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/magnitude_wf/brainextr
action_wf/clipper_post".
260420-04:23:31,516 nipype.workflow INFO:
	 [Node] Executing "clipper_post"
 <niworkflows.interfaces.nibabel.IntensityClip>
260420-04:23:31,522 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhan
ce_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:31,522 nipype.workflow INFO:
	 [Node] Settin
g-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_b
old_wf.fixhdr_unifize" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104
_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_unifize".
260420
-04:23:31,522 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust
_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_and
_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:31,525 nipype.workflow INFO:
	 [Node] Executing "fixhdr_unifize" <niworkflows.interface
s.header.CopyXForm>
260420-04:23:31,525 nipype.workflow INFO:
	 [Node] Executing "fixhdr_unifize" <n
iworkflows.interfaces.header.CopyXForm>
260420-04:23:31,526 nipype.workflow INFO:
	 [Node] Executing
 "fixhdr_unifize" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:31,554 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.028771s
.
260420-04:23:31,571 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.04433s.
260420-04:23:31,586 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.060147s
.
260420-04:23:31,808 nipype.workflow INFO:
	 [Node] Finished "clipper_post", elapsed time 0.291192s.
260420-04:23:33,562 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.magnitude_wf.brainextraction_wf.masker" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/magnitude_wf/brainextraction
_wf/masker".
260420-04:23:33,564 nipype.workflow INFO:
	 [Node] Executing "masker" <sdcflows.interfa
ces.brainmask.BrainExtraction>
260420-04:23:33,570 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_
wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:33,574 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_
wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:33,574 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interf
aces.afni.preprocess.Automask>
260420-04:23:33,575 nipype.workflow INFO:
	 [Node] Setting-up "fmripr
ep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skull
strip_second_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/
bold_task_ultimatum_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:33,576 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interf
aces.afni.preprocess.Automask>
260420-04:23:33,578 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interf
aces.afni.preprocess.Automask>
260420-04:23:33,614 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.fmap_derivatives_wf_auto_00000.ds_reference" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_derivatives_wf_auto_00000/ds_reference".
260420-04:23:33,618 nipype.workflow INFO:
	 [Node] Executing "ds_reference" <sdcflows.workflows.outp
uts.DerivativesDataSink>
260420-04:23:33,707 nipype.workflow INFO:
	 [Node] Finished "unifize", elapsed time 112.267721s.
260420-04:23:33,740 nipype.workflow INFO:
	 [Node] Finished "ds_reference", elapsed time 0.121373s.
260420-04:23:33,937 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.359558s.
260420-04:23:33,998 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.418648s.
260420-04:23:34,9 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0.4
33659s.
260420-04:23:35,514 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_unifize" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_
wf/enhance_and_skullstrip_bold_wf/fixhdr_unifize".
260420-04:23:35,514 nipype.workflow INFO:
	 [Node
] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_preproc_wf.out_merge_fmap_ref" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/out_merge_fmap_ref".
2604
20-04:23:35,516 nipype.workflow INFO:
	 [Node] Executing "fixhdr_unifize" <niworkflows.interfaces.he
ader.CopyXForm>
260420-04:23:35,517 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/e
nhance_and_skullstrip_bold_wf/fixhdr_skullstrip2".
260420-04:23:35,518 nipype.workflow INFO:
	 [Node
] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.enhance_and_skullstr
ip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf
/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_skullstrip2"
.
260420-04:23:35,520 nipype.workflow INFO:
	 [Node] Executing "fixhdr_skullstrip2" <niworkflows.int
erfaces.header.CopyXForm>
260420-04:23:35,520 nipype.workflow INFO:
	 [Node] Executing "fixhdr_skull
strip2" <niworkflows.interfaces.header.CopyXForm>
260420-04:23:35,521 nipype.workflow INFO:
	 [Node]
 Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skull
strip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2
_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_skull
strip2".
260420-04:23:35,524 nipype.workflow INFO:
	 [Node] Executing "fixhdr_skullstrip2" <niworkflows.inter
faces.header.CopyXForm>
260420-04:23:35,535 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstr
ip2", elapsed time 0.014954s.
260420-04:23:35,537 nipype.workflow INFO:
	 [Node] Executing "out_merg
e_fmap_ref" <nipype.interfaces.utility.base.Merge>
260420-04:23:35,538 nipype.workflow INFO:
	 [Node
] Finished "out_merge_fmap_ref", elapsed time 0.000185s.
260420-04:23:35,541 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.015
98s.
260420-04:23:35,552 nipype.workflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.031
478s.
260420-04:23:35,558 nipype.workflow INFO:
	 [Node] Finished "fixhdr_unifize", elapsed time 0.041449s
.
260420-04:23:35,932 nipype.workflow INFO:
	 [Node] Finished "masker", elapsed time 2.36737s.
260420-04:23:37,809 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.phdiff_wf.prelude" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/phdiff_wf/prelude".
260420-04:23:37,809 nipype.wo
rkflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_preproc_wf.fmap_derivatives_wf_au
to_00000.ds_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/f
map_preproc_wf/fmap_derivatives_wf_auto_00000/ds_mask".
260420-04:23:37,813 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.skullstrip_second_pass" in "/home/jo
vyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/b
old_fit_wf/enhance_and_skullstrip_bold_wf/skullstrip_second_pass".
260420-04:23:37,816 nipype.workfl
ow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfaces.afni.preprocess.Automask>
26
0420-04:23:37,817 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_t
rust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enhance_
and_skullstrip_bold_wf/combine_masks".
260420-04:23:37,818 nipype.workflow INFO:
	 [Node] Setting-up
 "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.c
ombine_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_
task_trust_run_05_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/combine_masks".
260420-04:23:37,820
nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.maths.BinaryMaths>
2
60420-04:23:37,821 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.m
aths.BinaryMaths>
260420-04:23:37,821 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.su
b_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in
"/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_ru
n_01_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/combine_masks".
260420-04:23:37,824 nipype.workfl
ow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.maths.BinaryMaths>
260420-04:23:37,857 nipype.workflow INFO:
	 [Node] Executing "ds_mask" <sdcflows.workflows.outputs.D
erivativesDataSink>
260420-04:23:37,873 nipype.workflow INFO:
	 [Node] Executing "prelude" <nipype.i
nterfaces.fsl.preprocess.PRELUDE>
260420-04:23:37,919 nipype.workflow INFO:
	 [Node] Finished "ds_ma
sk", elapsed time 0.060967s.
260420-04:23:38,114 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.293215s.
260420-04:23:38,173 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.35626s.
260420-04:23:38,195 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.37361s.
260420-04:23:38,236 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.411353s.
260420-04:23:38,561 nipype.workflow INFO:
	 [Node] Finished "prelude", elapsed time 0.687276s.
260420-04:23:39,546 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.out_merge_fmap_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/su
b_104_wf/fmap_preproc_wf/out_merge_fmap_mask".
260420-04:23:39,546 nipype.workflow INFO:
	 [Node] Se
tting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstr
ip_bold_wf.fixhdr_skullstrip2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf
/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/fixhdr_skullstr
ip2".
260420-04:23:39,546 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bol
d_task_trust_run_04_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/enh
ance_and_skullstrip_bold_wf/apply_mask".
260420-04:23:39,548 nipype.workflow INFO:
	 [Node] Executing "fixhdr_skullstrip2" <niworkflows.inter
faces.header.CopyXForm>
260420-04:23:39,548 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <n
iworkflows.interfaces.nibabel.ApplyMask>
260420-04:23:39,550 nipype.workflow INFO:
	 [Node] Setting-
up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.fmapreg_wf.dilate_target_mask"
 in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_ru
n_04_wf/bold_fit_wf/fmapreg_wf/dilate_target_mask".
260420-04:23:39,552 nipype.workflow INFO:
	 [Nod
e] Executing "dilate_target_mask" <sdcflows.interfaces.brainmask.BinaryDilation>
260420-04:23:39,554
 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bo
ld_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/enhance_and_skullstrip_bold_
wf/apply_mask".
260420-04:23:39,554 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_
104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.apply_mask" in "/hom
e/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_
wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/apply_mask".
260420-04:23:39,555 nipype.workflow INFO:

	 [Node] Executing "out_merge_fmap_mask" <nipype.interfaces.utility.base.Merge>
260420-04:23:39,555
 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_w
f.bold_fit_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/fmapreg_wf/dilate_target_mask".
260420-04:23:39,555 nipype.workflow INFO:
	 [Node] Finished "out_merge_fmap_mask", elapsed time 0.00
0175s.
260420-04:23:39,557 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interf
aces.nibabel.ApplyMask>
260420-04:23:39,557 nipype.workflow INFO:
	 [Node] Executing "dilate_target_
mask" <sdcflows.interfaces.brainmask.BinaryDilation>
260420-04:23:39,557 nipype.workflow INFO:
	 [No
de] Executing "apply_mask" <niworkflows.interfaces.nibabel.ApplyMask>
260420-04:23:39,572 nipype.wor
kflow INFO:
	 [Node] Finished "fixhdr_skullstrip2", elapsed time 0.022756s.
260420-04:23:39,603 nipy
pe.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fi
t_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25
_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/fmapreg_wf/dilate_target_mask".
260420-04:23:39,603 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.054162s.
26
0420-04:23:39,605 nipype.workflow INFO:
	 [Node] Executing "dilate_target_mask" <sdcflows.interfaces
.brainmask.BinaryDilation>
260420-04:23:39,608 nipype.workflow INFO:
	 [Node] Finished "apply_mask",
 elapsed time 0.050402s.
260420-04:23:39,608 nipype.workflow INFO:
	 [Node] Finished "apply_mask", e
lapsed time 0.049933s.
260420-04:23:39,684 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.126
665s.
260420-04:23:39,685 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time
 0.132387s.
260420-04:23:39,916 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.310
299s.
260420-04:23:40,595 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.phdiff_wf.compfmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/fmap_preproc_wf/wf_auto_00000/phdiff_wf/compfmap".
260420-04:23:40,601 nipype.workflow INFO:
	 [Node] Executing "compfmap" <sdcflows.interfaces.fmap.Ph
asediff2Fieldmap>
260420-04:23:40,627 nipype.workflow INFO:
	 [Node] Finished "compfmap", elapsed time 0.025381s.
260420-04:23:41,670 nipype.workflow INFO:
	 [Node] Finished "init_aff", elapsed time 96.130778s.
260420-04:23:41,733 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.wf_auto_00000.bs_filter" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_w
f/sub_104_wf/fmap_preproc_wf/wf_auto_00000/bs_filter".
260420-04:23:41,745 nipype.workflow INFO:
	 [Node] Executing "bs_filter" <sdcflows.interfaces.bsplin
e.BSplineApprox>
260420-04:23:41,894 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skullstrip_bold_wf.combine_masks" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_w
f/enhance_and_skullstrip_bold_wf/combine_masks".
260420-04:23:41,897 nipype.workflow INFO:
	 [Node]
Executing "combine_masks" <nipype.interfaces.fsl.maths.BinaryMaths>
260420-04:23:41,964 nipype.interface INFO:
	 Approximating B-Splines grids (and 16x16x14 [knots]) on
 a grid of 74x74x36 (197136) voxels, of which 50938 fall within the mask.
260420-04:23:42,183 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.285568s.
260420-04:23:43,633 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.norm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/anat_fit_wf/brain_extraction_wf/norm".
260420-04:23:43,634 nipype.workflow INFO:
	 [Node]
Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.enhance_and_skulls
trip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/enhance_and_skullstrip_bold_wf/apply_mask".
260420-0
4:23:43,634 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimat
um_run_02_wf.bold_fit_wf.fmapreg_wf.dilate_target_mask" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/fmapreg_wf/dilate_tar
get_mask".
260420-04:23:43,636 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.in
terfaces.nibabel.ApplyMask>
260420-04:23:43,637 nipype.workflow INFO:
	 [Node] Executing "dilate_tar
get_mask" <sdcflows.interfaces.brainmask.BinaryDilation>
260420-04:23:43,639 nipype.workflow INFO:
	 [Node] Executing "norm" <niworkflows.interfaces.fixes.Fi
xHeaderRegistration>
260420-04:23:43,678 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.041135s.
260420-04:23:43,794 nipype.workflow INFO:
	 [Node] Finished "dilate_target_mask", elapsed time 0.156
704s.
260420-04:23:58,45 nipype.workflow INFO:
	 [Node] Finished "bs_filter", elapsed time 16.298866s.
260420-04:23:59,573 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.fmap_derivatives_wf_auto_00000.merge_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_derivatives_wf_auto_00000/merge_fmap".
260420-04
:23:59,574 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_preproc_wf.fm
ap_derivatives_wf_auto_00000.gen_desc" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_derivatives_wf_auto_00000/gen_desc".
260420-04:23:59,623 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.fmap_reports_wf_auto_00000.fmap_rpt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_reports_wf_auto_00000/fmap_rpt".
260420-04:23:59,723 nipype.workflow INFO:
	 [Node] Executing "fmap_rpt" <sdcflows.interfaces.reportl
ets.FieldmapReportlet>
260420-04:23:59,759 nipype.workflow INFO:
	 [Node] Executing "merge_fmap" <niworkflows.interfaces.ni
babel.MergeSeries>
260420-04:23:59,813 nipype.workflow INFO:
	 [Node] Finished "merge_fmap", elapsed time 0.051055s.
260420-04:24:00,307 nipype.workflow INFO:
	 [Node] Executing "gen_desc" <nipype.interfaces.utility.w
rappers.Function>
260420-04:24:00,308 nipype.workflow INFO:
	 [Node] Finished "gen_desc", elapsed time 0.00034s.
260420-04:24:01,563 nipype.workflow INFO:
	 [Node] Setting-up "_ds_coeff0" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_derivatives_wf_auto_000
00/ds_coeff/mapflow/_ds_coeff0".
260420-04:24:01,566 nipype.workflow INFO:
	 [Node] Executing "_ds_coeff0" <sdcflows.workflows.output
s.DerivativesDataSink>
260420-04:24:01,620 nipype.workflow INFO:
	 [Node] Finished "_ds_coeff0", elapsed time 0.052698s.
260420-04:24:03,534 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.out_merge_fmap_coeff" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/fmap_preproc_wf/out_merge_fmap_coeff".
260420-04:24:03,535 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.fmap_derivatives_wf_auto_00000.ds_fieldmap" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_derivatives_wf_auto_00000/ds_fieldmap".
260420-04:24:03,538 nipype.workflow INFO:
	 [Node] Executing "out_merge_fmap_coeff" <nipype.interfac
es.utility.base.Merge>
260420-04:24:03,540 nipype.workflow INFO:
	 [Node] Executing "ds_fieldmap" <sdcflows.workflows.outpu
ts.DerivativesDataSink>
260420-04:24:03,540 nipype.workflow INFO:
	 [Node] Finished "out_merge_fmap_coeff", elapsed time 0.0
00253s.
260420-04:24:03,622 nipype.workflow INFO:
	 [Node] Finished "ds_fieldmap", elapsed time 0.081721s.
260420-04:24:05,893 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.out_merge_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104
_wf/fmap_preproc_wf/out_merge_fmap".
260420-04:24:05,965 nipype.workflow INFO:
	 [Node] Executing "out_merge_fmap" <nipype.interfaces.uti
lity.base.Merge>
260420-04:24:05,966 nipype.workflow INFO:
	 [Node] Finished "out_merge_fmap", elapsed time 0.000211s
.
260420-04:24:13,647 nipype.workflow INFO:
	 [Node] Finished "fmap_rpt", elapsed time 13.922198999999
999s.
260420-04:24:18,856 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.fmap_prep
roc_wf.fmap_reports_wf_auto_00000.ds_fmap_report" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/fmap_preproc_wf/fmap_reports_wf_auto_00000/ds_fmap_report".
260420-04:24:18,905 nipype.workflow INFO:
	 [Node] Executing "ds_fmap_report" <sdcflows.workflows.ou
tputs.DerivativesDataSink>
260420-04:24:18,959 nipype.workflow INFO:
	 [Node] Finished "ds_fmap_report", elapsed time 0.052503s
.
260420-04:24:19,439 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fmapreg_w
f/dilate_fmap_mask".
260420-04:24:19,498 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces
.brainmask.BinaryDilation>
260420-04:24:19,609 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.1108s
.
260420-04:24:19,973 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/fmapreg_w
f/dilate_fmap_mask".
260420-04:24:19,973 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/fmapreg_wf/dilate_fmap_
mask".
260420-04:24:19,983 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_trust_run_02_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/fmapreg_wf/dilat
e_fmap_mask".
260420-04:24:20,20 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces.
brainmask.BinaryDilation>
260420-04:24:20,32 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces.
brainmask.BinaryDilation>
260420-04:24:20,36 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces.
brainmask.BinaryDilation>
260420-04:24:20,130 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.10820
7s.
260420-04:24:20,155 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.11747
8s.
260420-04:24:20,164 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.13053
s.
260420-04:24:21,224 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/fmapreg_wf/dilate_fmap_
mask".
260420-04:24:21,225 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/fmapreg_wf/dilate_fmap_
mask".
260420-04:24:21,244 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/fmapreg_wf/dilate_fmap_
mask".
260420-04:24:21,308 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces
.brainmask.BinaryDilation>
260420-04:24:21,313 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces
.brainmask.BinaryDilation>
260420-04:24:21,321 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap
_mask" <sdcflows.interfaces.brainmask.BinaryDilation>
260420-04:24:21,473 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.15860
3s.
260420-04:24:21,915 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.59313
1s.
260420-04:24:21,921 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/fmapreg_wf/dila
te_fmap_mask".
260420-04:24:21,929 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/ds_fmapreg_wf/s
ources".
260420-04:24:21,932 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:24:21,933 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000494s.
26042
0-04:24:21,935 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_shar
edreward_run_02_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/ds_fmapreg_wf/source
s".
260420-04:24:21,937 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:24:21,938 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000465s.
260420-04:24:21,939 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/ds_fmapreg_wf/sources".
26042
0-04:24:21,940 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trus
t_run_02_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/ds_fmapreg_wf/sources".
260420-04:24:21,941 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/ds_fmapreg_wf/sources".
26042
0-04:24:21,942 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trus
t_run_04_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/ds_fmapreg_wf/sources".
260420-04:
24:21,942 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
2604
20-04:24:21,943 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI
>
260420-04:24:21,944 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000601s.
260
420-04:24:21,944 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000507s.
260420-0
4:24:21,946 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
26
0420-04:24:21,947 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSU
RI>
260420-04:24:21,948 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000495s.
26042
0-04:24:21,948 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000677s.
260420-04:24:21,960 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.fmapreg_wf.dilate_fmap_mask" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/fmapreg_wf/dila
te_fmap_mask".
260420-04:24:21,966 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.65696
9s.
260420-04:24:21,971 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces
.brainmask.BinaryDilation>
260420-04:24:22,4 nipype.workflow INFO:
	 [Node] Executing "dilate_fmap_mask" <sdcflows.interfaces.b
rainmask.BinaryDilation>
260420-04:24:22,87 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.115253
s.
260420-04:24:22,292 nipype.workflow INFO:
	 [Node] Finished "dilate_fmap_mask", elapsed time 0.28504
4s.
260420-04:24:24,56 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_05_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/ds_fmapreg_wf/sources".
260420
-04:24:24,58 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultima
tum_run_01_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/ds_fmapreg_wf/sources".
2604
20-04:24:24,58 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>

260420-04:24:24,59 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000524s.
26042
0-04:24:24,61 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultim
atum_run_02_wf.bold_fit_wf.ds_fmapreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/ds_fmapreg_wf/sources".
260420-04:24:24,61 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDS
URI>
260420-04:24:24,62 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_
task_sharedreward_run_02_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/fmapreg_wf/
coregister".
260420-04:24:24,62 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fma
preg_wf/coregister".
260420-04:24:24,63 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep
.interfaces.bids.BIDSURI>
260420-04:24:24,63 nipype.workflow INFO:
	 [Node] Finished "sources", elap
sed time 0.000836s.
260420-04:24:24,64 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed ti
me 0.000444s.
260420-04:24:24,64 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104
_wf.bold_task_trust_run_01_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/fmapreg_wf/coreg
ister".
260420-04:24:24,65 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_trust_run_03_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/fmapreg_wf/coregister"
.
260420-04:24:24,65 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_tas
k_trust_run_02_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/fmapreg_wf/coregister".
2604
20-04:24:24,66 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trus
t_run_04_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/fmapreg_wf/coregister".
260420-04:
24:24,66 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_
05_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/fmapreg_wf/coregister".
260420-04:24:24,70 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_01_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/fmapreg_wf/coregister"
.
260420-04:24:24,70 nipype.workflow INFO:
	 [Node] Executing "coregister" <niworkflows.interfaces.f
ixes.FixHeaderRegistration>
260420-04:24:24,72 nipype.workflow INFO:
	 [Node] Executing "coregister"
 <niworkflows.interfaces.fixes.FixHeaderRegistration>
260420-04:24:24,72 nipype.workflow INFO:
	 [No
de] Executing "coregister" <niworkflows.interfaces.fixes.FixHeaderRegistration>
260420-04:24:24,72 n
ipype.workflow INFO:
	 [Node] Executing "coregister" <niworkflows.interfaces.fixes.FixHeaderRegistra
tion>
260420-04:24:24,73 nipype.workflow INFO:
	 [Node] Executing "coregister" <niworkflows.interfac
es.fixes.FixHeaderRegistration>
260420-04:24:24,74 nipype.workflow INFO:
	 [Node] Executing "coregister" <niworkflows.interfaces.fix
es.FixHeaderRegistration>
260420-04:24:24,78 nipype.workflow INFO:
	 [Node] Executing "coregister" <
niworkflows.interfaces.fixes.FixHeaderRegistration>
260420-04:24:24,111 nipype.workflow INFO:
	 [Node] Executing "coregister" <niworkflows.interfaces.fi
xes.FixHeaderRegistration>
260420-04:24:26,6 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_u
ltimatum_run_02_wf.bold_fit_wf.fmapreg_wf.coregister" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/fmapreg_wf/coregister".
260420-04:24:26,15 nipype.workflow INFO:
	 [Node] Executing "coregister" <niworkflows.interfaces.fix
es.FixHeaderRegistration>
260420-04:24:26,26 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 1.946714s.
260420-04:24:26,147 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.034138s.
260420-04:24:26,306 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.230151s.
260420-04:24:26,543 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.468987s.
260420-04:24:26,693 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.619187s.
260420-04:24:26,951 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.880149s.
260420-04:24:26,963 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.889978s.
260420-04:24:27,370 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 3.296485s.
260420-04:24:27,904 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.itk_mat2txt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/itk_mat2txt".
260420-04:24:27,904 nipyp
e.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit
_wf.itk_mat2txt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bo
ld_task_trust_run_01_wf/bold_fit_wf/itk_mat2txt".
260420-04:24:27,904 nipype.workflow INFO:
	 [Node]
 Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.itk_mat2txt" i
n "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedrewa
rd_run_01_wf/bold_fit_wf/itk_mat2txt".
260420-04:24:27,906 nipype.workflow INFO:
	 [Node] Executing
"itk_mat2txt" <niworkflows.interfaces.nitransforms.ConcatenateXFMs>
260420-04:24:27,906 nipype.workf
low INFO:
	 [Node] Executing "itk_mat2txt" <niworkflows.interfaces.nitransforms.ConcatenateXFMs>
260
420-04:24:27,906 nipype.workflow INFO:
	 [Node] Executing "itk_mat2txt" <niworkflows.interfaces.nitr
ansforms.ConcatenateXFMs>
260420-04:24:27,907 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25
_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.itk_mat2txt" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/itk_mat2txt".

260420-04:24:27,908 nipype.workflow INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001171s.
260420-04:24:27,908 nipype.workflow INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001156s.
2
60420-04:24:27,908 nipype.workflow INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001159s.
260420-04:24:27,910 nipype.workflow INFO:
	 [Node] Executing "itk_mat2txt" <niworkflows.interfaces.n
itransforms.ConcatenateXFMs>
260420-04:24:27,911 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep
_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.itk_mat2txt" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit
_wf/itk_mat2txt".
260420-04:24:27,911 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.su
b_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.itk_mat2txt" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/itk_mat2txt".
260420-
04:24:27,911 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultima
tum_run_01_wf.bold_fit_wf.itk_mat2txt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/itk_mat2txt".
260420-04:24:27,911 nipy
pe.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.bold_fi
t_wf.itk_mat2txt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/b
old_task_trust_run_03_wf/bold_fit_wf/itk_mat2txt".
260420-04:24:27,912 nipype.workflow INFO:
	 [Node
] Finished "itk_mat2txt", elapsed time 0.001282s.
260420-04:24:27,913 nipype.workflow INFO:
	 [Node]
 Executing "itk_mat2txt" <niworkflows.interfaces.nitransforms.ConcatenateXFMs>
260420-04:24:27,913 n
ipype.workflow INFO:
	 [Node] Executing "itk_mat2txt" <niworkflows.interfaces.nitransforms.Concatena
teXFMs>
260420-04:24:27,914 nipype.workflow INFO:
	 [Node] Executing "itk_mat2txt" <niworkflows.inte
rfaces.nitransforms.ConcatenateXFMs>
260420-04:24:27,914 nipype.workflow INFO:
	 [Node] Executing "i
tk_mat2txt" <niworkflows.interfaces.nitransforms.ConcatenateXFMs>
260420-04:24:27,915 nipype.workflo
w INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001089s.
260420-04:24:27,915 nipype.workflow
 INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001187s.
260420-04:24:27,917 nipype.workflow
INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001641s.
260420-04:24:27,917 nipype.workflow I
NFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001641s.
260420-04:24:28,213 nipype.workflow INFO:
	 [Node] Finished "coregister", elapsed time 2.19718s.
260420-04:24:29,892 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.itk_mat2txt" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/itk_mat2txt".
260420-04:24:29,894 nipype.workflow INFO:
	 [Node] Executing "itk_mat2txt" <niworkflows.interfaces.n
itransforms.ConcatenateXFMs>
260420-04:24:29,895 nipype.workflow INFO:
	 [Node] Finished "itk_mat2txt", elapsed time 0.001098s.
260420-04:24:33,285 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/boldref_fmap".
260420-04:24:33,289 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:33,534 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/boldref_fmap".
260420-04:24:33,566 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:33,713 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.423575s.
260420-04:24:33,827 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/boldref_fmap".
260420-04:24:33,830 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:34,125 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.556062s.
260420-04:24:34,231 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.399539s.
260420-04:24:34,243 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/boldref_fmap".
260420-04:24:34,247 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:34,656 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.40652s.
260420-04:24:34,738 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/boldref_fmap".
260420-04:24:34,742 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:34,760 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/boldref_fmap".
260420-04:24:34,765 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:34,785 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/boldref_fmap".
260420-04:24:34,792 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:35,132 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.388768s.
260420-04:24:35,188 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/boldref_fmap".
260420-04:24:35,193 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:35,223 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.45673s.
260420-04:24:35,339 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.54588s.
260420-04:24:35,635 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.441228s.
260420-04:24:36,19 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_01_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/ds_coreg_b
oldref_wf/sources".
260420-04:24:36,22 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_02_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/ds_coreg_b
oldref_wf/sources".
260420-04:24:36,22 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.
interfaces.bids.BIDSURI>
260420-04:24:36,24 nipype.workflow INFO:
	 [Node] Finished "sources", elaps
ed time 0.000892s.
260420-04:24:36,26 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.su
b_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/ds_co
reg_boldref_wf/sources".
260420-04:24:36,26 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/unwarp_boldr
ef".
260420-04:24:36,26 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids
.BIDSURI>
260420-04:24:36,28 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces
.bids.BIDSURI>
260420-04:24:36,28 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.
001207s.
260420-04:24:36,29 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.00061s
.
260420-04:24:36,30 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_tas
k_trust_run_02_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/ds_coreg_boldref_wf/so
urces".
260420-04:24:36,30 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.inter
faces.resampling.ResampleSeries>
260420-04:24:36,32 nipype.workflow INFO:
	 [Node] Executing "source
s" <fmriprep.interfaces.bids.BIDSURI>
260420-04:24:36,34 nipype.workflow INFO:
	 [Node] Finished "so
urces", elapsed time 0.000774s.
260420-04:24:36,43 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_02_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/unwarp_boldref".
260420-04:24:36,47 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.interfaces.re
sampling.ResampleSeries>
260420-04:24:36,155 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/unwarp_boldref".
260420-04:24:36,159 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.interfaces.r
esampling.ResampleSeries>
260420-04:24:36,167 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/boldref_fmap".
260420-04:24:36,171 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:36,301 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.269465s
.
260420-04:24:36,410 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.251282s
.
260420-04:24:36,430 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.381647s
.
260420-04:24:36,572 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.399991s.
260420-04:24:37,719 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/unwarp_boldref".
26042
0-04:24:37,719 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trus
t_run_03_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/unwarp_boldref".
260420-04:24:37,722 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/ds_coreg_boldref_wf/sou
rces".
260420-04:24:37,722 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.inter
faces.resampling.ResampleSeries>
260420-04:24:37,724 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.interfaces.r
esampling.ResampleSeries>
260420-04:24:37,725 nipype.workflow INFO:
	 [Node] Executing "sources" <fm
riprep.interfaces.bids.BIDSURI>
260420-04:24:37,725 nipype.workflow INFO:
	 [Node] Setting-up "fmrip
rep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/unwa
rp_boldref".
260420-04:24:37,726 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104
_wf.bold_task_trust_run_04_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/ds_coreg_b
oldref_wf/sources".
260420-04:24:37,727 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed t
ime 0.000875s.
260420-04:24:37,729 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.inte
rfaces.bids.BIDSURI>
260420-04:24:37,729 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf
.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/unwarp_boldref"
.
260420-04:24:37,729 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.interfaces
.resampling.ResampleSeries>
260420-04:24:37,730 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_
25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovy
an/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fi
t_wf/ds_coreg_boldref_wf/sources".
260420-04:24:37,730 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.unwarp_boldref" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_
fit_wf/unwarp_boldref".
260420-04:24:37,730 nipype.workflow INFO:
	 [Node] Finished "sources", elaps
ed time 0.000804s.
260420-04:24:37,732 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.s
ub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.ds_coreg_boldref_wf.sources" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit
_wf/ds_coreg_boldref_wf/sources".
260420-04:24:37,732 nipype.workflow INFO:
	 [Node] Executing "sour
ces" <fmriprep.interfaces.bids.BIDSURI>
260420-04:24:37,733 nipype.workflow INFO:
	 [Node] Setting-u
p "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.unwarp_boldref" in "/home/j
ovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/
bold_fit_wf/unwarp_boldref".
260420-04:24:37,734 nipype.workflow INFO:
	 [Node] Executing "unwarp_bo
ldref" <fmriprep.interfaces.resampling.ResampleSeries>
260420-04:24:37,734 nipype.workflow INFO:
	 [
Node] Finished "sources", elapsed time 0.000754s.
260420-04:24:37,734 nipype.workflow INFO:
	 [Node]
 Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.ds_coreg_boldref_
wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_ta
sk_ultimatum_run_02_wf/bold_fit_wf/ds_coreg_boldref_wf/sources".
260420-04:24:37,737 nipype.workflow
 INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.interfaces.resampling.ResampleSeries>
260420-04
:24:37,737 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
260
420-04:24:37,739 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000841s.
260420-0
4:24:37,739 nipype.workflow INFO:
	 [Node] Executing "unwarp_boldref" <fmriprep.interfaces.resamplin
g.ResampleSeries>
260420-04:24:37,745 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:24:37,749 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000832s.
260420-04:24:38,57 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.315889s.
260420-04:24:38,84 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.359485s.
260420-04:24:38,93 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.363398s.
260420-04:24:38,135 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.400642s
.
260420-04:24:38,167 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.444081s
.
260420-04:24:38,228 nipype.workflow INFO:
	 [Node] Finished "unwarp_boldref", elapsed time 0.487406s
.
260420-04:24:43,411 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit
_wf/skullstrip_bold_wf/skullstrip_first_pass".
260420-04:24:43,413 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/ds_boldmask_wf
/sources".
260420-04:24:43,414 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/ds_boldreg_wf/s
ources".
260420-04:24:43,414 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:24:43,416 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:24:43,416 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bi
ds.BIDSURI>
260420-04:24:43,417 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000341s.
26042
0-04:24:43,417 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000312s.
260420-04:24:43,715 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/f
unc_fit_reports_wf/fmapref_boldref".
260420-04:24:43,719 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref" <niworkflows.interfac
es.fixes.FixHeaderApplyTransforms>
260420-04:24:43,994 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/func
_fit_reports_wf/fmap_boldref".
260420-04:24:43,998 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res
2/gen_ref".
260420-04:24:43,998 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_sharedreward_run_01_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_native_wf/boldre
f_fmap".
260420-04:24:43,998 nipype.workflow INFO:
	 [Node] Executing "fmap_boldref" <niworkflows.in
terfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:44,1 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_s
haredreward_run_02_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_w
f/skullstrip_bold_wf/skullstrip_first_pass".
260420-04:24:44,1 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_s
haredreward_run_02_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/ds_boldmask_wf/s
ources".
260420-04:24:44,2 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfa
ces.resampling.ReconstructFieldmap>
260420-04:24:44,4 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interface
s.fsl.preprocess.BET>
260420-04:24:44,4 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSU
RI>
260420-04:24:44,5 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000415s.
260420-04:24:44,5 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_s
haredreward_run_02_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/ds_boldreg_wf/sou
rces".
260420-04:24:44,6 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold
_task_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit
_wf/func_fit_reports_wf/fmapref_boldref".
260420-04:24:44,8 nipype.workflow INFO:
	 [Node] Executing
 "sources" <fmriprep.interfaces.bids.BIDSURI>
260420-04:24:44,9 nipype.workflow INFO:
	 [Node] Finis
hed "sources", elapsed time 0.000324s.
260420-04:24:44,10 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref" <niworkflows.interface
s.fixes.FixHeaderApplyTransforms>
260420-04:24:44,12 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibabe
l.GenerateSamplingReference>
260420-04:24:44,14 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.000195s.
260420-04:24:44,666 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.663593s.
260420-04:24:44,988 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.268067
s.
260420-04:24:45,250 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.251046s.
260420-04:24:45,372 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 1.
9498199999999999s.
260420-04:24:45,482 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.470472
s.
260420-04:24:45,698 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/func
_fit_reports_wf/fmap_boldref".
260420-04:24:45,701 nipype.workflow INFO:
	 [Node] Setting-up "fmripr
ep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_native_wf.boldref_fmap" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bo
ld_native_wf/boldref_fmap".
260420-04:24:45,701 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res
2/gen_ref".
260420-04:24:45,702 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_trust_run_01_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/
trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_w
f/skullstrip_bold_wf/skullstrip_first_pass".
260420-04:24:45,702 nipype.workflow INFO:
	 [Node] Exec
uting "fmap_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:45,704 nip
ype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.resampling.ReconstructFiel
dmap>
260420-04:24:45,704 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.i
nterfaces.fsl.preprocess.BET>
260420-04:24:45,706 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/ds_boldmask_wf/sources".
260
420-04:24:45,709 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSUR
I>
260420-04:24:45,709 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_trust_run_01_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/ds_boldreg_wf/sources".
26
0420-04:24:45,710 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_t
rust_run_01_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_
wf/fmapref_boldref".
260420-04:24:45,710 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed
time 0.000491s.
260420-04:24:45,712 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.int
erfaces.bids.BIDSURI>
260420-04:24:45,714 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000465s.
26042
0-04:24:45,717 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-04:24:45,726 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-04:24:45,727 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.000135s.
260420-04:24:46,204 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.499846s.
260420-04:24:46,306 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
3009399999999998s.
260420-04:24:46,953 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.249593s.
260420-04:24:47,190 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.472119
s.
260420-04:24:47,478 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_w
f/fmap_boldref".
260420-04:24:47,481 nipype.workflow INFO:
	 [Node] Executing "fmap_boldref" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-04:24:47,481 nipype.workflow INFO:
	 [Node] Setting-up "fmrip
rep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_native_wf/
boldref_fmap".
260420-04:24:47,485 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep
.interfaces.resampling.ReconstructFieldmap>
260420-04:24:47,486 nipype.workflow INFO:
	 [Node] Setti
ng-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_std_wf.gen_ref" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_std_wf
/_in_tuple_MNI152NLin6Asym.res2/gen_ref".
260420-04:24:47,489 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/skullstrip
_bold_wf/skullstrip_first_pass".
260420-04:24:47,492 nipype.workflow INFO:
	 [Node] Executing "skull
strip_first_pass" <nipype.interfaces.fsl.preprocess.BET>
260420-04:24:47,493 nipype.workflow INFO:
 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.ds_boldmask_wf
.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task
_trust_run_02_wf/bold_fit_wf/ds_boldmask_wf/sources".
260420-04:24:47,496 nipype.workflow INFO:
	 [N
ode] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
260420-04:24:47,497 nipype.workflow INFO
:
	 [Node] Finished "sources", elapsed time 0.000315s.
260420-04:24:47,498 nipype.workflow INFO:
	 [
Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.ds_boldreg_wf.so
urces" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_tr
ust_run_02_wf/bold_fit_wf/ds_boldreg_wf/sources".
260420-04:24:47,500 nipype.workflow INFO:
	 [Node]
 Executing "gen_ref" <niworkflows.interfaces.nibabel.GenerateSamplingReference>
260420-04:24:47,501
nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
260420-04:24:4
7,501 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.000341s.
260420-04:24:47,503
 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000512s.
260420-04:24:47,719 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
013486s.
260420-04:24:47,851 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_report
s_wf/fmapref_boldref".
260420-04:24:47,853 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_w
f/fmap_boldref".
260420-04:24:47,857 nipype.workflow INFO:
	 [Node] Executing "fmap_boldref" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-04:24:47,858 nipype.workflow INFO:
	 [Node] Setting-up "fmrip
rep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_native_wf/
boldref_fmap".
260420-04:24:47,865 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:47,870 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref" <niworkflows.interfac
es.fixes.FixHeaderApplyTransforms>
260420-04:24:48,26 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.540855s.
260420-04:24:48,324 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.458165s.
260420-04:24:48,732 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.250033999
9999999s.
260420-04:24:49,254 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.382538
s.
260420-04:24:49,750 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/gen_ref".
260420-04:24:49,753 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/skullstrip
_bold_wf/skullstrip_first_pass".
260420-04:24:49,757 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/ds_boldmask_wf/sources".
260
420-04:24:49,758 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfaces
.fsl.preprocess.BET>
260420-04:24:49,760 nipype.workflow INFO:
	 [Node] Executing "sources" <fmripre
p.interfaces.bids.BIDSURI>
260420-04:24:49,761 nipype.workflow INFO:
	 [Node] Finished "sources", el
apsed time 0.00038s.
260420-04:24:49,761 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf
.sub_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/ds_boldr
eg_wf/sources".
260420-04:24:49,762 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_
104_wf.bold_task_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf
/func_fit_reports_wf/fmapref_boldref".
260420-04:24:49,764 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_native_wf/boldref_fmap".
260420-04:24:49,7
64 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
260420-04:2
4:49,765 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000349s.
260420-04:24:49,
765 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf
.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/bold_task_trust_run_03_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/gen_ref".
260420-04:24:49,76
6 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibabel.GenerateSamplin
gReference>
260420-04:24:49,767 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_f
it_reports_wf/fmap_boldref".
260420-04:24:49,767 nipype.workflow INFO:
	 [Node] Finished "gen_ref",
elapsed time 0.00019s.
260420-04:24:49,769 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-04:24:49,770 nipype.workflow INFO:
	 [Node] Finished "gen_ref",
 elapsed time 0.000157s.
260420-04:24:49,771 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldr
ef" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:49,771 nipype.workflow INFO
:
	 [Node] Executing "fmap_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-0
4:24:49,772 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.resampling.
ReconstructFieldmap>
260420-04:24:49,794 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.935455999
9999998s.
260420-04:24:50,166 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.39294s.
260420-04:24:50,260 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
766682s.
260420-04:24:51,58 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.286812s.
260420-04:24:51,280 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.508559
s.
260420-04:24:51,446 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/skullstrip
_bold_wf/skullstrip_first_pass".
260420-04:24:51,447 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/ds_boldmask_wf/sources".
260
420-04:24:51,448 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_tr
ust_run_04_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/ds_boldreg_wf/sources".
260420-0
4:24:51,448 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfaces.fsl.
preprocess.BET>
260420-04:24:51,451 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.int
erfaces.bids.BIDSURI>
260420-04:24:51,451 nipype.workflow INFO:
	 [Node] Executing "sources" <fmripr
ep.interfaces.bids.BIDSURI>
260420-04:24:51,452 nipype.workflow INFO:
	 [Node] Finished "sources", e
lapsed time 0.000422s.
260420-04:24:51,453 nipype.workflow INFO:
	 [Node] Finished "sources", elapse
d time 0.000618s.
260420-04:24:51,754 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_report
s_wf/fmapref_boldref".
260420-04:24:51,755 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_
wf.sub_104_wf.bold_task_trust_run_04_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_native_wf/boldref_f
map".
260420-04:24:51,755 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bol
d_task_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_rep
orts_wf/fmap_boldref".
260420-04:24:51,758 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_
wf.sub_104_wf.bold_task_trust_run_04_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_std_wf/_in_tuple_MNI152NLin
6Asym.res2/gen_ref".
260420-04:24:51,758 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref"
<niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:51,758 nipype.workflow INFO:
[Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.skullstrip_bold
_wf.skullstrip_first_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub
_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/skullstrip_bold_wf/skullstrip_first_pass".
260420-04:2
4:51,758 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_
05_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/ds_boldmask_wf/sources".
260420-04:24:5
1,759 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.resampling.Recons
tructFieldmap>
260420-04:24:51,761 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass"
<nipype.interfaces.fsl.preprocess.BET>
260420-04:24:51,761 nipype.workflow INFO:
	 [Node] Executing
"sources" <fmriprep.interfaces.bids.BIDSURI>
260420-04:24:51,762 nipype.workflow INFO:
	 [Node] Fini
shed "sources", elapsed time 0.000383s.
260420-04:24:51,764 nipype.workflow INFO:
	 [Node] Executing
 "fmap_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:51,776 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-04:24:51,777 nipype.workflow INFO:
	 [Node] Finished "gen_ref",
 elapsed time 0.00012s.
260420-04:24:52,19 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.2
60259s.
260420-04:24:52,225 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.465218s.
260420-04:24:52,956 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.197344
9999999999s.
260420-04:24:53,60 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.294915s.
260420-04:24:53,856 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
406703s.
260420-04:24:54,25 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.2
62684s.
260420-04:24:54,45 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_05_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/ds_boldreg_wf/sources".
260420-04:24:54,48 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BIDS
URI>
260420-04:24:54,49 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000326s.
2
60420-04:24:54,50 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_t
rust_run_05_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_wf/
fmap_boldref".
260420-04:24:54,50 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_10
4_wf.bold_task_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/f
unc_fit_reports_wf/fmapref_boldref".
260420-04:24:54,50 nipype.workflow INFO:
	 [Node] Setting-up "f
mriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_native
_wf/boldref_fmap".
260420-04:24:54,50 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.su
b_104_wf.bold_task_trust_run_05_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym
.res2/gen_ref".
260420-04:24:54,53 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_1
04_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pass" in "/home/
jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf
/bold_fit_wf/skullstrip_bold_wf/skullstrip_first_pass".
260420-04:24:54,53 nipype.workflow INFO:
	 [
Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.ds_boldmask_
wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_ta
sk_ultimatum_run_01_wf/bold_fit_wf/ds_boldmask_wf/sources".
260420-04:24:54,54 nipype.workflow INFO:

	 [Node] Executing "fmap_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04
:24:54,54 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.resampling.Re
constructFieldmap>
260420-04:24:54,54 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref" <ni
workflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:54,55 nipype.workflow INFO:
	 [Nod
e] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.func_fit_report
s_wf.fmapref_boldref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_reports_wf/fmapref_boldref".
260420-04:24:54,5
5 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_
wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/ds_boldreg_wf/sources".
260420-04:24:54
,56 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfaces.fsl.preproce
ss.BET>
260420-04:24:54,56 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.b
ids.BIDSURI>
260420-04:24:54,57 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.00
0376s.
260420-04:24:54,58 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bi
ds.BIDSURI>
260420-04:24:54,58 nipype.workflow INFO:
	 [Node] Executing "fmapref_boldref" <niworkflo
ws.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:54,59 nipype.workflow INFO:
	 [Node] Fini
shed "sources", elapsed time 0.000589s.
260420-04:24:54,163 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-04:24:54,164 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.000167s.
260420-04:24:54,491 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.436055s.
260420-04:24:55,332 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.273072
s.
260420-04:24:55,425 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.370648s.
260420-04:24:55,492 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.436289
s.
260420-04:24:55,498 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_r
eports_wf/fmap_boldref".
260420-04:24:55,498 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_native_wf/boldref_fmap".
260420-04:24:55,501 nipype.workflow INFO:
	 [Node] Executing "fmap_boldref" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-04:24:55,501 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/gen_
ref".
260420-04:24:55,502 nipype.workflow INFO:
	 [Node] Executing "boldref_fmap" <fmriprep.interfaces.res
ampling.ReconstructFieldmap>
260420-04:24:55,503 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep
_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_first_pa
ss" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultim
atum_run_02_wf/bold_fit_wf/skullstrip_bold_wf/skullstrip_first_pass".
260420-04:24:55,505 nipype.workflow INFO:
	 [Node] Executing "skullstrip_first_pass" <nipype.interfa
ces.fsl.preprocess.BET>
260420-04:24:55,506 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.ds_boldreg_wf.sources" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/ds_boldreg_wf/sources
".
260420-04:24:55,506 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_ultimatum_run_02_wf.bold_fit_wf.ds_boldmask_wf.sources" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/ds_boldmask_wf/so
urces".
260420-04:24:55,509 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-04:24:55,510 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bi
ds.BIDSURI>
260420-04:24:55,510 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.00
0436s.
260420-04:24:55,512 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.000633s
.
260420-04:24:55,521 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-04:24:55,522 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.000126s.
260420-04:24:55,846 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.fmapref_boldref" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fi
t_reports_wf/fmapref_boldref".
260420-04:24:55,851 nipype.workflow INFO:
	 [Node] Executing "fmapref
_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-04:24:55,934 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.430931s.
260420-04:24:56,731 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.
673343s.
260420-04:24:56,826 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.324666000
0000001s.
260420-04:24:57,392 nipype.workflow INFO:
	 [Node] Finished "fmapref_boldref", elapsed time 1.540242
s.
260420-04:24:57,458 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.fmap_boldref" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_r
eports_wf/fmap_boldref".
260420-04:24:57,458 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_
2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_native_wf.boldref_fmap" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_native_wf
/boldref_fmap".
260420-04:24:57,461 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_std_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/gen_
ref".
260420-04:24:57,462 nipype.workflow INFO:
	 [Node] Executing "fmap_boldref" <niworkflows.inter
faces.fixes.FixHeaderApplyTransforms>
260420-04:24:57,462 nipype.workflow INFO:
	 [Node] Executing "
boldref_fmap" <fmriprep.interfaces.resampling.ReconstructFieldmap>
260420-04:24:57,462 nipype.workfl
ow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_
wf.skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/skullstrip_bold_wf/skullstri
p_second_pass".
260420-04:24:57,464 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.
interfaces.nibabel.GenerateSamplingReference>
260420-04:24:57,465 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interf
aces.afni.preprocess.Automask>
260420-04:24:57,465 nipype.workflow INFO:
	 [Node] Finished "gen_ref"
, elapsed time 0.000125s.
260420-04:24:57,465 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25
_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_native_wf.boldref_bold" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_na
tive_wf/boldref_bold".
260420-04:24:57,467 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_
wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_second_pass
" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedr
eward_run_02_wf/bold_fit_wf/skullstrip_bold_wf/skullstrip_second_pass".
260420-04:24:57,468 nipype.w
orkflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold
_native_wf.boldref_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/bold_task_sharedreward_run_02_wf/bold_native_wf/boldref_bold".
260420-04:24:57,469 nipype.work
flow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfaces.afni.preprocess.Automask>
260420-04:24:57,469 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/skullstri
p_bold_wf/skullstrip_second_pass".
260420-04:24:57,470 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_native_wf.boldref_bold" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_native_
wf/boldref_bold".
260420-04:24:57,470 nipype.workflow INFO:
	 [Node] Executing "boldref_bold" <fmrip
rep.interfaces.resampling.ResampleSeries>
260420-04:24:57,472 nipype.workflow INFO:
	 [Node] Executi
ng "skullstrip_second_pass" <nipype.interfaces.afni.preprocess.Automask>
260420-04:24:57,479 nipype.workflow INFO:
	 [Node] Executing "boldref_bold" <fmriprep.interfaces.res
ampling.ResampleSeries>
260420-04:24:57,481 nipype.workflow INFO:
	 [Node] Executing "boldref_bold" <fmriprep.interfaces.res
ampling.ResampleSeries>
260420-04:24:57,797 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.331421s.
260420-04:24:57,850 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.380373s.
260420-04:24:57,970 nipype.workflow INFO:
	 [Node] Finished "boldref_fmap", elapsed time 0.507404s.
260420-04:24:57,978 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.50553s.
260420-04:24:58,54 nipype.workflow INFO:
	 [Node] Finished "skullstrip_first_pass", elapsed time 2.5
47962s.
260420-04:24:59,22 nipype.workflow INFO:
	 [Node] Finished "fmap_boldref", elapsed time 1.558938s.
260420-04:24:59,513 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/skullstri
p_bold_wf/skullstrip_second_pass".
260420-04:24:59,513 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_native_wf.boldref_bold" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_native_
wf/boldref_bold".
260420-04:24:59,513 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.su
b_104_wf.bold_task_trust_run_03_wf.bold_native_wf.boldref_bold" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_native_wf/boldref_bold".

260420-04:24:59,513 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_tas
k_trust_run_03_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/skullstr
ip_bold_wf/skullstrip_second_pass".
260420-04:24:59,514 nipype.workflow INFO:
	 [Node] Setting-up "f
mriprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_secon
d_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_t
rust_run_04_wf/bold_fit_wf/skullstrip_bold_wf/skullstrip_second_pass".
260420-04:24:59,515 nipype.wo
rkflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfaces.afni.preprocess.Automask
>
260420-04:24:59,516 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.inte
rfaces.afni.preprocess.Automask>
260420-04:24:59,517 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_native_wf.boldref_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_native_wf/boldref_bold".
260420-04:24:59,5
18 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfaces.afni.preproc
ess.Automask>
260420-04:24:59,518 nipype.workflow INFO:
	 [Node] Executing "boldref_bold" <fmriprep.
interfaces.resampling.ResampleSeries>
260420-04:24:59,521 nipype.workflow INFO:
	 [Node] Executing "
boldref_bold" <fmriprep.interfaces.resampling.ResampleSeries>
260420-04:24:59,522 nipype.workflow IN
FO:
	 [Node] Executing "boldref_bold" <fmriprep.interfaces.resampling.ResampleSeries>
260420-04:24:59,533 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/skullstri
p_bold_wf/skullstrip_second_pass".
260420-04:24:59,533 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_se
cond_pass" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_tas
k_ultimatum_run_01_wf/bold_fit_wf/skullstrip_bold_wf/skullstrip_second_pass".
260420-04:24:59,536 ni
pype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipype.interfaces.afni.preprocess.A
utomask>
260420-04:24:59,536 nipype.workflow INFO:
	 [Node] Executing "skullstrip_second_pass" <nipy
pe.interfaces.afni.preprocess.Automask>
260420-04:24:59,914 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.395531s.
260420-04:24:59,976 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.439184s.
260420-04:25:00,59 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0.
522587s.
260420-04:25:00,92 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0.
576332s.
260420-04:25:00,132 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.615114s.
260420-04:25:01,662 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_native_wf.boldref_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_native_wf/boldref_bold".
260420-04:25:01,6
65 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02
_wf.bold_fit_wf.skullstrip_bold_wf.skullstrip_second_pass" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/skullstrip_bold_wf
/skullstrip_second_pass".
260420-04:25:01,667 nipype.workflow INFO:
	 [Node] Executing "boldref_bold
" <fmriprep.interfaces.resampling.ResampleSeries>
260420-04:25:01,668 nipype.workflow INFO:
	 [Node]
 Executing "skullstrip_second_pass" <nipype.interfaces.afni.preprocess.Automask>
260420-04:25:02,132 nipype.workflow INFO:
	 [Node] Finished "skullstrip_second_pass", elapsed time 0
.4638s.
260420-04:25:03,471 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/skul
lstrip_bold_wf/combine_masks".
260420-04:25:03,474 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.
maths.BinaryMaths>
260420-04:25:04,160 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.682688s.
260420-04:25:05,577 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/skul
lstrip_bold_wf/combine_masks".
260420-04:25:05,580 nipype.workflow INFO:
	 [Node] Executing "combine
_masks" <nipype.interfaces.fsl.maths.BinaryMaths>
260420-04:25:06,160 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.578729s.
260420-04:25:07,826 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/skullstrip_bold_wf
/combine_masks".
260420-04:25:07,833 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.
maths.BinaryMaths>
260420-04:25:08,651 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.816823s.
260420-04:25:09,739 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/skullstrip_bold_wf
/combine_masks".
260420-04:25:09,742 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.
maths.BinaryMaths>
260420-04:25:10,107 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.363998s.
260420-04:25:11,582 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/skullstrip_bold_wf
/combine_masks".
260420-04:25:11,585 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipyp
e.interfaces.fsl.maths.BinaryMaths>
260420-04:25:12,452 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.866749s.
260420-04:25:13,525 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/skullstrip_bold_wf
/combine_masks".
260420-04:25:13,528 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipyp
e.interfaces.fsl.maths.BinaryMaths>
260420-04:25:14,248 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.719507s.
260420-04:25:15,502 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/skullstrip_bold_wf
/combine_masks".
260420-04:25:15,505 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipyp
e.interfaces.fsl.maths.BinaryMaths>
260420-04:25:16,97 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.591383s.
260420-04:25:17,509 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/skullstrip
_bold_wf/combine_masks".
260420-04:25:17,513 nipype.workflow INFO:
	 [Node] Executing "combine_masks
" <nipype.interfaces.fsl.maths.BinaryMaths>
260420-04:25:18,211 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.692975s.
260420-04:25:19,561 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.skullstrip_bold_wf.combine_masks" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/skullstrip
_bold_wf/combine_masks".
260420-04:25:19,565 nipype.workflow INFO:
	 [Node] Executing "combine_masks" <nipype.interfaces.fsl.
maths.BinaryMaths>
260420-04:25:20,330 nipype.workflow INFO:
	 [Node] Finished "combine_masks", elapsed time 0.76426s.
260420-04:25:21,705 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/skullst
rip_bold_wf/apply_mask".
260420-04:25:21,708 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <
niworkflows.interfaces.nibabel.ApplyMask>
260420-04:25:21,751 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.042521s.
260420-04:25:23,674 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/sku
llstrip_bold_wf/mask_reportlet".
260420-04:25:23,694 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:31,62 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 7.3602s.
260420-04:25:31,847 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-sharedreward_run-01_desc-brain_mask.nii.gz dtype from float32 to floa
t32
260420-04:25:32,434 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/skullst
rip_bold_wf/apply_mask".
260420-04:25:32,437 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:25:32,503 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.065811s.
260420-04:25:33,735 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/sku
llstrip_bold_wf/mask_reportlet".
260420-04:25:33,753 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:41,290 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 7.534085s
.
260420-04:25:43,837 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-sharedreward_run-02_desc-brain_mask.nii.gz dtype from float32 to floa
t32
260420-04:25:44,246 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/skullstrip_bold_wf/ap
ply_mask".
260420-04:25:44,248 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:25:44,299 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.050384s.
260420-04:25:45,686 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/skullstrip_bold_w
f/mask_reportlet".
260420-04:25:45,689 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <ni
workflows.interfaces.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:47,553 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 50.081833s.
260420-04:25:48,353 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 50.870991s.
260420-04:25:49,642 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_native_wf.boldref_bold" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_native_wf/boldref_bold".
260420-04:25:49,646 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_native_wf.boldref_bold" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_native_wf/boldref_bold".
260420-04:25:49,653 nipype.workflow INFO:
	 [Node] Executing "boldref_bold" <fmriprep.interfaces.res
ampling.ResampleSeries>
260420-04:25:49,662 nipype.workflow INFO:
	 [Node] Executing "boldref_bold" <fmriprep.interfaces.res
ampling.ResampleSeries>
260420-04:25:52,120 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 52.597744s.
260420-04:25:52,276 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 6.586888s
.
260420-04:25:53,10 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 51.342785s.
260420-04:25:53,562 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-01_desc-brain_mask.nii.gz dtype from float32 to float32
260420-04:25:53,711 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 56.23101s.
260420-04:25:53,894 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/skullstrip_bold_wf/ap
ply_mask".
260420-04:25:53,895 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/deriv
atives/fmriprep/sub-104/func/sub-104_task-trust_run-02_desc-brain_mask.nii.gz dtype from float32 to
float32
260420-04:25:53,897 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:25:53,911 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/skullstrip_bold_w
f/mask_reportlet".
260420-04:25:53,914 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:53,986 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.083872s.
260420-04:25:54,237 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/skullstrip_bold_wf/ap
ply_mask".
260420-04:25:54,241 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:25:54,243 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/
skullstrip_bold_wf/mask_reportlet".
260420-04:25:54,246 nipype.workflow INFO:
	 [Node] Executing "ma
sk_reportlet" <niworkflows.interfaces.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:54,251 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-03_desc-brain_mask.nii.gz dtype from float32 to float32
260420-04:25:54,315 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.073033s.
260420-04:25:54,892 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 55.373363s.
260420-04:25:54,901 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/skullstrip_bold_wf/ap
ply_mask".
260420-04:25:54,904 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.in
terfaces.nibabel.ApplyMask>
260420-04:25:54,972 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.06222s.
260420-04:25:55,697 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-04_desc-brain_mask.nii.gz dtype from float32 to float32
260420-04:25:56,171 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/skullstrip_bold_wf/ap
ply_mask".
260420-04:25:56,174 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:25:56,183 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/
skullstrip_bold_wf/mask_reportlet".
260420-04:25:56,186 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:56,202 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-05_desc-brain_mask.nii.gz dtype from float32 to float32
260420-04:25:56,230 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.054475s.
260420-04:25:56,733 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/skullstrip_bo
ld_wf/apply_mask".
260420-04:25:56,736 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niwork
flows.interfaces.nibabel.ApplyMask>
260420-04:25:56,747 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/skullstri
p_bold_wf/mask_reportlet".
260420-04:25:56,751 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:56,764 nipype.interface WARNING:
	 Changing /home
/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-ultimatum_run-01_desc-brain_mas
k.nii.gz dtype from float32 to float32
260420-04:25:56,813 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.076347s.
260420-04:25:57,166 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 57.643529s.
260420-04:25:57,662 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.skullstrip_bold_wf.apply_mask" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/skullstrip_bo
ld_wf/apply_mask".
260420-04:25:57,665 nipype.workflow INFO:
	 [Node] Executing "apply_mask" <niworkflows.interfaces.ni
babel.ApplyMask>
260420-04:25:57,709 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/skullstri
p_bold_wf/mask_reportlet".
260420-04:25:57,712 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:57,720 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-ultimatum_run-02_desc-brain_mask.nii.gz dtype from float32 to float32
260420-04:25:57,756 nipype.workflow INFO:
	 [Node] Finished "apply_mask", elapsed time 0.089689s.
260420-04:25:58,238 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/dvars".
260420-04:25:58,241 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:25:59,253 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.skullstrip_bold_wf.mask_reportlet" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/skullstrip_bold_w
f/mask_reportlet".
260420-04:25:59,256 nipype.workflow INFO:
	 [Node] Executing "mask_reportlet" <niworkflows.interface
s.reportlets.masks.SimpleShowMaskRPT>
260420-04:25:59,596 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/tcompcor".
260420-04:25:59,602 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:00,395 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 6.481023s
.
260420-04:26:01,905 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/fun
c_fit_reports_wf/sdcreg_report".
260420-04:26:01,912 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:02,11 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 7.76397000
00000005s.
260420-04:26:02,516 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 2.913308s.
260420-04:26:03,543 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 6.7903459
999999995s.
260420-04:26:03,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/dvars".
260420-04:26:03,681 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:26:03,682 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_sharedreward_run_02_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/tcom
pcor".
260420-04:26:03,685 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:04,233 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 8.045712s
.
260420-04:26:04,784 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 7.071711s
.
260420-04:26:04,935 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fun
c_fit_reports_wf/sdcreg_report".
260420-04:26:04,947 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:05,635 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_
wf/sdcreg_report".
260420-04:26:05,639 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_
wf/sdcreg_report".
260420-04:26:05,640 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:05,642 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_
wf/sdcreg_report".
260420-04:26:05,647 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:05,649 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:06,958 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 3.271055s.
260420-04:26:07,770 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/dvars".
260420-04:26:07,774 nipyp
e.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.ComputeDVARS>
260420-04:26:14,675 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 16.429614s.
260420-04:26:15,761 nipype.workflow INFO:
	 [Node] Finished "mask_reportlet", elapsed time 16.50387s
.
260420-04:26:15,871 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/tcompcor".
260420-04:26:15,875 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:17,995 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_reports_
wf/sdcreg_report".
260420-04:26:18,7 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.repo
rtlets.FieldmapReportlet>
260420-04:26:18,493 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 14.810598s.
260420-04:26:19,647 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 3.771134s.
260420-04:26:19,686 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/dvars".
260420-04:26:19,689 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:26:21,854 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/tcompcor".
260420-04:26:21,860 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:22,686 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 14.910484s.
260420-04:26:23,579 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 21.664881s
.
260420-04:26:23,819 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/dvars".
260420-04:26:23,824 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:26:25,592 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 19.942082s
.
260420-04:26:25,601 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 3.733777s.
260420-04:26:25,778 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_
wf/sdcreg_report".
260420-04:26:25,783 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:26,540 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 20.899073s
.
260420-04:26:26,660 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 21.70928s.
260420-04:26:27,682 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_
reports_wf/sdcreg_report".
260420-04:26:27,686 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:27,688 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/
func_fit_reports_wf/ds_sdcreg_report".
260420-04:26:27,694 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-04:26:27,700 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/tcompcor".
260420-04:26:27,706 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:27,711 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.sdcreg_report" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_
reports_wf/sdcreg_report".
260420-04:26:27,714 nipype.workflow INFO:
	 [Node] Executing "sdcreg_report" <sdcflows.interfaces.re
portlets.FieldmapReportlet>
260420-04:26:27,742 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.04586
6s.
260420-04:26:27,755 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 22.106643s
.
260420-04:26:30,736 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 3.027151s.
260420-04:26:32,281 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 12.591089s.
260420-04:26:32,458 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/dvars".
260420-04:26:32,461 nipyp
e.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.ComputeDVARS>
260420-04:26:34,516 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/tcc_m
etadata_filter".
260420-04:26:34,521 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-04:26:34,551 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.02
9763s.
260420-04:26:34,670 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/tcompcor".
260420-04:26:34,673 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:36,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/
func_fit_reports_wf/ds_sdcreg_report".
260420-04:26:36,689 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-04:26:36,732 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.04199
8s.
260420-04:26:37,151 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 13.325795s.
260420-04:26:38,365 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 20.356988s
.
260420-04:26:38,515 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 3.840729s.
260420-04:26:38,972 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/dvars".
260420-04:26:38,972 nipyp
e.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.b
old_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/tcc_metadata_filter".
260420-04:26:38,975 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:26:38,980 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-04:26:39,15 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.033
93s.
260420-04:26:40,650 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/tcompcor".
260420-04:26:40,654 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_repor
ts_wf/ds_sdcreg_report".
260420-04:26:40,654 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:40,655 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.
sub_104_wf.bold_task_trust_run_01_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf
/tcc_metadata_filter".
260420-04:26:40,657 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fi
lter" <fmriprep.interfaces.confounds.FilterDropped>
260420-04:26:40,659 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-04:26:40,679 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.02
1021s.
260420-04:26:40,705 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.04538
5s.
260420-04:26:42,564 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_repor
ts_wf/ds_sdcreg_report".
260420-04:26:42,565 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/tcc_metadata_filter
".
260420-04:26:42,568 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-04:26:42,572 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-04:26:42,576 nipype.workflow INFO:
	 [Node] Finished "tcc_metada
ta_filter", elapsed time 0.003254s.
260420-04:26:42,584 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.01569
4s.
260420-04:26:43,340 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 2.685117s.
260420-04:26:43,855 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 54.191463s.
260420-04:26:44,413 nipype.workflow INFO:
	 [Node] Finished "boldref_bold", elapsed time 54.758927s.
260420-04:26:44,465 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/dvars".
260420-04:26:44,469 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:26:44,470 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_ultimatum_run_02_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/tcompcor".
260420-04:26:44,473 nipype.workflow INFO:
	 [Node] Executing "tcompcor" <niworkflows.interfaces.patc
hes.RobustTCompCor>
260420-04:26:44,563 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 18.779633s
.
260420-04:26:45,790 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 13.328548s.
260420-04:26:46,687 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 2.209145s.
260420-04:26:46,769 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 19.054146s
.
260420-04:26:46,879 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.dvars" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/dvars".
260420-04:26:46,8
79 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.
bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_wf/ds_sdcreg_r
eport".
260420-04:26:46,882 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/tcc_metadata_filter
".
260420-04:26:46,882 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_re
ports_wf/ds_sdcreg_report".
260420-04:26:46,883 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_
report" <fmriprep.interfaces.DerivativesDataSink>
260420-04:26:46,886 nipype.workflow INFO:
	 [Node] Executing "dvars" <nipype.algorithms.confounds.Co
mputeDVARS>
260420-04:26:46,890 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_filter" <fmri
prep.interfaces.confounds.FilterDropped>
260420-04:26:46,891 nipype.workflow INFO:
	 [Node] Executin
g "ds_sdcreg_report" <fmriprep.interfaces.DerivativesDataSink>
260420-04:26:46,895 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.00
4205s.
260420-04:26:46,919 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.02666
6s.
260420-04:26:46,919 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.03515
8s.
260420-04:26:47,310 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/tcc_metadata_filter
".
260420-04:26:47,311 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_repor
ts_wf/ds_sdcreg_report".
260420-04:26:47,316 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_rep
ort" <fmriprep.interfaces.DerivativesDataSink>
260420-04:26:47,324 nipype.workflow INFO:
	 [Node] Ex
ecuting "tcc_metadata_filter" <fmriprep.interfaces.confounds.FilterDropped>
260420-04:26:47,332 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.01505
7s.
260420-04:26:47,338 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.01
3689s.
260420-04:26:47,918 nipype.workflow INFO:
	 [Node] Finished "sdcreg_report", elapsed time 20.231174s
.
260420-04:26:48,633 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.tcompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/tcompcor".
260420-04:2
6:48,633 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_
05_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/tcc_metadata_filter".
260420-04:26:48,634 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_sdcreg_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_f
it_reports_wf/ds_sdcreg_report".
260420-04:26:48,634 nipype.workflow INFO:
	 [Node] Setting-up "fmri
prep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_confounds_wf.tcc_metadata_filter" in "/ho
me/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02
_wf/bold_confounds_wf/tcc_metadata_filter".
260420-04:26:48,634 nipype.workflow INFO:
	 [Node] Setti
ng-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_
sdcreg_report" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold
_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_reports_wf/ds_sdcreg_report".
260420-04:26:48,635 nip
ype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf
.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_2
5_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/tcc_metadata_fmt".
260420-04:26
:48,636 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_filter" <fmriprep.interfaces.confound
s.FilterDropped>
260420-04:26:48,636 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_sharedreward_run_02_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_conf
ounds_wf/tcc_metadata_fmt".
260420-04:26:48,636 nipype.workflow INFO:
	 [Node] Executing "tcompcor"
<niworkflows.interfaces.patches.RobustTCompCor>
260420-04:26:48,636 nipype.workflow INFO:
	 [Node] E
xecuting "tcc_metadata_filter" <fmriprep.interfaces.confounds.FilterDropped>
260420-04:26:48,637 nip
ype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt" <niworkflows.interfaces.utility.TSV2JSON>
260420-04:26:48,638 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-04:26:48,639 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt
" <niworkflows.interfaces.utility.TSV2JSON>
260420-04:26:48,644 nipype.workflow INFO:
	 [Node] Finis
hed "tcc_metadata_fmt", elapsed time 0.004394s.
260420-04:26:48,644 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fmt", elapsed time 0.00636
2s.
260420-04:26:48,645 nipype.workflow INFO:
	 [Node] Executing "ds_sdcreg_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-04:26:48,646 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.00
9337s.
260420-04:26:48,647 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_trust_run_01_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/tcc_metadata_fm
t".
260420-04:26:48,651 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.01197
4s.
260420-04:26:48,652 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt" <niworkflows.int
erfaces.utility.TSV2JSON>
260420-04:26:48,655 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_
filter", elapsed time 0.018239s.
260420-04:26:48,665 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fmt", elapsed time 0.01287
5s.
260420-04:26:48,675 nipype.workflow INFO:
	 [Node] Finished "ds_sdcreg_report", elapsed time 0.0
286s.
260420-04:26:50,379 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 11.40299s.
260420-04:26:50,597 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/tcc_metadata_fmt".
260
420-04:26:50,598 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_tr
ust_run_03_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/tcc_metadata_fmt".
260420
-04:26:50,598 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust
_run_04_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/tcc_metadata_fmt".
260420-04:26:50,600 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt" <niworkflows.interfa
ces.utility.TSV2JSON>
260420-04:26:50,601 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt
" <niworkflows.interfaces.utility.TSV2JSON>
260420-04:26:50,601 nipype.workflow INFO:
	 [Node] Execu
ting "tcc_metadata_fmt" <niworkflows.interfaces.utility.TSV2JSON>
260420-04:26:50,602 nipype.workflo
w INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_confounds_wf
.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/
bold_task_trust_run_05_wf/bold_confounds_wf/tcc_metadata_fmt".
260420-04:26:50,604 nipype.workflow I
NFO:
	 [Node] Executing "tcc_metadata_fmt" <niworkflows.interfaces.utility.TSV2JSON>
260420-04:26:50
,604 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fmt", elapsed time 0.003218s.
260420-04:2
6:50,606 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_
run_02_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/tcc_metadata_fmt".
260420
-04:26:50,608 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fmt", elapsed time 0.003542s.
26
0420-04:26:50,608 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt" <niworkflows.interface
s.utility.TSV2JSON>
260420-04:26:50,613 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fmt",
elapsed time 0.003574s.
260420-04:26:50,615 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fm
t", elapsed time 0.012871s.
260420-04:26:50,626 nipype.workflow INFO:
	 [Node] Finished "tcc_metadat
a_fmt", elapsed time 0.024371s.
260420-04:26:50,790 nipype.workflow INFO:
	 [Node] Finished "tcompcor", elapsed time 2.152514s.
260420-04:26:52,985 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.tcc_metadata_filter" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/tcc_metadat
a_filter".
260420-04:26:52,995 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-04:26:53,19 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_filter", elapsed time 0.022
691s.
260420-04:26:54,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.tcc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/tcc_metadata_f
mt".
260420-04:26:54,590 nipype.workflow INFO:
	 [Node] Executing "tcc_metadata_fmt" <niworkflows.interfa
ces.utility.TSV2JSON>
260420-04:26:54,594 nipype.workflow INFO:
	 [Node] Finished "tcc_metadata_fmt", elapsed time 0.00401
2s.
260420-04:26:55,585 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 11.115853s.
260420-04:26:57,595 nipype.workflow INFO:
	 [Node] Finished "dvars", elapsed time 10.708021s.
260420-05:02:09,678 nipype.workflow INFO:
	 [Node] Finished "norm", elapsed time 2306.038186s.
260420-05:02:11,61 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_w
f.brain_extraction_wf.map_wmmask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2
_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/map_wmmask".
260420-05:02:11,61 nipype.workflow INFO:

	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf.brain_extraction_wf.map_brainmask" in
"/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extr
action_wf/map_brainmask".
260420-05:02:11,69 nipype.workflow INFO:
	 [Node] Executing "map_brainmask" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:02:11,70 nipype.workflow INFO:
	 [Node] Executing "map_wmmask" <niworkflows.interfaces.fix
es.FixHeaderApplyTransforms>
260420-05:02:25,149 nipype.workflow INFO:
	 [Node] Finished "map_wmmask", elapsed time 14.076752s.
260420-05:02:26,154 nipype.workflow INFO:
	 [Node] Finished "map_brainmask", elapsed time 15.083345s
.
260420-05:02:27,126 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.thr_brainmask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/thr_brainmask".
260420-05:02:27,132 nipype.workflow INFO:
	 [Node] Executing "thr_brainmask" <nipype.interfaces.ants
.utils.ThresholdImage>
260420-05:02:28,400 nipype.workflow INFO:
	 [Node] Finished "thr_brainmask", elapsed time 1.266403s.
260420-05:02:29,140 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.dil_brainmask" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/dil_brainmask".
260420-05:02:29,144 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.03_pad_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/03_pad_mask".
260420-05:02:29
,147 nipype.workflow INFO:
	 [Node] Executing "dil_brainmask" <nipype.interfaces.ants.utils.ImageMat
h>
260420-05:02:29,151 nipype.workflow INFO:
	 [Node] Executing "03_pad_mask" <nipype.interfaces.ants.u
tils.ImageMath>
260420-05:02:30,18 nipype.workflow INFO:
	 [Node] Finished "03_pad_mask", elapsed time 0.865287s.
260420-05:02:30,370 nipype.workflow INFO:
	 [Node] Finished "dil_brainmask", elapsed time 1.221605s.
260420-05:02:31,132 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.get_brainmask" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/get_brainmask".
260420-05:02:31,139 nipype.workflow INFO:
	 [Node] Executing "get_brainmask" <nipype.interfaces.ants
.utils.ImageMath>
260420-05:02:32,260 nipype.workflow INFO:
	 [Node] Finished "get_brainmask", elapsed time 1.11983800
00000001s.
260420-05:02:33,145 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.01_atropos" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/01_atropos".
260420-05:02:33,153 nipype.workflow INFO:
	 [Node] Executing "01_atropos" <nipype.interfaces.ants.se
gmentation.Atropos>
260420-05:03:20,391 nipype.workflow INFO:
	 [Node] Finished "01_atropos", elapsed time 47.235709s.
260420-05:03:21,175 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.02_pad_segm" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/02_pad_segm".
260420-05:03:21,183 nipype.workflow INFO:
	 [Node] Executing "02_pad_segm" <nipype.interfaces.ants.u
tils.ImageMath>
260420-05:03:22,338 nipype.workflow INFO:
	 [Node] Finished "02_pad_segm", elapsed time 1.154134s.
260420-05:03:23,118 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.04_sel_labels" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/04_sel_labels".
260420-05:03:23,124 nipype.workflow INFO:
	 [Node] Executing "04_sel_labels" <nipype.interfaces.util
ity.wrappers.Function>
260420-05:03:23,426 nipype.workflow INFO:
	 [Node] Finished "04_sel_labels", elapsed time 0.300203s.
260420-05:03:30,411 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.27_depad_csf" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/27_depad_csf".
260420-05:03:30,411 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.10_me_csf" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/10_me_csf".
260420-05:03:30,412
 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf.brain_extraction
_wf.atropos_wf.05_get_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_
104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/05_get_wm".
260420-05:03:30,413 nipype.workflow IN
FO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf.brain_extraction_wf.atropos_wf.06_g
et_gm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/
brain_extraction_wf/atropos_wf/06_get_gm".
260420-05:03:30,414 nipype.workflow INFO:
	 [Node] Executing "27_depad_csf" <nipype.interfaces.ants.
utils.ImageMath>
260420-05:03:30,415 nipype.workflow INFO:
	 [Node] Executing "10_me_csf" <nipype.in
terfaces.ants.utils.ImageMath>
260420-05:03:30,417 nipype.workflow INFO:
	 [Node] Executing "05_get_
wm" <nipype.interfaces.ants.utils.ImageMath>
260420-05:03:30,419 nipype.workflow INFO:
	 [Node] Executing "06_get_gm" <nipype.interfaces.ants.uti
ls.ImageMath>
260420-05:03:31,447 nipype.workflow INFO:
	 [Node] Finished "27_depad_csf", elapsed time 1.032198s.
260420-05:03:32,213 nipype.workflow INFO:
	 [Node] Finished "05_get_wm", elapsed time 1.795035s.
260420-05:03:32,789 nipype.workflow INFO:
	 [Node] Finished "06_get_gm", elapsed time 2.368318s.
260420-05:03:34,288 nipype.workflow INFO:
	 [Node] Finished "10_me_csf", elapsed time 3.872005s.
260420-05:03:34,389 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.09_relabel_wm" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/09_relabel_wm".
260420-05:03:34,390 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.07_fill_gm" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/07_fill_gm".
260420-05:03:34,3
91 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf.brain_extracti
on_wf.atropos_wf.apply_wm_prior" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_
wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/apply_wm_prior".
260420-05:03:34,392 nipype
.workflow INFO:
	 [Node] Executing "09_relabel_wm" <nipype.interfaces.ants.utils.MultiplyImages>
260
420-05:03:34,393 nipype.workflow INFO:
	 [Node] Executing "07_fill_gm" <nipype.interfaces.ants.utils
.ImageMath>
260420-05:03:34,396 nipype.workflow INFO:
	 [Node] Executing "apply_wm_prior" <nipype.in
terfaces.utility.wrappers.Function>
260420-05:03:35,120 nipype.workflow INFO:
	 [Node] Finished "apply_wm_prior", elapsed time 0.721864s
.
260420-05:03:35,273 nipype.workflow INFO:
	 [Node] Finished "09_relabel_wm", elapsed time 0.8799s.
260420-05:03:36,415 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.26_depad_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/26_depad_wm".
260420-05:03:36,418 nipype.workflow INFO:
	 [Node] Executing "26_depad_wm" <nipype.interfaces.ants.u
tils.ImageMath>
260420-05:03:36,435 nipype.workflow INFO:
	 [Node] Setting-up "_inu_n4_final0" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_
wf/inu_n4_final/mapflow/_inu_n4_final0".
260420-05:03:36,441 nipype.workflow INFO:
	 [Node] Executing "_inu_n4_final0" <nipype.interfaces.ant
s.segmentation.N4BiasFieldCorrection>
260420-05:03:37,232 nipype.workflow INFO:
	 [Node] Finished "26_depad_wm", elapsed time 0.812763s.
260420-05:03:41,481 nipype.workflow INFO:
	 [Node] Finished "07_fill_gm", elapsed time 7.087317s.
260420-05:03:42,426 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.08_mult_gm" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/08_mult_gm".
260420-05:03:42,429 nipype.workflow INFO:
	 [Node] Executing "08_mult_gm" <nipype.interfaces.ants.ut
ils.MultiplyImages>
260420-05:03:43,194 nipype.workflow INFO:
	 [Node] Finished "08_mult_gm", elapsed time 0.764022s.
260420-05:03:44,426 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.11_add_gm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/11_add_gm".
260420-05:03:44,429 nipype.workflow INFO:
	 [Node] Executing "11_add_gm" <nipype.interfaces.ants.uti
ls.ImageMath>
260420-05:03:46,37 nipype.workflow INFO:
	 [Node] Finished "11_add_gm", elapsed time 1.6073659999999
999s.
260420-05:03:46,446 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.12_relabel_gm" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/12_relabel_gm".
260420-05:03:46,450 nipype.workflow INFO:
	 [Node] Executing "12_relabel_gm" <nipype.interfaces.ants
.utils.MultiplyImages>
260420-05:03:47,428 nipype.workflow INFO:
	 [Node] Finished "12_relabel_gm", elapsed time 0.977819s.
260420-05:03:48,466 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.13_add_gm_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/13_add_gm_wm".
260420-05:03:
48,468 nipype.workflow INFO:
	 [Node] Executing "13_add_gm_wm" <nipype.interfaces.ants.utils.ImageMa
th>
260420-05:03:48,470 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.25_depad_gm" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/25_depad_gm".
260420-05:03:48
,472 nipype.workflow INFO:
	 [Node] Executing "25_depad_gm" <nipype.interfaces.ants.utils.ImageMath>
260420-05:03:49,356 nipype.workflow INFO:
	 [Node] Finished "25_depad_gm", elapsed time 0.882703s.
260420-05:03:50,211 nipype.workflow INFO:
	 [Node] Finished "13_add_gm_wm", elapsed time 1.742322999
9999998s.
260420-05:03:50,460 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.merge_tpms" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/merge_tpms".
260420-05:03:50,463 nipype.workflow INFO:
	 [Node] Executing "merge_tpms" <nipype.interfaces.utility
.base.Merge>
260420-05:03:50,464 nipype.workflow INFO:
	 [Node] Finished "merge_tpms", elapsed time
0.000216s.
260420-05:03:52,413 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.14_sel_labels2" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/14_sel_labels2".
260420-05:03:52,415 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.24_depad_segm" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/24_depad_segm".
260420-05:03:52,417 nipype.workflow INFO:
	 [Node] Executing "14_sel_labels2" <nipype.interfaces.uti
lity.wrappers.Function>
260420-05:03:52,418 nipype.workflow INFO:
	 [Node] Executing "24_depad_segm" <nipype.interfaces.ants
.utils.ImageMath>
260420-05:03:52,552 nipype.workflow INFO:
	 [Node] Finished "14_sel_labels2", elapsed time 0.134625s
.
260420-05:03:53,624 nipype.workflow INFO:
	 [Node] Finished "24_depad_segm", elapsed time 1.205656s.
260420-05:03:54,458 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.15_add_7" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/15_add_7".
260420-05:03:54,461 nipype.workflow INFO:
	 [Node] Executing "15_add_7" <nipype.interfaces.ants.util
s.ImageMath>
260420-05:03:55,565 nipype.workflow INFO:
	 [Node] Finished "15_add_7", elapsed time 1.103118s.
260420-05:03:56,435 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.16_me_7" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/16_me_7".
260420-05:03:56,437 nipype.workflow INFO:
	 [Node] Executing "16_me_7" <nipype.interfaces.ants.utils
.ImageMath>
260420-05:03:58,744 nipype.workflow INFO:
	 [Node] Finished "16_me_7", elapsed time 2.306148s.
260420-05:04:00,470 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.17_comp_7" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/17_comp_7".
260420-05:04:00,472
 nipype.workflow INFO:
	 [Node] Executing "17_comp_7" <nipype.interfaces.ants.utils.ImageMath>
260420-05:04:01,702 nipype.workflow INFO:
	 [Node] Finished "17_comp_7", elapsed time 1.22859s.
260420-05:04:02,454 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.18_md_7" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/18_md_7".
260420-05:04:02,458 nipype.workflow INFO:
	 [Node] Executing "18_md_7" <nipype.interfaces.ants.utils
.ImageMath>
260420-05:04:03,519 nipype.workflow INFO:
	 [Node] Finished "_inu_n4_final0", elapsed time 27.074738
s.
260420-05:04:03,841 nipype.workflow INFO:
	 [Node] Finished "18_md_7", elapsed time 1.381213s.
260420-05:04:04,423 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.19_fill_7" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/19_fill_7".
260420-05:04:04,427 nipype.workflow INFO:
	 [Node] Executing "19_fill_7" <nipype.interfaces.ants.uti
ls.ImageMath>
260420-05:04:10,799 nipype.workflow INFO:
	 [Node] Finished "19_fill_7", elapsed time 6.371599s.
260420-05:04:12,419 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.20_add_7_2" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/20_add_7_2".
260420-05:04:12,422 nipype.workflow INFO:
	 [Node] Executing "20_add_7_2" <nipype.interfaces.ants.ut
ils.ImageMath>
260420-05:04:13,784 nipype.workflow INFO:
	 [Node] Finished "20_add_7_2", elapsed time 1.360351s.
260420-05:04:14,420 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.21_md_7_2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/21_md_7_2".
260420-05:04:14,423 nipype.workflow INFO:
	 [Node] Executing "21_md_7_2" <nipype.interfaces.ants.uti
ls.ImageMath>
260420-05:04:16,145 nipype.workflow INFO:
	 [Node] Finished "21_md_7_2", elapsed time 1.721404999999
9999s.
260420-05:04:18,430 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.22_me_7_2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/22_me_7_2".
260420-05:04:18,432 nipype.workflow INFO:
	 [Node] Executing "22_me_7_2" <nipype.interfaces.ants.uti
ls.ImageMath>
260420-05:04:20,656 nipype.workflow INFO:
	 [Node] Finished "22_me_7_2", elapsed time 2.223263s.
260420-05:04:22,428 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.23_depad_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/23_depad_mask".
260420-05:04:22,431 nipype.workflow INFO:
	 [Node] Executing "23_depad_mask" <nipype.interfaces.ants
.utils.ImageMath>
260420-05:04:23,121 nipype.workflow INFO:
	 [Node] Finished "23_depad_mask", elapsed time 0.689309s.
260420-05:04:24,442 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.brain_extraction_wf.atropos_wf.msk_conform" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf/msk_conform".
260420-05:04:24,445 nipype.workflow INFO:
	 [Node] Executing "msk_conform" <nipype.interfaces.utilit
y.wrappers.Function>
260420-05:04:24,618 nipype.workflow INFO:
	 [Node] Finished "msk_conform", elapsed time 0.171973s.
260420-05:04:30,584 nipype.workflow INFO:
	 [Node] Setting-up "_apply_mask0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/brain_extraction_wf/atropos_wf
/apply_mask/mapflow/_apply_mask0".
260420-05:04:30,586 nipype.workflow INFO:
	 [Node] Executing "_apply_mask0" <niworkflows.interfaces.
nibabel.ApplyMask>
260420-05:04:31,177 nipype.workflow INFO:
	 [Node] Finished "_apply_mask0", elapsed time 0.589384s.
260420-05:04:33,464 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/anat/sub-104_desc-brain_mask.nii.gz dtype from int16 to int16
260420-05:04:34,194 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.register_template_wf.trunc_mov" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/anat_fit_wf/register_template_wf/_template_MNI152NLin6Asym/trunc_mov".
260420-05:04:
34,195 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf.register_t
emplate_wf.trunc_mov" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/anat_fit_wf/register_template_wf/_template_MNI152NLin2009cAsym/trunc_mov".
260420-05:04:34,198 ni
pype.workflow INFO:
	 [Node] Executing "trunc_mov" <nipype.interfaces.ants.utils.ImageMath>
260420-0
5:04:34,198 nipype.workflow INFO:
	 [Node] Executing "trunc_mov" <nipype.interfaces.ants.utils.Image
Math>
260420-05:04:34,526 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.ds_std_vo
lumes_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/d
s_std_volumes_wf/_in_tuple_MNI152NLin6Asym.res2/gen_ref".
260420-05:04:34,530 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.ds_std_vo
lumes_wf.mask_anat" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf
/ds_std_volumes_wf/mask_anat".
260420-05:04:34,533 nipype.workflow INFO:
	 [Node] Setting-up "fmripr
ep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_b
rain" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sha
redreward_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:34,533 nipype.w
orkflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold
_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_brain" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask
_t1w_brain".
260420-05:04:34,537 nipype.workflow INFO:
	 [Node] Executing "mask_t1w_brain" <niworkfl
ows.interfaces.nibabel.ApplyMask>
260420-05:04:34,537 nipype.workflow INFO:
	 [Node] Executing "mask
_t1w_brain" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:04:34,537 nipype.workflow INFO:
	 [
Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_
bbr_wf.mask_t1w_brain" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104
_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:34,53
8 nipype.workflow INFO:
	 [Node] Executing "mask_anat" <niworkflows.interfaces.nibabel.ApplyMask>
26
0420-05:04:34,539 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf
.fast" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat_fit_wf/
fast".
260420-05:04:34,539 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interface
s.nibabel.GenerateSamplingReference>
260420-05:04:34,540 nipype.workflow INFO:
	 [Node] Finished "ge
n_ref", elapsed time 0.000204s.
260420-05:04:34,541 nipype.workflow INFO:
	 [Node] Executing "mask_t
1w_brain" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:04:34,541 nipype.workflow INFO:
	 [No
de] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bb
r_wf.mask_t1w_brain" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_w
f/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:34,542
nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bol
d_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_brain" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask_t1w_b
rain".
260420-05:04:34,542 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_trust_run_04_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_brain" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:34,543 nipype.workflow INFO:
	 [Node] Executing "fast
" <smriprep.interfaces.fsl.FAST>
260420-05:04:34,544 nipype.workflow INFO:
	 [Node] Setting-up "fmri
prep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_brain"
 in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_ru
n_05_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:34,544 nipype.workflow INFO
:
	 [Node] Executing "mask_t1w_brain" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:04:34,544
 nipype.workflow INFO:
	 [Node] Executing "mask_t1w_brain" <niworkflows.interfaces.nibabel.ApplyMask
>
260420-05:04:34,545 nipype.workflow INFO:
	 [Node] Executing "mask_t1w_brain" <niworkflows.interfa
ces.nibabel.ApplyMask>
260420-05:04:34,548 nipype.workflow INFO:
	 [Node] Executing "mask_t1w_brain"
 <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:04:35,152 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.614588s
.
260420-05:04:35,255 nipype.workflow INFO:
	 [Node] Finished "mask_anat", elapsed time 0.716366s.
260420-05:04:35,259 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.721433s
.
260420-05:04:35,261 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.715488s
.
260420-05:04:35,299 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.758048s
.
260420-05:04:35,312 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.763211s
.
260420-05:04:35,314 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.768954s
.
260420-05:04:35,342 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.796833s
.
260420-05:04:36,541 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_brain" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_
reg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:36,544 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mask_t1w_
brain" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ul
timatum_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mask_t1w_brain".
260420-05:04:36,544 nipype.wor
kflow INFO:
	 [Node] Executing "mask_t1w_brain" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:04:36,546 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_anat_wf/gen_ref".
260420-05:04:36,5
47 nipype.workflow INFO:
	 [Node] Executing "mask_t1w_brain" <niworkflows.interfaces.nibabel.ApplyMa
sk>
260420-05:04:36,549 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-05:04:36,550 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_anat_wf/gen_ref".
260420-05:04:36,553 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-05:04:36,553 nipype.workflow INFO:
	 [Node] Setting-up "fmripre
p_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_anat_wf/gen_ref".
260420-05:04:36,556 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-05:04:36,557 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_anat_wf/gen_ref".
260420-05:04:36,561 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-05:04:36,565 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_anat_wf/gen_ref".
260420-05:04:36,566 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_anat_wf/gen_ref".
260420-05:04:36,566 nipype.work
flow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_anat_wf.g
en_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_t
rust_run_04_wf/bold_anat_wf/gen_ref".
260420-05:04:36,569 nipype.workflow INFO:
	 [Node] Executing "
gen_ref" <niworkflows.interfaces.nibabel.GenerateSamplingReference>
260420-05:04:36,569 nipype.workf
low INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibabel.GenerateSamplingReference>
26
0420-05:04:36,570 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibabel
.GenerateSamplingReference>
260420-05:04:37,201 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.639426s.
260420-05:04:37,215 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.667352s
.
260420-05:04:37,258 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.687136s.
260420-05:04:37,348 nipype.workflow INFO:
	 [Node] Finished "mask_t1w_brain", elapsed time 0.803333s
.
260420-05:04:37,384 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.833584s.
260420-05:04:37,403 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.83358s.
260420-05:04:37,425 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.870581s.
26042
0-05:04:37,428 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.870409s.
260420-05:04:37,608 nipype.workflow INFO:
	 [Node] Finished "trunc_mov", elapsed time 3.409267s.
260420-05:04:38,263 nipype.workflow INFO:
	 [Node] Finished "trunc_mov", elapsed time 4.064521s.
260420-05:04:38,550 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_anat_wf/gen_ref".
260420-05:04:38,554 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_anat_wf.gen_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_anat_wf/gen_ref".
260420-05:04:38,554 nip
ype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_wf.register_template_wf
.registration" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/anat
_fit_wf/register_template_wf/_template_MNI152NLin6Asym/registration".
260420-05:04:38,554 nipype.wor
kflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibabel.GenerateSamplingReference>
260420-05:04:38,557 nipype.workflow INFO:
	 [Node] Executing "gen_ref" <niworkflows.interfaces.nibab
el.GenerateSamplingReference>
260420-05:04:38,558 nipype.workflow INFO:
	 [Node] Setting-up "fmripre
p_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg"
in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedrew
ard_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/mri_coreg".
260420-05:04:38,562 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurf
er.registration.MRICoreg>
260420-05:04:38,562 nipype.workflow INFO:
	 [Node] Executing "registration
" <niworkflows.interfaces.norm.SpatialNormalization>
260420-05:04:39,87 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.529459s.
260420-05:04:39,164 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 0.608949s.
260420-05:04:45,665 nipype.workflow INFO:
	 [Node] Finished "gen_ref", elapsed time 9.095247s.
260420-05:04:46,526 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.register_template_wf.registration" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_
25_2_wf/sub_104_wf/anat_fit_wf/register_template_wf/_template_MNI152NLin2009cAsym/registration".
260420-05:04:46,532 nipype.workflow INFO:
	 [Node] Executing "registration" <niworkflows.interfaces.
norm.SpatialNormalization>
260420-05:05:02,925 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 24.362073s.
260420-05:05:04,594 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/mri_coreg".
260420-05:05:04,599 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurf
er.registration.MRICoreg>
260420-05:05:34,84 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 29.484303s.
260420-05:05:34,671 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bb
r_wf/mri_coreg".
260420-05:05:34,675 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurf
er.registration.MRICoreg>
260420-05:06:02,671 nipype.workflow INFO:
	 [Node] Finished "fast", elapsed time 88.126668s.
260420-05:06:04,650 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 29.973321s.
260420-05:06:04,667 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.lut_t1w_dseg" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/an
at_fit_wf/lut_t1w_dseg".
260420-05:06:04,694 nipype.workflow INFO:
	 [Node] Executing "lut_t1w_dseg" <nipype.interfaces.utili
ty.wrappers.Function>
260420-05:06:04,879 nipype.workflow INFO:
	 [Node] Finished "lut_t1w_dseg", elapsed time 0.184521s.
260420-05:06:04,974 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bol
d_reg_wf/fsl_bbr_wf/lta_to_fsl".
260420-05:06:04,977 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl" <niworkflows.interfaces.fr
eesurfer.PatchedLTAConvert>
260420-05:06:05,398 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bol
d_reg_wf/fsl_bbr_wf/lta_to_fsl".
260420-05:06:05,401 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl" <niworkflows.interfaces.fr
eesurfer.PatchedLTAConvert>
260420-05:06:05,540 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.561997s.
260420-05:06:05,726 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.32424s.
260420-05:06:06,670 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bb
r_wf/mri_coreg".
260420-05:06:06,676 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurf
er.registration.MRICoreg>
260420-05:06:12,686 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/wm_mask".
260420-05:06:12,690 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/wm_mask".
260420-05:06:12,690 nipype.workflow INFO:
	 [Node] Executing "wm_mask" <n
ipype.interfaces.utility.wrappers.Function>
260420-05:06:12,693 nipype.workflow INFO:
	 [Node] Executing "wm_mask" <nipype.interfaces.utility.wr
appers.Function>
260420-05:06:12,693 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bol
d_reg_wf/fsl_bbr_wf/wm_mask".
260420-05:06:12,696 nipype.workflow INFO:
	 [Node] Executing "wm_mask"
 <nipype.interfaces.utility.wrappers.Function>
260420-05:06:12,698 nipype.workflow INFO:
	 [Node] Se
tting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.w
m_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_t
rust_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/wm_mask".
260420-05:06:12,700 nipype.workflow INFO
:
	 [Node] Executing "wm_mask" <nipype.interfaces.utility.wrappers.Function>
260420-05:06:12,702 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_
wf/wm_mask".
260420-05:06:12,702 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104
_wf.bold_task_trust_run_04_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_re
g_wf/fsl_bbr_wf/wm_mask".
260420-05:06:12,705 nipype.workflow INFO:
	 [Node] Executing "wm_mask" <nipype.interfaces.utility.wr
appers.Function>
260420-05:06:12,705 nipype.workflow INFO:
	 [Node] Executing "wm_mask" <nipype.inte
rfaces.utility.wrappers.Function>
260420-05:06:12,711 nipype.workflow INFO:
	 [Node] Setting-up "fmr
iprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in
 "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_0
1_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/lta_to_fsl".
260420-05:06:12,713 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl" <niworkflows.interfaces.fr
eesurfer.PatchedLTAConvert>
260420-05:06:12,726 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_
wf/wm_mask".
260420-05:06:12,730 nipype.workflow INFO:
	 [Node] Executing "wm_mask" <nipype.interfac
es.utility.wrappers.Function>
260420-05:06:12,815 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.1097s.
260420-05:06:12,834 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.137526s.
260420-05:06:12,837 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.135401s.
260420-05:06:12,856 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.150748s.
260420-05:06:12,882 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.188546s.
260420-05:06:12,939 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.247336s.
260420-05:06:12,972 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.241147s.
260420-05:06:13,81 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.366977s.
260420-05:06:14,262 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.anat_reports_wf.seg_rpt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/su
b_104_wf/anat_fit_wf/anat_reports_wf/seg_rpt".
260420-05:06:14,266 nipype.workflow INFO:
	 [Node] Executing "seg_rpt" <niworkflows.interfaces.repor
tlets.masks.ROIsPlot>
260420-05:06:14,746 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_reg_wf/
fsl_bbr_wf/wm_mask".
260420-05:06:14,746 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf
.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.wm_mask" in "/home/jovy
an/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bol
d_fit_wf/bold_reg_wf/fsl_bbr_wf/wm_mask".
260420-05:06:14,748 nipype.workflow INFO:
	 [Node] Executi
ng "wm_mask" <nipype.interfaces.utility.wrappers.Function>
260420-05:06:14,749 nipype.workflow INFO:

	 [Node] Executing "wm_mask" <nipype.interfaces.utility.wrappers.Function>
260420-05:06:14,749 nipy
pe.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.
bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/func_fit_reports_wf/t1w_wm".
26042
0-05:06:14,751 nipype.workflow INFO:
	 [Node] Executing "t1w_wm" <nipype.interfaces.utility.wrappers
.Function>
260420-05:06:14,754 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_w
f.bold_task_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf
/func_fit_reports_wf/t1w_wm".
260420-05:06:14,756 nipype.workflow INFO:
	 [Node] Executing "t1w_wm"
<nipype.interfaces.utility.wrappers.Function>
260420-05:06:14,757 nipype.workflow INFO:
	 [Node] Set
ting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.t1w_w
m" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_
run_01_wf/bold_fit_wf/func_fit_reports_wf/t1w_wm".
260420-05:06:14,760 nipype.workflow INFO:
	 [Node
] Executing "t1w_wm" <nipype.interfaces.utility.wrappers.Function>
260420-05:06:14,762 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_wf/t1w_
wm".
260420-05:06:14,762 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold
_task_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_wf
/t1w_wm".
260420-05:06:14,762 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf
.bold_task_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_repor
ts_wf/t1w_wm".
260420-05:06:14,764 nipype.workflow INFO:
	 [Node] Executing "t1w_wm" <nipype.interfa
ces.utility.wrappers.Function>
260420-05:06:14,764 nipype.workflow INFO:
	 [Node] Executing "t1w_wm"
 <nipype.interfaces.utility.wrappers.Function>
260420-05:06:14,764 nipype.workflow INFO:
	 [Node] Ex
ecuting "t1w_wm" <nipype.interfaces.utility.wrappers.Function>
260420-05:06:14,851 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.102141s.
260420-05:06:14,872 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.119836s.
260420-05:06:14,873 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.112286s.
260420-05:06:14,876 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.11133s.
260420-05:06:14,894 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.128957s.
260420-05:06:14,896 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.131471s.
260420-05:06:14,902 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.144942s.
260420-05:06:14,922 nipype.workflow INFO:
	 [Node] Finished "wm_mask", elapsed time 0.172462s.
260420-05:06:16,702 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_wf/t1w_
wm".
260420-05:06:16,704 nipype.workflow INFO:
	 [Node] Executing "t1w_wm" <nipype.interfaces.utilit
y.wrappers.Function>
260420-05:06:16,725 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_reports
_wf/t1w_wm".
260420-05:06:16,727 nipype.workflow INFO:
	 [Node] Executing "t1w_wm" <nipype.interface
s.utility.wrappers.Function>
260420-05:06:16,733 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep
_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.t1w_wm" in "/home/
jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf
/bold_fit_wf/func_fit_reports_wf/t1w_wm".
260420-05:06:16,736 nipype.workflow INFO:
	 [Node] Executi
ng "t1w_wm" <nipype.interfaces.utility.wrappers.Function>
260420-05:06:16,738 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_confounds_wf.
acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_tas
k_sharedreward_run_01_wf/bold_confounds_wf/acc_masks".
260420-05:06:16,742 nipype.workflow INFO:
	 [
Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_confounds_wf.acc
_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_s
haredreward_run_02_wf/bold_confounds_wf/acc_masks".
260420-05:06:16,750 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_masks".
260420-05:06:16,7
53 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_03_wf.
bold_confounds_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_masks".
260420-05:06:16,804 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.099126s.
260420-05:06:16,827 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:16,834 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:16,847 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:16,859 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.131323s.
260420
-05:06:16,859 nipype.workflow INFO:
	 [Node] Finished "t1w_wm", elapsed time 0.122713s.
260420-05:06:16,901 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:18,368 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.519796s.
260420-05:06:18,489 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.660874999999
9999s.
260420-05:06:18,491 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.58956s.
260420-05:06:18,578 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.743531s.
260420-05:06:18,794 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_masks".
260420-05:06:18,7
97 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.
bold_confounds_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_masks".
260420-05:06:18,798 nipype.workflo
w INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_confound
s_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bol
d_task_ultimatum_run_01_wf/bold_confounds_wf/acc_masks".
260420-05:06:18,857 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:18,879 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:18,910 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_masks".
260420-05:06:18,923 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:19,42 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confoun
ds.aCompCorMasks>
260420-05:06:20,368 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.487328s.
260420-05:06:20,503 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.572636999999
9998s.
260420-05:06:20,537 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.677937s.
260420-05:06:20,712 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.668753999999
9998s.
260420-05:06:20,736 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.acc_masks" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_masks".
260420-05:06:20,742 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/flt_bbr".
260420-05:06:20,746 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/flt_bbr".
260420-05:06:20,746 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <n
ipype.interfaces.fsl.preprocess.FLIRT>
260420-05:06:20,750 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_
wf/flt_bbr".
260420-05:06:20,750 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfac
es.fsl.preprocess.FLIRT>
260420-05:06:20,755 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfaces.fsl.prepro
cess.FLIRT>
260420-05:06:20,824 nipype.workflow INFO:
	 [Node] Executing "acc_masks" <fmriprep.interfaces.confou
nds.aCompCorMasks>
260420-05:06:22,320 nipype.workflow INFO:
	 [Node] Finished "acc_masks", elapsed time 1.494891s.
260420-05:06:27,985 nipype.workflow INFO:
	 [Node] Finished "seg_rpt", elapsed time 13.718528s.
260420-05:06:36,526 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 29.848824s.
260420-05:06:38,734 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bb
r_wf/mri_coreg".
260420-05:06:38,736 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/
bold_reg_wf/fsl_bbr_wf/lta_to_fsl".
260420-05:06:38,738 nipype.workflow INFO:
	 [Node] Executing "mr
i_coreg" <nipype.interfaces.freesurfer.registration.MRICoreg>
260420-05:06:38,739 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl" <niworkflows.interfaces.fr
eesurfer.PatchedLTAConvert>
260420-05:06:39,148 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.407487s.
260420-05:06:40,823 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_
wf/flt_bbr".
260420-05:06:40,831 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfaces.fsl.prepro
cess.FLIRT>
260420-05:07:07,704 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 28.964892s.
260420-05:07:08,802 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_b
br_wf/lta_to_fsl".
260420-05:07:08,803 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.s
ub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf
/bold_reg_wf/fsl_bbr_wf/mri_coreg".
260420-05:07:08,811 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl" <niworkflows.interfaces.fr
eesurfer.PatchedLTAConvert>
260420-05:07:08,820 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurf
er.registration.MRICoreg>
260420-05:07:09,261 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.449411s.
260420-05:07:10,830 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_
wf/flt_bbr".
260420-05:07:10,931 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfaces.fsl.prepro
cess.FLIRT>
260420-05:07:17,428 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 56.677274s.
260420-05:07:18,552 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 57.805208s.
260420-05:07:22,898 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_
wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:07:22,901 nipype.workflow INFO
:
	 [Node] Executing "_fsl_to_lta0" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:07:22,902 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_
wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:07:22,904 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:07:23,338 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.433299s.
260420-05:07:23,361 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.459736s.
260420-05:07:24,830 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_
wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:07:24,832 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta0" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:07:24,834 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to
_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sh
aredreward_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:
07:24,836 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflows.interfaces.freesurfer
.PatchedLTAConvert>
260420-05:07:24,840 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in
"/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward
_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:07:24,841
nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta0" - collecting precomputed outputs
260420-05:07:2
4,841 nipype.workflow INFO:
	 [Node] "_fsl_to_lta0" found cached.
260420-05:07:24,842 nipype.workflo
w INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_l
ta/mapflow/_fsl_to_lta1".
260420-05:07:24,843 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" -
 collecting precomputed outputs
260420-05:07:24,843 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" fo
und cached.
260420-05:07:24,916 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 64.159903s.
260420-05:07:25,129 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.296468s.
260420-05:07:25,159 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.322547s.
260420-05:07:27,142 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_
wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:07:27,142 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fi
t_wf/bold_reg_wf/fsl_bbr_wf/compare_transforms".
260420-05:07:27,143 nipype.workflow INFO:
	 [Node]
Cached "_fsl_to_lta0" - collecting precomputed outputs
260420-05:07:27,144 nipype.workflow INFO:
	 [
Node] "_fsl_to_lta0" found cached.
260420-05:07:27,144 nipype.workflow INFO:
	 [Node] Setting-up "_f
sl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_ta
sk_sharedreward_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
26042
0-05:07:27,145 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" - collecting precomputed outputs

260420-05:07:27,145 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" found cached.
260420-05:07:27,146
 nipype.workflow INFO:
	 [Node] Executing "compare_transforms" <nipype.interfaces.utility.wrappers.F
unction>
260420-05:07:27,231 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.083
555s.
260420-05:07:29,230 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fi
t_wf/bold_reg_wf/fsl_bbr_wf/compare_transforms".
260420-05:07:29,237 nipype.workflow INFO:
	 [Node] Executing "compare_transforms" <nipype.interfaces
.utility.wrappers.Function>
260420-05:07:29,255 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.016
953s.
260420-05:07:31,993 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/xfm2itk".
260420-05:07:31,997 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <f
mriprep.interfaces.nitransforms.ConvertAffine>
260420-05:07:32,54 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.056348s.
260420-05:07:32,434 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:07:32,436 nipype.workflow INFO:
	 [No
de] Executing "_fsl_to_lta0" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:07:32,438 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:07:32,439 nipype.workflow INFO:
	 [No
de] Executing "_fsl_to_lta1" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:07:32,734 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.297092s.
260420-05:07:32,740 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.300112s.
260420-05:07:32,836 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/bold_r
eg_wf/fsl_bbr_wf/xfm2itk".
260420-05:07:32,840 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransf
orms.ConvertAffine>
260420-05:07:32,907 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.065968s.
260420-05:07:34,55 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 25.234097s.
260420-05:07:34,783 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bb
r_wf/mri_coreg".
260420-05:07:34,786 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurf
er.registration.MRICoreg>
260420-05:07:34,794 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_reg_wf/fsl_b
br_wf/lta_to_fsl".
260420-05:07:34,796 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl" <niwork
flows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:07:34,801 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:07:34,802 nipype.workflow INFO:
	 [No
de] Cached "_fsl_to_lta0" - collecting precomputed outputs
260420-05:07:34,802 nipype.workflow INFO:

	 [Node] "_fsl_to_lta0" found cached.
260420-05:07:34,803 nipype.workflow INFO:
	 [Node] Setting-up
 "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bol
d_task_trust_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-0
5:07:34,804 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" - collecting precomputed outputs
26
0420-05:07:34,804 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" found cached.
260420-05:07:35,112 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.315749s.
260420-05:07:35,214 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/func_
fit_reports_wf/t1w_boldref".
260420-05:07:35,214 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep
_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in
"/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward
_run_02_wf/bold_fit_wf/func_fit_reports_wf/boldref_wm".
260420-05:07:35,218 nipype.workflow INFO:
[Node] Executing "t1w_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:07:
35,218 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fixes.FixHeader
ApplyTransforms>
260420-05:07:35,542 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/t1w_mask_tfm
".
260420-05:07:35,546 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfac
es.fixes.FixHeaderApplyTransforms>
260420-05:07:35,907 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 0.68835s.
260420-05:07:36,439 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.219989s.
260420-05:07:36,834 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_reg_
wf/fsl_bbr_wf/compare_transforms".
260420-05:07:36,834 nipype.workflow INFO:
	 [Node] Setting-up "fm
riprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldr
ef" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_share
dreward_run_01_wf/bold_fit_wf/func_fit_reports_wf/t1w_boldref".
260420-05:07:36,834 nipype.workflow
INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_01_wf.bold_fit_wf.
func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_w
f/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/func_fit_reports_wf/boldref_wm".
260420-05
:07:36,836 nipype.workflow INFO:
	 [Node] Executing "compare_transforms" <nipype.interfaces.utility.
wrappers.Function>
260420-05:07:36,837 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-05:07:36,837 nipype.workflow INFO:
	 [Node] Executing "t1w_bold
ref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:07:36,839 nipype.workflow INF
O:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.bold_reg_w
f.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/flt_bbr".
260420-05:07:36,842 nipype
.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfaces.fsl.preprocess.FLIRT>
260420-05:07:3
6,853 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.015997s.
260420-05:07:36,880 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 56.047655s.
260420-05:07:37,57 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 1.510201s.
260420-05:07:37,302 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 0.464352s.
260420-05:07:38,109 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.27127s.
260420-05:07:40,578 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/t1w_mask_tfm
".
260420-05:07:40,578 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fun
c_fit_reports_wf/sdc_report".
260420-05:07:40,582 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:07:40,587 nipype.workflow INFO:
	 [Node] Executing "sdc_report" <nireports.interfaces.repo
rting.base.SimpleBeforeAfterRPT>
260420-05:07:40,587 nipype.interface INFO:
	 Report - setting befor
e (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-sharedreward_run-01_des
c-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-
104_task-sharedreward_run-01_desc-hmc_boldref.nii.gz) images
260420-05:07:40,587 nipype.interface IN
FO:
	 Generating visual report
260420-05:07:40,945 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/func_f
it_reports_wf/sdc_report".
260420-05:07:40,946 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_2
5_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in
 "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedrewar
d_run_02_wf/bold_fit_wf/func_fit_reports_wf/epi_t1_report".
260420-05:07:40,949 nipype.workflow INFO
:
	 [Node] Executing "sdc_report" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-
05:07:40,949 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/derivative
s/fmriprep/sub-104/func/sub-104_task-sharedreward_run-02_desc-coreg_boldref.nii.gz) and after (/home
/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-sharedreward_run-02_desc-hmc_bo
ldref.nii.gz) images
260420-05:07:40,949 nipype.interface INFO:
	 Generating visual report
260420-05:07:40,954 nipype.workflow INFO:
	 [Node] Executing "epi_t1_report" <nireports.interfaces.r
eporting.base.SimpleBeforeAfterRPT>
260420-05:07:40,954 nipype.interface INFO:
	 Report - setting be
fore (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-sharedreward_run-02_
desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2
_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/func_fit_reports_wf/t1w_boldref/sub-104_
desc-preproc_T1w_trans.nii.gz) images
260420-05:07:40,954 nipype.interface INFO:
	 Generating visual
 report
260420-05:07:41,5 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_s
haredreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/func_
fit_reports_wf/epi_t1_report".
260420-05:07:41,8 nipype.workflow INFO:
	 [Node] Executing "epi_t1_re
port" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:07:41,9 nipype.interface
INFO:
	 Report - setting before (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-10
4_task-sharedreward_run-01_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/func_fit_repo
rts_wf/t1w_boldref/sub-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:07:41,9 nipype.interface
INFO:
	 Generating visual report
260420-05:07:41,628 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/union_mask".
260420-05:07:41,631 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility
.wrappers.Function>
260420-05:07:41,637 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_con
founds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:07:41,639 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:07:41,670 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.038149s.
260420-05:07:42,488 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 0.847739s.
260420-05:07:42,983 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 2.400551s.
260420-05:07:44,62 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_w
f/xfm2itk".
260420-05:07:44,66 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransfo
rms.ConvertAffine>
260420-05:07:44,147 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.076504s.
260420-05:07:45,366 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/union_mask".
260420-05:07:45,368 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_anat_wf/fmap_recon".
260420-05:0
7:45,369 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility.wrappers.F
unction>
260420-05:07:45,374 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-05:07:45,385 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.015191s.
260420-05:07:45,867 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.49216s.
260420-05:07:46,419 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_anat_wf/fmap_recon".
260420-05:0
7:46,425 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resampling.Recon
structFieldmap>
260420-05:07:46,439 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/dilated_mask
".
260420-05:07:46,442 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfac
es.morphology.BinaryDilation>
260420-05:07:46,485 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.038773s.
260420-05:07:46,879 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.452832s.
260420-05:07:48,582 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_wf
/t1w_boldref".
260420-05:07:48,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_wf/
boldref_wm".
260420-05:07:48,586 nipype.workflow INFO:
	 [Node] Executing "t1w_boldref" <niworkflows
.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:07:48,586 nipype.workflow INFO:
	 [Node] Setti
ng-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_01_wf.bold_confounds_wf.t1w_mask_tfm" in "/ho
me/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/
bold_confounds_wf/t1w_mask_tfm".
260420-05:07:48,590 nipype.workflow INFO:
	 [Node] Executing "t1w_m
ask_tfm" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:07:48,594 nipype.workflow
 INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:07:49,423 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 0.828166s.
260420-05:07:50,140 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_wf/
sdc_report".
260420-05:07:50,148 nipype.workflow INFO:
	 [Node] Executing "sdc_report" <nireports.interfaces.repo
rting.base.SimpleBeforeAfterRPT>
260420-05:07:50,149 nipype.interface INFO:
	 Report - setting befor
e (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_run-01_desc-coreg
_boldref.nii.gz) and after (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_tas
k-trust_run-01_desc-hmc_boldref.nii.gz) images
260420-05:07:50,149 nipype.interface INFO:
	 Generati
ng visual report
260420-05:07:50,181 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.5937860000
000001s.
260420-05:07:50,520 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 1.92974s.
260420-05:07:52,118 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_
wf/epi_t1_report".
260420-05:07:52,122 nipype.workflow INFO:
	 [Node] Executing "epi_t1_report" <nireports.interfaces.r
eporting.base.SimpleBeforeAfterRPT>
260420-05:07:52,122 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/der
ivatives/fmriprep/sub-104/func/sub-104_task-trust_run-01_desc-coreg_boldref.nii.gz) and after (/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bo
ld_fit_wf/func_fit_reports_wf/t1w_boldref/sub-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:07
:52,122 nipype.interface INFO:
	 Generating visual report
260420-05:07:53,236 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/union_mask".
260420-05:07:53,239 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility
.wrappers.Function>
260420-05:07:53,263 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.023205s.
260420-05:07:54,261 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 13.252239s
.
260420-05:07:54,266 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/dilated_mask
".
260420-05:07:54,272 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfaces.
morphology.BinaryDilation>
260420-05:07:54,313 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.039033s.
260420-05:07:54,611 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 13.662025s.
260420-05:07:54,619 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 13.664808s
.
260420-05:07:55,90 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 14.502905s.
260420-05:07:55,983 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/fun
c_fit_reports_wf/ds_sdc_report".
260420-05:07:55,986 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_fit_wf/
func_fit_reports_wf/ds_epi_t1_report".
260420-05:07:55,986 nipype.workflow INFO:
	 [Node] Setting-up
 "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_sd
c_report" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task
_sharedreward_run_02_wf/bold_fit_wf/func_fit_reports_wf/ds_sdc_report".
260420-05:07:55,987 nipype.w
orkflow INFO:
	 [Node] Executing "ds_sdc_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:07:55,987 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_fit_wf/
func_fit_reports_wf/ds_epi_t1_report".
260420-05:07:55,990 nipype.workflow INFO:
	 [Node] Executing
"ds_epi_t1_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:07:55,990 nipype.workflow INF
O:
	 [Node] Executing "ds_sdc_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:07:55,992 nipype.workflow INFO:
	 [Node] Executing "ds_epi_t1_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-05:07:55,993 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_anat_wf/fmap_recon".
260420-05:07:55,999 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-05:07:56,4 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.013229s
.
260420-05:07:56,12 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.023891s.
260420-05:07:56,20 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.02932s.
260420-05:07:56,43 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.050388
s.
260420-05:07:56,446 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.445368s.
260420-05:07:58,77 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_01_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/dilated_mask".
260420-05:07:58,78 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_01_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_anat_wf/resample".
260420-05:07:58,
80 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run
_01_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/subtract_mask".
260420-05:07
:58,80 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfaces.morphology.Bi
naryDilation>
260420-05:07:58,83 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflo
ws.interfaces.morphology.BinarySubtraction>
260420-05:07:58,86 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampli
ng.ResampleSeries>
260420-05:07:58,89 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_conf
ounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:07:58,91 nipype.workflow INFO:
	 [Node] Execu
ting "_acc_msk_tfm1" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:07:58,94 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_02_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/subtract_mas
k".
260420-05:07:58,96 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflows.interfa
ces.morphology.BinarySubtraction>
260420-05:07:58,107 nipype.workflow INFO:
	 [Node] Finished "dilat
ed_mask", elapsed time 0.02643s.
260420-05:07:58,108 nipype.workflow INFO:
	 [Node] Finished "subtra
ct_mask", elapsed time 0.025225s.
260420-05:07:58,120 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.02297s.
260420-05:07:59,150 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 1.05819s.
260420-05:08:00,95 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_02_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_anat_wf/resample".
260420-05:08:00,
99 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampling.ResampleSerie
s>
260420-05:08:02,252 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 12.102158s.
260420-05:08:04,66 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_conf
ounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:08:04,68 nipype.workflow INFO:
	 [Node] Execu
ting "_acc_msk_tfm2" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:08:05,70 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 30.282782s.
260420-05:08:05,334 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 1.265928s.
260420-05:08:05,670 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 13.548107s
.
260420-05:08:06,55 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_reg_wf
/fsl_bbr_wf/mri_coreg".
260420-05:08:06,57 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_05_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bb
r_wf/lta_to_fsl".
260420-05:08:06,59 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.in
terfaces.freesurfer.registration.MRICoreg>
260420-05:08:06,60 nipype.workflow INFO:
	 [Node] Executi
ng "lta_to_fsl" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:08:06,111 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_con
founds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:06,112 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed o
utputs
260420-05:08:06,112 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:08
:06,113 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/ac
c_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:08:06,114 nipype.workflow INFO:
	 [Node] Cached "_acc_ms
k_tfm1" - collecting precomputed outputs
260420-05:08:06,114 nipype.workflow INFO:
	 [Node] "_acc_ms
k_tfm1" found cached.
260420-05:08:06,115 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2"
in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedrew
ard_run_02_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:08:06,116 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomputed o
utputs
260420-05:08:06,116 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:08:06,423 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.362671s.
260420-05:08:07,275 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 56.341425s.
260420-05:08:08,98 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_05_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_w
f/flt_bbr".
260420-05:08:08,103 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfaces.fsl.prepro
cess.FLIRT>
260420-05:08:08,411 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_reports_
wf/ds_sdc_report".
260420-05:08:08,418 nipype.workflow INFO:
	 [Node] Executing "ds_sdc_report" <fmriprep.interfaces.De
rivativesDataSink>
260420-05:08:08,443 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.022588s.
260420-05:08:10,90 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_fit_wf/func_fit_report
s_wf/ds_epi_t1_report".
260420-05:08:10,94 nipype.workflow INFO:
	 [Node] Executing "ds_epi_t1_report" <fmriprep.interfaces.
DerivativesDataSink>
260420-05:08:10,106 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.01124
1s.
260420-05:08:12,126 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/subtract_mask".
260420-05:08:12,128 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflows.interfaces
.morphology.BinarySubtraction>
260420-05:08:12,147 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.01839s.
260420-05:08:14,111 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_con
founds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:14,112 nipype.workflow INFO:
	 [Node] Set
ting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_10
4_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-0
5:08:14,113 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces.fixes.F
ixHeaderApplyTransforms>
260420-05:08:14,114 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm1
" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:08:15,350 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 1.235757s.
260420-05:08:15,543 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.428721s.
260420-05:08:16,75 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_conf
ounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:08:16,77 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_w
f/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:16,78 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm2" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:08:16,81 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:08:16,971 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 0.89225s.
260420-05:08:17,491 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.408019s.
260420-05:08:18,46 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_w
f/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:08:18,48 nipype.workflow INFO:
	 [Node] Executing "_
acc_msk_tfm1" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:08:18,50 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_conf
ounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:18,51 nipype.workflow INFO:
	 [Node] Cache
d "_acc_msk_tfm0" - collecting precomputed outputs
260420-05:08:18,51 nipype.workflow INFO:
	 [Node]
 "_acc_msk_tfm0" found cached.
260420-05:08:18,54 nipype.workflow INFO:
	 [Node] Setting-up "_acc_ms
k_tfm1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_s
haredreward_run_01_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:08:18,55 nipyp
e.workflow INFO:
	 [Node] Cached "_acc_msk_tfm1" - collecting precomputed outputs
260420-05:08:18,55
 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm1" found cached.
260420-05:08:18,56 nipype.workflow INF
O:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_
tfm2".
260420-05:08:18,56 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomp
uted outputs
260420-05:08:18,56 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:08:19,389 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 1.340497s.
260420-05:08:20,38 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_
reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:08:20,40 nipype.workflow INFO:
	 [Node
] Executing "_fsl_to_lta0" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:08:20,514 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.473225s.
260420-05:08:22,182 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:08:22,184 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:08:22,752 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.567458s.
260420-05:08:24,62 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_
reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:08:24,63 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta0" - collecting precomputed out
puts
260420-05:08:24,63 nipype.workflow INFO:
	 [Node] "_fsl_to_lta0" found cached.
260420-05:08:24,
64 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_w
f/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:08:24,65 nipype.workflow INFO:
	 [Node] Cached "_fsl_t
o_lta1" - collecting precomputed outputs
260420-05:08:24,65 nipype.workflow INFO:
	 [Node] "_fsl_to_
lta1" found cached.
260420-05:08:26,54 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_reg_w
f/fsl_bbr_wf/compare_transforms".
260420-05:08:26,56 nipype.workflow INFO:
	 [Node] Executing "compare_transforms" <nipype.interfaces.
utility.wrappers.Function>
260420-05:08:26,62 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.0051
52s.
260420-05:08:29,151 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:08:29,153 nipype.workflow INFO:
	 [Node] Executing
"_acc_msk_tfm2" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:08:29,489 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 31.402206s.
260420-05:08:30,46 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_w
f/xfm2itk".
260420-05:08:30,49 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransfo
rms.ConvertAffine>
260420-05:08:30,99 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.049596s.
260420-05:08:30,378 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_anat_wf/resample".
260420-05:08:30,383 nipype.wo
rkflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampling.ResampleSeries>
260420-05:08:30,506 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 1.352042s.
260420-05:08:32,347 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:32,348 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed o
utputs
260420-05:08:32,348 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:08
:32,349 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_msk_t
fm/mapflow/_acc_msk_tfm1".
260420-05:08:32,350 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm1" - collecting precomputed o
utputs
260420-05:08:32,350 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm1" found cached.
260420-05:08
:32,351 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_msk_t
fm/mapflow/_acc_msk_tfm2".
260420-05:08:32,352 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomputed o
utputs
260420-05:08:32,352 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:08:33,388 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 27.328247s.
260420-05:08:34,38 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.mri_coreg" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bold_reg_wf
/fsl_bbr_wf/mri_coreg".
260420-05:08:34,47 nipype.workflow INFO:
	 [Node] Executing "mri_coreg" <nipype.interfaces.freesurfe
r.registration.MRICoreg>
260420-05:08:34,58 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/hom
e/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_
wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/lta_to_fsl".
260420-05:08:34,60 nipype.workflow INFO:
	 [Node]
 Executing "lta_to_fsl" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:08:34,455 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.394254s.
260420-05:08:35,97 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 34.996702s.
260420-05:08:36,77 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_reg_wf/f
sl_bbr_wf/flt_bbr".
260420-05:08:36,82 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.in
terfaces.fsl.preprocess.FLIRT>
260420-05:08:36,86 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_wf/
t1w_boldref".
260420-05:08:36,90 nipype.workflow INFO:
	 [Node] Executing "t1w_boldref" <niworkflows
.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:08:36,90 nipype.workflow INFO:
	 [Node] Settin
g-up "_acc_msk_tfm0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_w
f/bold_task_trust_run_02_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:36,92 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:08:37,202 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.10918200
00000001s.
260420-05:08:37,626 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 60.783296s.
260420-05:08:37,853 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.761963s.
260420-05:08:38,678 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/t1w_mask_tfm".
260420-05:08:38,682 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:08:38,682 nipype.workflow INFO:
	 [Node] Setting-up "_acc_
msk_tfm1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task
_trust_run_02_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:08:38,684 nipype.wo
rkflow INFO:
	 [Node] Executing "_acc_msk_tfm1" <niworkflows.interfaces.fixes.FixHeaderApplyTransfor
ms>
260420-05:08:39,517 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 0.832195s.
260420-05:08:40,215 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_wf/
boldref_wm".
260420-05:08:40,219 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:08:40,220 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-05:08:40,224 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm2" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:08:40,699 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 2.017119s.
260420-05:08:40,756 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 0.535226s.
260420-05:08:41,84 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 0.857837s.
260420-05:08:42,395 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:08:42,396 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed o
utputs
260420-05:08:42,396 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:08
:42,397 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_msk_t
fm/mapflow/_acc_msk_tfm1".
260420-05:08:42,397 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_2
5_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bo
ld_fit_wf/func_fit_reports_wf/epi_t1_report".
260420-05:08:42,400 nipype.workflow INFO:
	 [Node] Exe
cuting "epi_t1_report" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:08:42,40
1 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/derivatives/fmriprep/
sub-104/func/sub-104_task-trust_run-02_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit
_reports_wf/t1w_boldref/sub-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:08:42,401 nipype.int
erface INFO:
	 Generating visual report
260420-05:08:42,402 nipype.workflow INFO:
	 [Node] Cached "_
acc_msk_tfm1" - collecting precomputed outputs
260420-05:08:42,402 nipype.workflow INFO:
	 [Node] "_
acc_msk_tfm1" found cached.
260420-05:08:42,402 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_
tfm2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_tru
st_run_02_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:08:42,403 nipype.workfl
ow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomputed outputs
260420-05:08:42,403 nipype
.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:08:43,144 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/union_mask".
260420-05:08:43,149 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility
.wrappers.Function>
260420-05:08:43,158 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:43,160 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:08:43,162 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:08:43,164 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain1" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:08:43,185 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.020341
s.
260420-05:08:43,192 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.041996s.
260420-05:08:43,235 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.07425s
.
260420-05:08:43,532 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_wf/
sdc_report".
260420-05:08:43,538 nipype.workflow INFO:
	 [Node] Executing "sdc_report" <nireports.interfaces.repo
rting.base.SimpleBeforeAfterRPT>
260420-05:08:43,538 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/der
ivatives/fmriprep/sub-104/func/sub-104_task-trust_run-02_desc-coreg_boldref.nii.gz) and after (/home
/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_run-02_desc-hmc_boldref.n
ii.gz) images
260420-05:08:43,541 nipype.interface INFO:
	 Generating visual report
260420-05:08:44,82 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_02_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_anat_wf/fmap_recon".
260420-05:08:44,89 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resamp
ling.ReconstructFieldmap>
260420-05:08:44,513 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.422952s.
260420-05:08:46,233 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:08:46,235 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain2" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:08:46,242 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_w
f.sub_104_wf.bold_task_trust_run_02_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/dila
ted_mask".
260420-05:08:46,246 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:08:46,248 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfaces.
morphology.BinaryDilation>
260420-05:08:46,248 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta
0" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:08:46,251 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:08:46,256 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:08:46,266 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.031083
s.
260420-05:08:46,294 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.044395s.
260420-05:08:46,586 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.328284s.
260420-05:08:46,651 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.39788s.
260420-05:08:48,133 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:48,135 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/subtract_mask".
260420-05
:08:48,135 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfaces.nibabe
l.ApplyMask>
260420-05:08:48,136 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/ho
me/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run
_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:48,136 nipype.workflow
 INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapfl
ow/_fsl_to_lta0".
260420-05:08:48,136 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain0" - coll
ecting precomputed outputs
260420-05:08:48,137 nipype.workflow INFO:
	 [Node] "_acc_msk_brain0" foun
d cached.
260420-05:08:48,137 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/
jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02
_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:08:48,137 nipype.workflow IN
FO:
	 [Node] Cached "_fsl_to_lta0" - collecting precomputed outputs
260420-05:08:48,137 nipype.workf
low INFO:
	 [Node] "_fsl_to_lta0" found cached.
260420-05:08:48,137 nipype.workflow INFO:
	 [Node] E
xecuting "subtract_mask" <niworkflows.interfaces.morphology.BinarySubtraction>
260420-05:08:48,138 n
ipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain1" - collecting precomputed outputs
260420-05:08
:48,138 nipype.workflow INFO:
	 [Node] "_acc_msk_brain1" found cached.
260420-05:08:48,138 nipype.wo
rkflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta
/mapflow/_fsl_to_lta1".
260420-05:08:48,138 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brai
n2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_share
dreward_run_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:08:48,138 nipy
pe.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" - collecting precomputed outputs
260420-05:08:48,13
8 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" found cached.
260420-05:08:48,139 nipype.workflow IN
FO:
	 [Node] Cached "_acc_msk_brain2" - collecting precomputed outputs
260420-05:08:48,139 nipype.wo
rkflow INFO:
	 [Node] "_acc_msk_brain2" found cached.
260420-05:08:48,157 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.019306s.
260420-05:08:48,213 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.076787
s.
260420-05:08:50,186 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_
wf/fsl_bbr_wf/compare_transforms".
260420-05:08:50,188 nipype.workflow INFO:
	 [Node] Executing "com
pare_transforms" <nipype.interfaces.utility.wrappers.Function>
260420-05:08:50,202 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:08:50,204 nipype.workflow INFO:
	 [Nod
e] Executing "_acc_msk_brain1" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:08:50,214 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:08:50,215 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain2" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:08:50,222 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0
" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_r
un_01_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:50,224 nipype.workfl
ow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:0
8:50,225 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.036231s.
260420-05:08:50,241 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.025185
s.
260420-05:08:50,245 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.028
966s.
260420-05:08:50,286 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.061087
s.
260420-05:08:53,333 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_c
onfounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:53,334 nipype.workflow INFO:
	 [Nod
e] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_w
f/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260
420-05:08:53,334 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain0" - collecting precomputed ou
tputs
260420-05:08:53,334 nipype.workflow INFO:
	 [Node] "_acc_msk_brain0" found cached.
260420-05:0
8:53,334 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf
/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:08:53,335 nipype.workflow INFO:
	 [Node] Cached "
_acc_msk_brain1" - collecting precomputed outputs
260420-05:08:53,335 nipype.workflow INFO:
	 [Node]
 "_acc_msk_brain1" found cached.
260420-05:08:53,335 nipype.workflow INFO:
	 [Node] Executing "_acc_
msk_brain1" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:08:53,336 nipype.workflow INFO:
	 [
Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_br
ain2".
260420-05:08:53,336 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain2" - collecting prec
omputed outputs
260420-05:08:53,336 nipype.workflow INFO:
	 [Node] "_acc_msk_brain2" found cached.
2
60420-05:08:53,338 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds
_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:08:53,338 nipype.workflow INFO:
	 [Node] Setti
ng-up "_fsl_to_lta0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_w
f/bold_task_trust_run_04_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260
420-05:08:53,339 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain2" <niworkflows.interfaces.
nibabel.ApplyMask>
260420-05:08:53,340 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta0" <niwo
rkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:08:53,373 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.032826
s.
260420-05:08:53,389 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.052335
s.
260420-05:08:53,724 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.382513s.
260420-05:08:54,74 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_03_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_w
f/xfm2itk".
260420-05:08:54,78 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransfo
rms.ConvertAffine>
260420-05:08:54,123 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.045052s.
260420-05:08:54,452 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:54,453 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain0" - collecting precomputed
 outputs
260420-05:08:54,453 nipype.workflow INFO:
	 [Node] "_acc_msk_brain0" found cached.
260420-0
5:08:54,454 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc
_msk_brain/mapflow/_acc_msk_brain1".
260420-05:08:54,454 nipype.workflow INFO:
	 [Node] Setting-up "
_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_
task_trust_run_04_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:
08:54,454 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain1" - collecting precomputed outputs
2
60420-05:08:54,454 nipype.workflow INFO:
	 [Node] "_acc_msk_brain1" found cached.
260420-05:08:54,455 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:08:54,455 nipype.workflow INFO:
	 [Node] Cach
ed "_acc_msk_brain2" - collecting precomputed outputs
260420-05:08:54,455 nipype.workflow INFO:
	 [N
ode] "_acc_msk_brain2" found cached.
260420-05:08:54,456 nipype.workflow INFO:
	 [Node] Executing "_
fsl_to_lta1" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:08:54,855 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.398538s.
260420-05:08:55,291 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 12.890401s
.
260420-05:08:56,11 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 12.472102s.
260420-05:08:56,119 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:08:56,120 nipype.workflow INFO:
	 [No
de] Cached "_fsl_to_lta0" - collecting precomputed outputs
260420-05:08:56,120 nipype.workflow INFO:

	 [Node] "_fsl_to_lta0" found cached.
260420-05:08:56,121 nipype.workflow INFO:
	 [Node] Setting-up
 "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bol
d_task_trust_run_04_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:08:56,122 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" - collecting precomputed ou
tputs
260420-05:08:56,122 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" found cached.
260420-05:08:56,470 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:08:56,471 nipype.workflow INFO:
	 [Node] Sett
ing-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_epi
_t1_report" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_ta
sk_trust_run_02_wf/bold_fit_wf/func_fit_reports_wf/ds_epi_t1_report".
260420-05:08:56,472 nipype.wor
kflow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfaces.nibabel.ApplyMask>
260420-0
5:08:56,474 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc
_msk_brain/mapflow/_acc_msk_brain1".
260420-05:08:56,475 nipype.workflow INFO:
	 [Node] Executing "_
acc_msk_brain1" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:08:56,477 nipype.workflow INFO:

	 [Node] Executing "ds_epi_t1_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:08:56,478
 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_msk_brain/
mapflow/_acc_msk_brain2".
260420-05:08:56,479 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bra
in2" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:08:56,510 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.034459
s.
260420-05:08:56,512 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.03196s
.
260420-05:08:56,513 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.034
118s.
260420-05:08:56,514 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.
041063s.
260420-05:08:58,74 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_04_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_reg_w
f/fsl_bbr_wf/compare_transforms".
260420-05:08:58,74 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_wf/
t1w_boldref".
260420-05:08:58,76 nipype.workflow INFO:
	 [Node] Executing "compare_transforms" <nipy
pe.interfaces.utility.wrappers.Function>
260420-05:08:58,78 nipype.workflow INFO:
	 [Node] Executing
 "t1w_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:08:58,100 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.022
822s.
260420-05:08:59,608 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.528799s.
260420-05:09:01,50 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_wf/b
oldref_wm".
260420-05:09:01,54 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fix
es.FixHeaderApplyTransforms>
260420-05:09:01,410 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/t1w_mask_tfm".
260420-05:0
9:01,414 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces.fixes.FixHe
aderApplyTransforms>
260420-05:09:01,418 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:09:01,420 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:09:02,72 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 1.017128s.
260420-05:09:02,83 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_04_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_w
f/xfm2itk".
260420-05:09:02,86 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransfo
rms.ConvertAffine>
260420-05:09:02,143 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.056415s.
260420-05:09:02,408 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 0.986717s.
260420-05:09:02,911 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 1.495972s.
260420-05:09:03,94 nipype.workflow INFO:
	 [Node] Finished "mri_coreg", elapsed time 29.04603s.
260420-05:09:04,118 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.lta_to_fsl" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bold_reg_
wf/fsl_bbr_wf/lta_to_fsl".
260420-05:09:04,120 nipype.workflow INFO:
	 [Node] Executing "lta_to_fsl"
 <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:09:04,341 nipype.workflow INFO:
	 [Node] Finished "lta_to_fsl", elapsed time 0.219643s.
260420-05:09:04,790 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_wf/
sdc_report".
260420-05:09:04,790 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_
wf/epi_t1_report".
260420-05:09:04,792 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" i
n "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_
02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:09:04,793 nipype.workflow INFO:
	 [Node] Executing "sdc_report" <nireports.interfaces.repo
rting.base.SimpleBeforeAfterRPT>
260420-05:09:04,793 nipype.workflow INFO:
	 [Node] Cached "_acc_msk
_brain0" - collecting precomputed outputs
260420-05:09:04,793 nipype.workflow INFO:
	 [Node] "_acc_m
sk_brain0" found cached.
260420-05:09:04,793 nipype.interface INFO:
	 Report - setting before (/home
/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_run-03_desc-coreg_boldref
.nii.gz) and after (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_
run-03_desc-hmc_boldref.nii.gz) images
260420-05:09:04,793 nipype.interface INFO:
	 Generating visua
l report
260420-05:09:04,794 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/j
ovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold
_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:09:04,794 nipype.workflow INFO:
	 [N
ode] Executing "epi_t1_report" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:
09:04,794 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/derivatives/f
mriprep/sub-104/func/sub-104_task-trust_run-03_desc-coreg_boldref.nii.gz) and after (/home/jovyan/tr
ust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/
func_fit_reports_wf/t1w_boldref/sub-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:09:04,794 ni
pype.interface INFO:
	 Generating visual report
260420-05:09:04,794 nipype.workflow INFO:
	 [Node] C
ached "_acc_msk_brain1" - collecting precomputed outputs
260420-05:09:04,795 nipype.workflow INFO:
 [Node] "_acc_msk_brain1" found cached.
260420-05:09:04,795 nipype.workflow INFO:
	 [Node] Setting-u
p "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf
/bold_task_trust_run_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:09:04
,796 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain2" - collecting precomputed outputs
260420
-05:09:04,796 nipype.workflow INFO:
	 [Node] "_acc_msk_brain2" found cached.
260420-05:09:05,253 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 57.149337s.
260420-05:09:05,454 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/union_mask".
260420-05:09:05,458 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility
.wrappers.Function>
260420-05:09:05,478 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_fit_wf/func_fit_reports_
wf/ds_sdc_report".
260420-05:09:05,481 nipype.workflow INFO:
	 [Node] Executing "ds_sdc_report" <fmr
iprep.interfaces.DerivativesDataSink>
260420-05:09:05,482 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_anat_wf/resample".
260420-05:09:05,483 nipype.wo
rkflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.024076s.
260420-05:09:05,487 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-05:09:05,502 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.020461s.
260420-05:09:06,398 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.flt_bbr" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bold_reg_wf/
fsl_bbr_wf/flt_bbr".
260420-05:09:06,404 nipype.workflow INFO:
	 [Node] Executing "flt_bbr" <nipype.interfaces.fsl.prepro
cess.FLIRT>
260420-05:09:06,410 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_
wf.bold_task_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fi
t_reports_wf/t1w_boldref".
260420-05:09:06,413 nipype.workflow INFO:
	 [Node] Executing "t1w_boldref
" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:09:06,854 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_reports_wf/
boldref_wm".
260420-05:09:06,861 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-05:09:06,870 nipype.workflow INFO:
	 [Node] Setting-up "fmripre
p_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds
_wf/t1w_mask_tfm".
260420-05:09:06,874 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-05:09:06,894 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_anat_wf/fmap_recon".
260420-05:09:06,902 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-05:09:07,607 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.704038s.
260420-05:09:07,652 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 0.790141s.
260420-05:09:07,857 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.439267s.
260420-05:09:08,869 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 38.485794s.
260420-05:09:09,34 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 2.158739s.
260420-05:09:09,250 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_reports_wf/
sdc_report".
260420-05:09:09,254 nipype.workflow INFO:
	 [Node] Executing "sdc_report" <nireports.interfaces.repo
rting.base.SimpleBeforeAfterRPT>
260420-05:09:09,255 nipype.interface INFO:
	 Report - setting befor
e (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_run-04_desc-coreg
_boldref.nii.gz) and after (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_tas
k-trust_run-04_desc-hmc_boldref.nii.gz) images
260420-05:09:09,255 nipype.interface INFO:
	 Generati
ng visual report
260420-05:09:09,267 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/dilated_mask".
260420-05:0
9:09,268 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfaces.morphology.
BinaryDilation>
260420-05:09:09,292 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.023234s.
260420-05:09:10,158 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_reports_
wf/epi_t1_report".
260420-05:09:10,161 nipype.workflow INFO:
	 [Node] Executing "epi_t1_report" <nir
eports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:09:10,161 nipype.interface INFO:
Report - setting before (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-t
rust_run-04_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_reports_wf/t1w_boldref/sub
-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:09:10,161 nipype.interface INFO:
	 Generating v
isual report
260420-05:09:10,162 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104
_wf.bold_task_trust_run_04_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/union_mask".
26
0420-05:09:10,165 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility.w
rappers.Function>
260420-05:09:10,174 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_anat_wf/resample".
260420-05:09:10,178 nipype.wo
rkflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampling.ResampleSeries>
260420-05:09:10,207 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.041579s.
260420-05:09:10,536 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_anat_wf/fmap_recon".
260420-05:09:10,711 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-05:09:11,282 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.568985s.
260420-05:09:12,406 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/dilated_mask".
260420-05:09:12,411 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfaces.
morphology.BinaryDilation>
260420-05:09:12,419 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/subtract_mask".
260420-05:09:12,421 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflows.interfaces
.morphology.BinarySubtraction>
260420-05:09:12,449 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.019163s.
260420-05:09:12,457 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.044531s.
260420-05:09:14,337 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_anat_wf/resample".
260420-05:09:14,338 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/subtract_mask".
260420-05:09:14,340 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflows.interfaces
.morphology.BinarySubtraction>
260420-05:09:14,349 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-05:09:14,370 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.029133s.
260420-05:09:16,286 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/crowncompcor
".
260420-05:09:16,290 nipype.workflow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.
patches.RobustACompCor>
260420-05:09:18,183 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 13.387995s
.
260420-05:09:18,415 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 13.621708s.
260420-05:09:18,837 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 2.546188s.
260420-05:09:20,203 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_reports_
wf/ds_sdc_report".
260420-05:09:20,206 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_fit_wf/func_fit_repor
ts_wf/ds_epi_t1_report".
260420-05:09:20,206 nipype.workflow INFO:
	 [Node] Executing "ds_sdc_report
" <fmriprep.interfaces.DerivativesDataSink>
260420-05:09:20,209 nipype.workflow INFO:
	 [Node] Execu
ting "ds_epi_t1_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:09:20,210 nipype.workflo
w INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_confo
unds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/crowncompcor".
260420-05:09:20,217 nipype.work
flow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.patches.RobustACompCor>
260420-
05:09:20,225 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.017979s.
260420-05:09:20,232 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.02160
4s.
260420-05:09:22,342 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/crow
ncc_metadata_fmt".
260420-05:09:22,343 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_con
founds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:22,345 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces
.nibabel.Binarize>
260420-05:09:22,357 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fmt" <niworkflows.int
erfaces.utility.TSV2JSON>
260420-05:09:22,365 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", elapsed time 0.0
06728s.
260420-05:09:22,391 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.045541s.
260420-05:09:23,506 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.287529s.
260420-05:09:24,42 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 14.787099s.
260420-05:09:24,100 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 13.938719s
.
260420-05:09:24,239 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/crowncompcor".
260420-05:09:24,241 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/crow
ncc_metadata_fmt".
260420-05:09:24,244 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fm
t" <niworkflows.interfaces.utility.TSV2JSON>
260420-05:09:24,246 nipype.workflow INFO:
	 [Node] Sett
ing-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104
_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05
:09:24,247 nipype.workflow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.patches.R
obustACompCor>
260420-05:09:24,247 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin1" <niworkf
lows.interfaces.nibabel.Binarize>
260420-05:09:24,250 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", elapsed time 0.0
05276s.
260420-05:09:24,274 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.
026356s.
260420-05:09:26,327 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fit_wf/func_fit_reports_
wf/ds_sdc_report".
260420-05:09:26,327 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.s
ub_104_wf.bold_task_trust_run_04_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovy
an/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_fi
t_wf/func_fit_reports_wf/ds_epi_t1_report".
260420-05:09:26,330 nipype.workflow INFO:
	 [Node] Setti
ng-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_
wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:
09:26,330 nipype.workflow INFO:
	 [Node] Executing "ds_sdc_report" <fmriprep.interfaces.DerivativesD
ataSink>
260420-05:09:26,331 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niworkflows.i
nterfaces.nibabel.Binarize>
260420-05:09:26,331 nipype.workflow INFO:
	 [Node] Executing "ds_epi_t1_
report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:09:26,333 nipype.workflow INFO:
	 [Node]
 Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/su
b_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:26,335 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces
.nibabel.Binarize>
260420-05:09:26,350 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.018389s.
260420-05:09:26,357 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.026171s.
260420-05:09:26,363 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.02086
3s.
260420-05:09:26,366 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.030597s.
260420-05:09:27,414 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.166576s.
260420-05:09:28,201 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_con
founds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:28,202 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/crowncompcor".
260420-05:0
9:28,202 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_
01_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/crowncc_metadata_fmt".
260420
-05:09:28,202 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin0" - collecting precomputed outputs

260420-05:09:28,202 nipype.workflow INFO:
	 [Node] "_acc_msk_bin0" found cached.
260420-05:09:28,20
3 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/acc_msk_
bin/mapflow/_acc_msk_bin1".
260420-05:09:28,204 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin1
" - collecting precomputed outputs
260420-05:09:28,204 nipype.workflow INFO:
	 [Node] "_acc_msk_bin1
" found cached.
260420-05:09:28,205 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/h
ome/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_ru
n_02_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:09:28,205 nipype.workflow IN
FO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.patches.RobustACompCor>
260420-05:09:2
8,205 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_
msk_bin/mapflow/_acc_msk_bin1".
260420-05:09:28,206 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_
bin2" - collecting precomputed outputs
260420-05:09:28,206 nipype.workflow INFO:
	 [Node] "_acc_msk_
bin2" found cached.
260420-05:09:28,207 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin1" <ni
workflows.interfaces.nibabel.Binarize>
260420-05:09:28,207 nipype.workflow INFO:
	 [Node] Setting-up
 "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bo
ld_task_sharedreward_run_01_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:09:28
,208 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fmt" <niworkflows.interfaces.utility
.TSV2JSON>
260420-05:09:28,208 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niworkflows
.interfaces.nibabel.Binarize>
260420-05:09:28,215 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", elapsed time 0.0
05499s.
260420-05:09:28,224 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.
016767s.
260420-05:09:28,242 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0
.032239s.
260420-05:09:30,481 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_con
founds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:30,483 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin0" - collecting precomputed o
utputs
260420-05:09:30,483 nipype.workflow INFO:
	 [Node] "_acc_msk_bin0" found cached.
260420-05:09:30,484 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_con
founds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:09:30,485 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin1" - collecting precomputed o
utputs
260420-05:09:30,485 nipype.workflow INFO:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:09
:30,489 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/ac
c_msk_bin/mapflow/_acc_msk_bin2".
260420-05:09:30,490 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin2" - collecting precomputed o
utputs
260420-05:09:30,490 nipype.workflow INFO:
	 [Node] "_acc_msk_bin2" found cached.
260420-05:09:30,862 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:30,864 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces
.nibabel.Binarize>
260420-05:09:30,866 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in
"/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01
_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:09:30,866 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25
_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260
420-05:09:30,867 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin1" <niworkflows.interfaces.ni
babel.Binarize>
260420-05:09:30,868 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niwork
flows.interfaces.nibabel.Binarize>
260420-05:09:30,889 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.021s.
260420-05:09:30,902 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.033524s.

260420-05:09:30,903 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.038766s
.
260420-05:09:31,239 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.032676s.
260420-05:09:32,377 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:32,377 nipype.workflow INFO:
	 [Node] Cached "_a
cc_msk_bin0" - collecting precomputed outputs
260420-05:09:32,377 nipype.workflow INFO:
	 [Node] "_a
cc_msk_bin0" found cached.
260420-05:09:32,378 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_b
in1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trus
t_run_01_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:09:32,379 nipype.workflo
w INFO:
	 [Node] Cached "_acc_msk_bin1" - collecting precomputed outputs
260420-05:09:32,379 nipype.
workflow INFO:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:09:32,379 nipype.workflow INFO:
	 [N
ode] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_w
f/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-
05:09:32,380 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin2" - collecting precomputed outputs
260420-05:09:32,380 nipype.workflow INFO:
	 [Node] "_acc_msk_bin2" found cached.
260420-05:09:32,381 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acompcor".
26042
0-05:09:32,384 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patches.R
obustACompCor>
260420-05:09:32,387 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_1
04_wf.bold_task_sharedreward_run_02_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/a
compcor".
260420-05:09:32,391 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.inter
faces.patches.RobustACompCor>
260420-05:09:33,688 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 1.303348s.
260420-05:09:34,118 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acompcor".
260420-05:09:34,123 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patc
hes.RobustACompCor>
260420-05:09:34,676 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 2.283934s.
260420-05:09:36,794 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/rename_ac
ompcor".
260420-05:09:36,798 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/rename_ac
ompcor".
260420-05:09:36,798 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.in
terfaces.confounds.RenameACompCor>
260420-05:09:36,800 nipype.workflow INFO:
	 [Node] Executing "ren
ame_acompcor" <fmriprep.interfaces.confounds.RenameACompCor>
260420-05:09:36,822 nipype.workflow INF
O:
	 [Node] Finished "acompcor", elapsed time 2.698466s.
260420-05:09:36,897 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.093548
s.
260420-05:09:36,982 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.181165
s.
260420-05:09:37,614 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/crowncc_metadata_f
mt".
260420-05:09:37,616 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fmt" <niworkflow
s.interfaces.utility.TSV2JSON>
260420-05:09:37,617 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:09:37,619 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm1" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:09:37,626 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", elapsed time 0.0
09076s.
260420-05:09:38,102 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/signals".
260420-
05:09:38,106 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_shared
reward_run_02_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/signals".
260420-05:09:3
8,106 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.images.SignalExtrac
tion>
260420-05:09:38,109 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces
.images.SignalExtraction>
260420-05:09:38,110 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:09:38,112 nipype.workflow INFO:
	 [Node] Executing
"_acc_msk_tfm2" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:09:39,448 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 1.335588s.
260420-05:09:39,519 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.410075s.
260420-05:09:39,560 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.452999s.
260420-05:09:39,638 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 2.017728s.
260420-05:09:40,202 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/rename_acompcor".
26042
0-05:09:40,202 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trus
t_run_01_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/signals".
260420-05:09:40,204 nipype
.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.interfaces.confounds.RenameACompCor>
260420-05:09:40,205 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.image
s.SignalExtraction>
260420-05:09:40,209 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_m
etadata_filter".
260420-05:09:40,211 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter"
<fmriprep.interfaces.confounds.FilterDropped>
260420-05:09:40,215 nipype.workflow INFO:
	 [Node] Set
ting-up "_acc_msk_tfm0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_10
4_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:09:40
,216 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed outputs
260420-0
5:09:40,217 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:09:40,218 nipype.
workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc
_msk_tfm1".
260420-05:09:40,219 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm1" - collecting p
recomputed outputs
260420-05:09:40,219 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm1" found cached.
260420-05:09:40,220 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:09:40,221 nipype.workflow INFO:
	 [Node] Cached "_a
cc_msk_tfm2" - collecting precomputed outputs
260420-05:09:40,221 nipype.workflow INFO:
	 [Node] "_a
cc_msk_tfm2" found cached.
260420-05:09:40,227 nipype.workflow INFO:
	 [Node] Finished "acc_metadata
_filter", elapsed time 0.014784s.
260420-05:09:40,321 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.115402
s.
260420-05:09:40,363 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 64.279416s.
260420-05:09:40,765 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/acc_m
etadata_filter".
260420-05:09:40,768 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-05:09:40,781 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
8857s.
260420-05:09:41,915 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.70962300000000
01s.
260420-05:09:42,534 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/crowncompcor".
260420-05:09:42,537 nipype.workflow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.
patches.RobustACompCor>
260420-05:09:44,189 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/crowncompcor".
260420-05:0
9:44,192 nipype.workflow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.patches.Rob
ustACompCor>
260420-05:09:45,624 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.085942s.
260420-05:09:46,142 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/rois_plot".
260420-05:09:46,145 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.rep
ortlets.masks.ROIsPlot>
260420-05:09:46,442 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_metadata_filter
".
260420-05:09:46,444 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-05:09:46,453 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
8429s.
260420-05:09:46,539 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 41.051873s.
260420-05:09:47,280 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.08637s.
260420-05:09:48,118 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/rois_plot".
260420-05:09:48,121 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/crowncc_metadata_f
mt".
260420-05:09:48,122 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold
_task_trust_run_04_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/crowncc_metad
ata_fmt".
260420-05:09:48,122 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf
.bold_task_sharedreward_run_01_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/co
mpcor_plot".
260420-05:09:48,124 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fmt" <ni
workflows.interfaces.utility.TSV2JSON>
260420-05:09:48,124 nipype.workflow INFO:
	 [Node] Executing
"rois_plot" <niworkflows.interfaces.reportlets.masks.ROIsPlot>
260420-05:09:48,124 nipype.workflow I
NFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nuisance.CompCorVariancePlot>
260420-05:09:48,129 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fmt" <niworkflows.int
erfaces.utility.TSV2JSON>
260420-05:09:48,133 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", elapsed time 0.0
0501s.
260420-05:09:48,136 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", elapsed time 0.0
06525s.
260420-05:09:48,144 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/acc_meta
data_fmt".
260420-05:09:48,148 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkfl
ows.interfaces.utility.TSV2JSON>
260420-05:09:48,167 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/model_exp
ansion".
260420-05:09:48,169 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows
.interfaces.confounds.ExpandModel>
260420-05:09:48,194 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.04490
1s.
260420-05:09:48,414 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.243738
s.
260420-05:09:48,578 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 34.227207s.
260420-05:09:48,705 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.580292s.
260420-05:09:50,202 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/conf_corr_
plot".
260420-05:09:50,202 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_sharedreward_run_02_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/compc
or_plot".
260420-05:09:50,205 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nu
isance.CompCorVariancePlot>
260420-05:09:50,206 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/acc_meta
data_fmt".
260420-05:09:50,208 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.interfa
ces.utility.TSV2JSON>
260420-05:09:50,210 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot"
<nireports.interfaces.nuisance.ConfoundsCorrelationPlot>
260420-05:09:50,210 nipype.workflow INFO:
 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward_run_02_wf.bold_confounds_wf.m
odel_expansion" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bol
d_task_sharedreward_run_02_wf/bold_confounds_wf/model_expansion".
260420-05:09:50,213 nipype.workflo
w INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.00434s.
260420-05:09:50,213 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/rois_plot".
260420-05:09:50,216 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.rep
ortlets.masks.ROIsPlot>
260420-05:09:50,231 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows.interfac
es.confounds.ExpandModel>
260420-05:09:50,452 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.220395
s.
260420-05:09:50,742 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:09:50,744 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:09:50,750 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.544032s.
260420-05:09:51,462 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 41.282823s.
260420-05:09:51,572 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 1.3610229
999999999s.
260420-05:09:52,182 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.436805s.
260420-05:09:52,264 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/conf_corr_
plot".
260420-05:09:52,266 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/compcor_plot".
260420-05:09:52,268 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nu
isance.CompCorVariancePlot>
260420-05:09:52,274 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.
nuisance.ConfoundsCorrelationPlot>
260420-05:09:52,281 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/acc_metadata_fmt".
260
420-05:09:52,284 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.interfaces
.utility.TSV2JSON>
260420-05:09:52,289 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.00511
7s.
260420-05:09:52,290 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_
task_trust_run_01_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/conf_corr_plot".
260
420-05:09:52,292 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_tr
ust_run_01_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/model_expansion".
260420-05:09:52,300 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.
nuisance.ConfoundsCorrelationPlot>
260420-05:09:52,303 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows.interfac
es.confounds.ExpandModel>
260420-05:09:52,553 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.249347
s.
260420-05:09:52,743 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.47396s.
260420-05:09:53,302 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 1.000704s
.
260420-05:09:53,320 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 1.045342s
.
260420-05:09:54,511 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_confounds_wf/spike_re
gressors".
260420-05:09:54,515 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfa
ces.confounds.SpikeRegressors>
260420-05:09:54,653 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.13719
5s.
260420-05:09:55,467 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_confounds_wf/spike_re
gressors".
260420-05:09:55,469 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfa
ces.confounds.SpikeRegressors>
260420-05:09:55,660 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.18925
8s.
260420-05:09:56,414 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_confounds_wf/spike_regressors".
260
420-05:09:56,416 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfaces
.confounds.SpikeRegressors>
260420-05:09:56,566 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.14907
3s.
260420-05:09:57,26 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 10.880093s.
260420-05:09:57,86 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_w
f/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:09:57,88 nipype.workflow INFO:
	 [Node] Executing "_
acc_msk_tfm1" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:09:57,90 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_w
f/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:09:57,93 nipype.workflow INFO:
	 [Node] Executing "_
acc_msk_tfm2" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:09:57,93 nipype.work
flow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk
_bin0".
260420-05:09:57,95 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.int
erfaces.nibabel.Binarize>
260420-05:09:57,144 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.048173s.
260420-05:09:57,841 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 0.74736s.
260420-05:09:57,910 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 0.82037s.
260420-05:09:58,182 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:09:58,183 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:09:58,184 nipype.workflow INFO:
	 [Node] Executing
"_acc_msk_bin2" <niworkflows.interfaces.nibabel.Binarize>
260420-05:09:58,184 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin1" <niworkflows.interfaces.nibabel.Binarize>
260420-05:09:58,208 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.023378s.
260420-05:09:58,210 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.024712s.
260420-05:09:59,98 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_w
f/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:09:59,99 nipype.workflow INFO:
	 [Node] Cached "_acc
_msk_bin0" - collecting precomputed outputs
260420-05:09:59,99 nipype.workflow INFO:
	 [Node] "_acc_
msk_bin0" found cached.
260420-05:09:59,99 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1"
 in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_ru
n_02_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:09:59,99 nipype.workflow INF
O:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:09:59,100 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin1" - collecting precomputed o
utputs
260420-05:09:59,100 nipype.workflow INFO:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:09
:59,100 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed outputs
26042
0-05:09:59,100 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:09:59,100 nipy
pe.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_msk_bin/mapflow/_
acc_msk_bin2".
260420-05:09:59,101 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/ho
me/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/
bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:09:59,102 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm1" - collecting precomputed o
utputs
260420-05:09:59,102 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm1" found cached.
260420-05:09
:59,102 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_t
fm/mapflow/_acc_msk_tfm2".
260420-05:09:59,103 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2"
 - collecting precomputed outputs
260420-05:09:59,103 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2"
 found cached.
260420-05:09:59,105 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin2" - collectin
g precomputed outputs
260420-05:09:59,105 nipype.workflow INFO:
	 [Node] "_acc_msk_bin2" found cache
d.
260420-05:09:59,459 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 11.334436s.
260420-05:10:00,526 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 10.309279s.
260420-05:10:00,722 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:10:00,724 nipype.workflow INFO:
	 [No
de] Executing "_fsl_to_lta0" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:10:00,726 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:10:00,727 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:10:00,730 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:10:00,731 nipype.workflow INFO:
	 [Node] Exec
uting "_acc_msk_brain0" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:10:00,742 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:10:00,744 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain1" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:10:00,746 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:10:00,747 nipype.workflow INFO:
	 [Node] Exec
uting "_acc_msk_brain2" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:10:00,787 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.055089
s.
260420-05:10:00,795 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.046677
s.
260420-05:10:00,801 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.055912
s.
260420-05:10:01,155 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.430045s.
260420-05:10:01,219 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.49118s.
260420-05:10:01,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acompcor".
260420-05:10:01,594 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patc
hes.RobustACompCor>
260420-05:10:02,706 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/
bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:10:02,706 nipype.workflow INFO:
 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2
_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_
fsl_to_lta0".
260420-05:10:02,708 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflo
ws.interfaces.freesurfer.PatchedLTAConvert>
260420-05:10:02,708 nipype.workflow INFO:
	 [Node] Execu
ting "_fsl_to_lta0" <niworkflows.interfaces.freesurfer.PatchedLTAConvert>
260420-05:10:03,22 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta1", elapsed time 0.313642s.
260420-05:10:03,94 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.384634s.
260420-05:10:03,166 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold
_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:10:03,166 nipype.workflow INFO:
	 [No
de] Cached "_fsl_to_lta0" - collecting precomputed outputs
260420-05:10:03,166 nipype.workflow INFO:

	 [Node] "_fsl_to_lta0" found cached.
260420-05:10:03,167 nipype.workflow INFO:
	 [Node] Setting-up
 "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bol
d_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-0
5:10:03,168 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" - collecting precomputed outputs
26
0420-05:10:03,168 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" found cached.
260420-05:10:03,169 ni
pype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_msk_brain/map
flow/_acc_msk_brain0".
260420-05:10:03,170 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain0" - collecting precomputed
 outputs
260420-05:10:03,170 nipype.workflow INFO:
	 [Node] "_acc_msk_brain0" found cached.
260420-0
5:10:03,170 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc
_msk_brain/mapflow/_acc_msk_brain1".
260420-05:10:03,171 nipype.workflow INFO:
	 [Node] Cached "_acc
_msk_brain1" - collecting precomputed outputs
260420-05:10:03,171 nipype.workflow INFO:
	 [Node] "_a
cc_msk_brain1" found cached.
260420-05:10:03,172 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk
_brain2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_
trust_run_03_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:10:03,172 nipype
.workflow INFO:
	 [Node] Cached "_acc_msk_brain2" - collecting precomputed outputs
260420-05:10:03,1
72 nipype.workflow INFO:
	 [Node] "_acc_msk_brain2" found cached.
260420-05:10:03,178 nipype.workflo
w INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_confounds_wf
.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task
_trust_run_02_wf/bold_confounds_wf/signals".
260420-05:10:03,182 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.image
s.SignalExtraction>
260420-05:10:03,194 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/rois_plot".
260420-05:10:03,198 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.rep
ortlets.masks.ROIsPlot>
260420-05:10:03,198 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brai
n0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust
_run_04_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:10:03,199 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:10:03,202 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:10:03,204 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain1" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:10:03,233 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.027831
s.
260420-05:10:03,247 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.046839
s.
260420-05:10:03,728 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 2.132766s.
260420-05:10:04,666 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.48324800000000
01s.
260420-05:10:05,333 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/
bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:10:05,333 nipype.workflow INFO:
 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.bold_reg_wf.fs
l_bbr_wf.compare_transforms" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/compare_transforms".
260420-0
5:10:05,334 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta0" - collecting precomputed outputs
26
0420-05:10:05,334 nipype.workflow INFO:
	 [Node] "_fsl_to_lta0" found cached.
260420-05:10:05,335 ni
pype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf
/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:10:05,335 nipype.workflow INFO:
	 [Node] Cached "_fsl_t
o_lta1" - collecting precomputed outputs
260420-05:10:05,335 nipype.workflow INFO:
	 [Node] "_fsl_to
_lta1" found cached.
260420-05:10:05,336 nipype.workflow INFO:
	 [Node] Executing "compare_transform
s" <nipype.interfaces.utility.wrappers.Function>
260420-05:10:05,337 nipype.workflow INFO:
	 [Node]
Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.bold_confounds_wf.rename_acompcor"
 in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_ru
n_02_wf/bold_confounds_wf/rename_acompcor".
260420-05:10:05,337 nipype.workflow INFO:
	 [Node] Setti
ng-up "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_10
4_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:1
0:05,339 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain2" <niworkflows.interfaces.nibabel.
ApplyMask>
260420-05:10:05,341 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed
 time 0.004368s.
260420-05:10:05,343 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmr
iprep.interfaces.confounds.RenameACompCor>
260420-05:10:05,359 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.019725
s.
260420-05:10:05,436 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.092133
s.
260420-05:10:05,888 nipype.workflow INFO:
	 [Node] Finished "flt_bbr", elapsed time 59.48282s.
260420-05:10:07,638 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/b
old_reg_wf/fsl_bbr_wf/compare_transforms".
260420-05:10:07,640 nipype.workflow INFO:
	 [Node] Executing "compare_transforms" <nipype.interfaces
.utility.wrappers.Function>
260420-05:10:07,645 nipype.workflow INFO:
	 [Node] Finished "compare_transforms", elapsed time 0.004
361s.
260420-05:10:08,293 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:10:08,294 nipype.workflow INFO:
	 [Node] Cach
ed "_acc_msk_brain0" - collecting precomputed outputs
260420-05:10:08,294 nipype.workflow INFO:
	 [N
ode] "_acc_msk_brain0" found cached.
260420-05:10:08,294 nipype.workflow INFO:
	 [Node] Setting-up "
_acc_msk_brain1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bo
ld_task_trust_run_04_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:10:08,29
5 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain1" - collecting precomputed outputs
260420-05
:10:08,295 nipype.workflow INFO:
	 [Node] "_acc_msk_brain1" found cached.
260420-05:10:08,296 nipype
.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_brain/mapflow
/_acc_msk_brain2".
260420-05:10:08,296 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain2" - col
lecting precomputed outputs
260420-05:10:08,296 nipype.workflow INFO:
	 [Node] "_acc_msk_brain2" fou
nd cached.
260420-05:10:08,306 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_metadata_filter
".
260420-05:10:08,308 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-05:10:08,317 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
7886s.
260420-05:10:08,770 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/compcor_plot".
260420-05:10:08,774 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:10:08,775 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces
.nibabel.Binarize>
260420-05:10:08,777 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nu
isance.CompCorVariancePlot>
260420-05:10:08,778 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:10:08,779 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin1" <niworkflows.interfaces
.nibabel.Binarize>
260420-05:10:08,786 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:10:08,787 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niworkflows.interfaces
.nibabel.Binarize>
260420-05:10:08,799 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.018744s.
260420-05:10:08,800 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.024217s.
260420-05:10:08,827 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.039485s.
260420-05:10:09,194 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.416579s.
260420-05:10:10,178 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_
wf/xfm2itk".
260420-05:10:10,181 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransf
orms.ConvertAffine>
260420-05:10:10,227 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.045218s.
260420-05:10:10,562 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/acc_metadata_fmt".
260
420-05:10:10,565 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.interfaces
.utility.TSV2JSON>
260420-05:10:10,572 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", e
lapsed time 0.005943s.
260420-05:10:10,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/conf_corr_plot".
260420-05:10:10,598 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.
nuisance.ConfoundsCorrelationPlot>
260420-05:10:10,602 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/model_expansion".
260420-05:10:10,604 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows.interfac
es.confounds.ExpandModel>
260420-05:10:10,783 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.178311
s.
260420-05:10:11,295 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/bold_reg_wf/
fsl_bbr_wf/xfm2itk".
260420-05:10:11,298 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransf
orms.ConvertAffine>
260420-05:10:11,343 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.044885s.
260420-05:10:11,668 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 1.067511s
.
260420-05:10:11,912 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_
wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:10:11,913 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin0" - collecting precomputed o
utputs
260420-05:10:11,913 nipype.workflow INFO:
	 [Node] "_acc_msk_bin0" found cached.
260420-05:10
:11,914 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_msk_b
in/mapflow/_acc_msk_bin1".
260420-05:10:11,914 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin1" - collecting precomputed o
utputs
260420-05:10:11,915 nipype.workflow INFO:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:10
:11,915 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_msk_b
in/mapflow/_acc_msk_bin2".
260420-05:10:11,916 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin2"
 - collecting precomputed outputs
260420-05:10:11,916 nipype.workflow INFO:
	 [Node] "_acc_msk_bin2"
 found cached.
260420-05:10:12,802 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/
bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:10:12,804 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta0" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:10:13,82 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_lta0", elapsed time 0.277635s.
260420-05:10:13,158 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/
bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:10:13,160 nipype.workflow INFO:
	 [Node] Executing "_fsl_to_lta1" <niworkflows.interfaces.
freesurfer.PatchedLTAConvert>
260420-05:10:13,162 nipype.workflow INFO:
	 [Node] Setting-up "_acc_ms
k_bin0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_t
rust_run_04_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:10:13,163 nipype.work
flow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces.nibabel.Binarize>
260420-05:10
:13,166 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_b
in/mapflow/_acc_msk_bin1".
260420-05:10:13,168 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bi
n1" <niworkflows.interfaces.nibabel.Binarize>
260420-05:10:13,170 nipype.workflow INFO:
	 [Node] Set
ting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_10
4_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:10:13
,171 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niworkflows.interfaces.nibabel.Binari
ze>
260420-05:10:13,196 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.032086s.

260420-05:10:13,203 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.033892s
.
260420-05:10:13,209 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.037548
s.
260420-05:10:13,298 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 10.099081s.
260420-05:10:13,497 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_wf
/t1w_boldref".
260420-05:10:13,501 nipype.workflow INFO:
	 [Node] Executing "t1w_boldref" <niworkflo
ws.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:13,502 nipype.workflow INFO:
	 [Node] Set
ting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.boldr
ef_wm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_tr
ust_run_05_wf/bold_fit_wf/func_fit_reports_wf/boldref_wm".
260420-05:10:13,506 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-05:10:13,519 nipype.workflow INFO:
	 [Node] Finished "_fsl_to_l
ta1", elapsed time 0.358748s.
260420-05:10:13,846 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/t1w_mask_tfm".
260420-05:10:13,849 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acompcor".
260420-05:10:13,853
 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patches.RobustACompCor>

260420-05:10:13,854 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:10:14,592 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 1.085895s.
260420-05:10:14,761 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.259345s.
260420-05:10:15,519 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_re
ports_wf/t1w_boldref".
260420-05:10:15,521 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_rep
orts_wf/boldref_wm".
260420-05:10:15,523 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta0" in
 "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_r
un_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta0".
260420-05:10:15,524 ni
pype.workflow INFO:
	 [Node] Executing "t1w_boldref" <niworkflows.interfaces.fixes.FixHeaderApplyTra
nsforms>
260420-05:10:15,525 nipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta0" - collecting preco
mputed outputs
260420-05:10:15,525 nipype.workflow INFO:
	 [Node] "_fsl_to_lta0" found cached.
26042
0-05:10:15,525 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fixes.F
ixHeaderApplyTransforms>
260420-05:10:15,530 nipype.workflow INFO:
	 [Node] Setting-up "_fsl_to_lta1
" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimat
um_run_02_wf/bold_fit_wf/bold_reg_wf/fsl_bbr_wf/fsl_to_lta/mapflow/_fsl_to_lta1".
260420-05:10:15,53
0 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_
wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/t1w_mask_tfm".
260420-05:10:15,531 n
ipype.workflow INFO:
	 [Node] Cached "_fsl_to_lta1" - collecting precomputed outputs
260420-05:10:15
,531 nipype.workflow INFO:
	 [Node] "_fsl_to_lta1" found cached.
260420-05:10:15,534 nipype.workflow
 INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:15,554 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_wf/
sdc_report".
260420-05:10:15,558 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104
_wf.bold_task_trust_run_05_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func
_fit_reports_wf/epi_t1_report".
260420-05:10:15,558 nipype.workflow INFO:
	 [Node] Executing "sdc_re
port" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:10:15,558 nipype.interfac
e INFO:
	 Report - setting before (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-
104_task-trust_run-05_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/derivatives/f
mriprep/sub-104/func/sub-104_task-trust_run-05_desc-hmc_boldref.nii.gz) images
260420-05:10:15,559 n
ipype.interface INFO:
	 Generating visual report
260420-05:10:15,561 nipype.workflow INFO:
	 [Node]
Executing "epi_t1_report" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:10:15
,561 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/derivatives/fmripr
ep/sub-104/func/sub-104_task-trust_run-05_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_
fit_reports_wf/t1w_boldref/sub-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:10:15,561 nipype.
interface INFO:
	 Generating visual report
260420-05:10:15,998 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 2.142623s.
260420-05:10:16,306 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 2.4523989999999
998s.
260420-05:10:16,667 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 1.140809s.
260420-05:10:17,62 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_w
f/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:10:17,62 nipype.workflow INFO:
	 [Node] Cached "_acc
_msk_bin0" - collecting precomputed outputs
260420-05:10:17,62 nipype.workflow INFO:
	 [Node] "_acc_
msk_bin0" found cached.
260420-05:10:17,63 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1"
 in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_ru
n_04_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:10:17,63 nipype.workflow INF
O:
	 [Node] Cached "_acc_msk_bin1" - collecting precomputed outputs
260420-05:10:17,63 nipype.workfl
ow INFO:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:10:17,64 nipype.workflow INFO:
	 [Node] Se
tting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:10:1
7,64 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin2" - collecting precomputed outputs
260420-0
5:10:17,64 nipype.workflow INFO:
	 [Node] "_acc_msk_bin2" found cached.
260420-05:10:17,88 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.563296s.
260420-05:10:17,141 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 1.606532s.
260420-05:10:18,30 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_02_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_confounds_wf/spike_regressors".
2604
20-05:10:18,32 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfaces.c
onfounds.SpikeRegressors>
260420-05:10:18,65 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.compare_transforms" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bo
ld_reg_wf/fsl_bbr_wf/compare_transforms".
260420-05:10:18,68 nipype.workflow INFO:
	 [Node] Executin
g "compare_transforms" <nipype.interfaces.utility.wrappers.Function>
260420-05:10:18,70 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_05_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/union_mask".
260420-05:10:18,
71 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01
_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_reports_wf/sdc_repor
t".
260420-05:10:18,71 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_f
it_reports_wf/epi_t1_report".
260420-05:10:18,73 nipype.workflow INFO:
	 [Node] Finished "compare_tr
ansforms", elapsed time 0.004537s.
260420-05:10:18,73 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility.
wrappers.Function>
260420-05:10:18,74 nipype.workflow INFO:
	 [Node] Executing "sdc_report" <nirepor
ts.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:10:18,75 nipype.interface INFO:
	 Repor
t - setting before (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-ultima
tum_run-01_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/derivatives/fmriprep/sub
-104/func/sub-104_task-ultimatum_run-01_desc-hmc_boldref.nii.gz) images
260420-05:10:18,75 nipype.in
terface INFO:
	 Generating visual report
260420-05:10:18,78 nipype.workflow INFO:
	 [Node] Executing "epi_t1_report" <nireports.interfaces.re
porting.base.SimpleBeforeAfterRPT>
260420-05:10:18,79 nipype.interface INFO:
	 Report - setting befo
re (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-ultimatum_run-01_desc-
coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_reports_wf/t1w_boldref/sub-104_desc-pre
proc_T1w_trans.nii.gz) images
260420-05:10:18,79 nipype.interface INFO:
	 Generating visual report
260420-05:10:18,111 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.036226s.
260420-05:10:18,167 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.13411
4s.
260420-05:10:19,263 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.union_mask" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/union_mask".
260420-05:10:19,266 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_anat_wf/fmap_recon".
260420-05:10:19,266 nipype.workflow INFO:
	 [Node] Executing "union_mask" <nipype.interfaces.utility
.wrappers.Function>
260420-05:10:19,270 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-05:10:19,271 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acompcor".
260420-05:10:19,278 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patc
hes.RobustACompCor>
260420-05:10:19,294 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.026976s.
260420-05:10:19,751 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.479738s.
260420-05:10:21,201 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/dilated_mask".
260420-05:10:21,203 nipype.workflow INFO:
	 [Node] Executing "dilated_mask" <niworkflows.interfaces.
morphology.BinaryDilation>
260420-05:10:21,214 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_2
5_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_anat_wf/fma
p_recon".
260420-05:10:21,218 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.dilated_mask" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/dilated_mask".
260
420-05:10:21,218 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resampli
ng.ReconstructFieldmap>
260420-05:10:21,220 nipype.workflow INFO:
	 [Node] Executing "dilated_mask"
<niworkflows.interfaces.morphology.BinaryDilation>
260420-05:10:21,253 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.049102s.
260420-05:10:21,260 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.039628s.
260420-05:10:21,419 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 2.139595s.
260420-05:10:21,625 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/rename_acompcor".
26042
0-05:10:21,628 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.interfaces.confo
unds.RenameACompCor>
260420-05:10:21,641 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elaps
ed time 0.421612s.
260420-05:10:21,700 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.072117
s.
260420-05:10:22,94 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_02_wf.bold_fit_wf.bold_reg_wf.fsl_bbr_wf.xfm2itk" in "/home/jovyan/trust_example/scrat
ch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/bold_reg_wf/f
sl_bbr_wf/xfm2itk".
260420-05:10:22,97 nipype.workflow INFO:
	 [Node] Executing "xfm2itk" <fmriprep.interfaces.nitransfo
rms.ConvertAffine>
260420-05:10:22,166 nipype.workflow INFO:
	 [Node] Finished "xfm2itk", elapsed time 0.068299s.
260420-05:10:22,477 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_anat_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_anat_wf/resample".
260420-05:10:22,482 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/subtract_mask".
260420-05
:10:22,482 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampling.Resam
pleSeries>
260420-05:10:22,484 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflows
.interfaces.morphology.BinarySubtraction>
260420-05:10:22,486 nipype.workflow INFO:
	 [Node] Setting
-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_anat_wf.resample" in "/home/jovy
an/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bol
d_anat_wf/resample".
260420-05:10:22,491 nipype.workflow INFO:
	 [Node] Executing "resample" <fmripr
ep.interfaces.resampling.ResampleSeries>
260420-05:10:22,494 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.subtract_mask" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/subtract_mask".
2
60420-05:10:22,496 nipype.workflow INFO:
	 [Node] Executing "subtract_mask" <niworkflows.interfaces.
morphology.BinarySubtraction>
260420-05:10:22,511 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.025511s.
260420-05:10:22,526 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.029515s.
260420-05:10:24,590 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/signals".
260420-05:10:24,600 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.image
s.SignalExtraction>
260420-05:10:25,17 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_04_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/rename_acompcor".
260420
-05:10:25,20 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.interfaces.confoun
ds.RenameACompCor>
260420-05:10:25,55 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_04_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/signals".
260420-05:10:25,66 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.images
.SignalExtraction>
260420-05:10:25,154 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.1328s.
260420-05:10:25,601 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_metadata_filter
".
260420-05:10:25,604 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.inte
rfaces.confounds.FilterDropped>
260420-05:10:25,614 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
9324s.
260420-05:10:26,14 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.t1w_boldref" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_rep
orts_wf/t1w_boldref".
260420-05:10:26,21 nipype.workflow INFO:
	 [Node] Executing "t1w_boldref" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-05:10:26,369 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.t1w_mask_tfm" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/t1w_mask_tfm".
260
420-05:10:26,373 nipype.workflow INFO:
	 [Node] Executing "t1w_mask_tfm" <niworkflows.interfaces.fix
es.FixHeaderApplyTransforms>
260420-05:10:26,815 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 2.214542s.
260420-05:10:27,181 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 2.113515s.
260420-05:10:27,828 nipype.workflow INFO:
	 [Node] Finished "t1w_boldref", elapsed time 1.805939s.
260420-05:10:28,88 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 12.526874s.
260420-05:10:28,210 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.boldref_wm" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_rep
orts_wf/boldref_wm".
260420-05:10:28,214 nipype.workflow INFO:
	 [Node] Executing "boldref_wm" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-05:10:28,273 nipype.workflow INFO:
	 [Node] Finished "t1w_mask_tfm", elapsed time 1.899084s.
260420-05:10:28,916 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 13.357279s.
260420-05:10:29,46 nipype.workflow INFO:
	 [Node] Finished "boldref_wm", elapsed time 0.830942s.
260420-05:10:29,548 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/crowncompcor".
260420-05:10:29,552 nipype.workflow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.
patches.RobustACompCor>
260420-05:10:30,220 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.sdc_report" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_rep
orts_wf/sdc_report".
260420-05:10:30,222 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.epi_t1_report" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_
reports_wf/epi_t1_report".
260420-05:10:30,223 nipype.workflow INFO:
	 [Node] Executing "sdc_report"
 <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:10:30,224 nipype.interface INF
O:
	 Report - setting before (/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_t
ask-ultimatum_run-02_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_example/derivatives/fm
riprep/sub-104/func/sub-104_task-ultimatum_run-02_desc-hmc_boldref.nii.gz) images
260420-05:10:30,22
4 nipype.interface INFO:
	 Generating visual report
260420-05:10:30,226 nipype.workflow INFO:
	 [Nod
e] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_confounds_wf.union_mas
k" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultima
tum_run_02_wf/bold_confounds_wf/union_mask".
260420-05:10:30,226 nipype.workflow INFO:
	 [Node] Exec
uting "epi_t1_report" <nireports.interfaces.reporting.base.SimpleBeforeAfterRPT>
260420-05:10:30,226
 nipype.interface INFO:
	 Report - setting before (/home/jovyan/trust_example/derivatives/fmriprep/s
ub-104/func/sub-104_task-ultimatum_run-02_desc-coreg_boldref.nii.gz) and after (/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/f
unc_fit_reports_wf/t1w_boldref/sub-104_desc-preproc_T1w_trans.nii.gz) images
260420-05:10:30,226 nip
ype.interface INFO:
	 Generating visual report
260420-05:10:30,229 nipype.workflow INFO:
	 [Node] Ex
ecuting "union_mask" <nipype.interfaces.utility.wrappers.Function>
260420-05:10:30,230 nipype.workfl
ow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_fit_wf.func
_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf
/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_wf/ds_sdc_report".
260420-05:10:3
0,230 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_05_
wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_fit_wf/func_fit_reports_wf/ds_epi_t
1_report".
260420-05:10:30,233 nipype.workflow INFO:
	 [Node] Executing "ds_epi_t1_report" <fmriprep
.interfaces.DerivativesDataSink>
260420-05:10:30,233 nipype.workflow INFO:
	 [Node] Executing "ds_sd
c_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:10:30,249 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.01489
1s.
260420-05:10:30,257 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.0224
62s.
260420-05:10:30,261 nipype.workflow INFO:
	 [Node] Finished "union_mask", elapsed time 0.031462
s.
260420-05:10:31,876 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 13.800777s.
260420-05:10:32,214 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_anat_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_anat_wf/fmap_recon".
260420-05:10:32,2
16 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 14.137168s.
260420-05:10:32,232 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-05:10:32,233 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_2
5_2_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_conf
ounds_wf/crowncompcor".
260420-05:10:32,237 nipype.workflow INFO:
	 [Node] Executing "crowncompcor"
<niworkflows.interfaces.patches.RobustACompCor>
260420-05:10:32,247 nipype.workflow INFO:
	 [Node] S
etting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_confounds_wf.dilated_mask"
 in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatu
m_run_02_wf/bold_confounds_wf/dilated_mask".
260420-05:10:32,249 nipype.workflow INFO:
	 [Node] Exec
uting "dilated_mask" <niworkflows.interfaces.morphology.BinaryDilation>
260420-05:10:32,280 nipype.workflow INFO:
	 [Node] Finished "dilated_mask", elapsed time 0.029559s.
260420-05:10:32,666 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 0.433801s.
260420-05:10:32,799 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.24634s.
260420-05:10:34,207 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/func_fit_
reports_wf/ds_sdc_report".
260420-05:10:34,207 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_2
5_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_anat_wf.resample" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_anat_wf/resam
ple".
260420-05:10:34,207 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bol
d_task_ultimatum_run_01_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_fit_wf/
func_fit_reports_wf/ds_epi_t1_report".
260420-05:10:34,211 nipype.workflow INFO:
	 [Node] Executing "ds_epi_t1_report" <fmriprep.interfaces
.DerivativesDataSink>
260420-05:10:34,212 nipype.workflow INFO:
	 [Node] Executing "resample" <fmrip
rep.interfaces.resampling.ResampleSeries>
260420-05:10:34,213 nipype.workflow INFO:
	 [Node] Setting
-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.bold_confounds_wf.subtract_mask" in "
/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run
_02_wf/bold_confounds_wf/subtract_mask".
260420-05:10:34,215 nipype.workflow INFO:
	 [Node] Executin
g "ds_sdc_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:10:34,216 nipype.workflow INFO
:
	 [Node] Executing "subtract_mask" <niworkflows.interfaces.morphology.BinarySubtraction>
260420-05:10:34,242 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.026525s.
260420-05:10:34,254 nipype.workflow INFO:
	 [Node] Finished "subtract_mask", elapsed time 0.038019s.
260420-05:10:34,260 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.04759
s.
260420-05:10:34,957 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 2.719721s.
260420-05:10:35,210 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_metadata_filter
".
260420-05:10:35,212 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-05:10:35,221 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
8131s.
260420-05:10:36,182 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.crowncompcor" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/crowncompcor".
260
420-05:10:36,182 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_tr
ust_run_03_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/rois_plot".
260420-05:10:36,185
nipype.workflow INFO:
	 [Node] Executing "crowncompcor" <niworkflows.interfaces.patches.RobustACompC
or>
260420-05:10:36,185 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.rep
ortlets.masks.ROIsPlot>
260420-05:10:36,606 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/crowncc_metadata_f
mt".
260420-05:10:36,608 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_fmt" <niworkflows.int
erfaces.utility.TSV2JSON>
260420-05:10:36,617 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/crowncc_me
tadata_fmt".
260420-05:10:36,618 nipype.workflow INFO:
	 [Node] Finished "crowncc_metadata_fmt", ela
psed time 0.009065s.
260420-05:10:36,620 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_
fmt" <niworkflows.interfaces.utility.TSV2JSON>
260420-05:10:36,625 nipype.workflow INFO:
	 [Node] Fi
nished "crowncc_metadata_fmt", elapsed time 0.004505s.
260420-05:10:38,218 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/acc_metadata_fmt".
260
420-05:10:38,218 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_tr
ust_run_03_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/compcor_plot".
260420-05:10:3
8,220 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.interfaces.utility.TS
V2JSON>
260420-05:10:38,220 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.inter
faces.nuisance.CompCorVariancePlot>
260420-05:10:38,225 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.00455
1s.
260420-05:10:38,724 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.502897s.
260420-05:10:39,208 nipype.workflow INFO:
	 [Node] Finished "crowncompcor", elapsed time 3.02233s.
260420-05:10:40,306 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/rois_plot".
260420-05:10:40,3
09 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.reportlets.masks.ROI
sPlot>
260420-05:10:40,314 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_ultimatum_run_02_wf.bold_confounds_wf.crowncc_metadata_fmt" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/cro
wncc_metadata_fmt".
260420-05:10:40,316 nipype.workflow INFO:
	 [Node] Executing "crowncc_metadata_f
mt" <niworkflows.interfaces.utility.TSV2JSON>
260420-05:10:40,321 nipype.workflow INFO:
	 [Node] Fin
ished "crowncc_metadata_fmt", elapsed time 0.004175s.
260420-05:10:42,94 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_03_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/model_expansion".
260420
-05:10:42,97 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows.interfaces.conf
ounds.ExpandModel>
260420-05:10:42,274 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.177048
s.
260420-05:10:43,340 nipype.workflow INFO:
	 [Node] Finished "epi_t1_report", elapsed time 13.113736s
.
260420-05:10:44,117 nipype.workflow INFO:
	 [Node] Finished "sdc_report", elapsed time 13.892732s.
260420-05:10:44,319 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_epi_t1_report" in "/home/jovyan/trust_exampl
e/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_f
it_reports_wf/ds_epi_t1_report".
260420-05:10:44,319 nipype.workflow INFO:
	 [Node] Setting-up "_acc
_msk_tfm0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_tas
k_trust_run_05_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:10:44,321 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:10:44,322 nipype.workflow INFO:
	 [Node] Executing "ds_ep
i_t1_report" <fmriprep.interfaces.DerivativesDataSink>
260420-05:10:44,336 nipype.workflow INFO:
	 [Node] Finished "ds_epi_t1_report", elapsed time 0.01260
5s.
260420-05:10:46,140 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_fit_wf.func_fit_reports_wf.ds_sdc_report" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_fit_wf/func_fit_
reports_wf/ds_sdc_report".
260420-05:10:46,142 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_t
fm1" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trus
t_run_05_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:10:46,143 nipype.workflo
w INFO:
	 [Node] Executing "_acc_msk_tfm1" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
2
60420-05:10:46,144 nipype.workflow INFO:
	 [Node] Executing "ds_sdc_report" <fmriprep.interfaces.Der
ivativesDataSink>
260420-05:10:46,176 nipype.workflow INFO:
	 [Node] Finished "ds_sdc_report", elapsed time 0.03049s.
260420-05:10:46,218 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.89615100
00000001s.
260420-05:10:47,859 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 1.71489199
99999999s.
260420-05:10:48,82 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_03_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/conf_corr_plot".
260420-0
5:10:48,82 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_ms
k_tfm/mapflow/_acc_msk_tfm2".
260420-05:10:48,84 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_
tfm2" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:48,100 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.
nuisance.ConfoundsCorrelationPlot>
260420-05:10:48,196 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 12.010198s.
260420-05:10:49,174 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 1.072331s
.
260420-05:10:49,375 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 1.290033s.
260420-05:10:50,148 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_
wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:10:50,158 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed o
utputs
260420-05:10:50,159 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:10
:50,161 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_msk_t
fm/mapflow/_acc_msk_tfm1".
260420-05:10:50,162 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm1"
 - collecting precomputed outputs
260420-05:10:50,162 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm1"
 found cached.
260420-05:10:50,164 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/ho
me/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/
bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:10:50,170 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomputed o
utputs
260420-05:10:50,170 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:10:50,630 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/compcor_plot".
260420-05:1
0:50,630 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_
04_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/acc_metadata_fmt".
260420-05:10:5
0,633 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nuisance.CompCor
VariancePlot>
260420-05:10:50,633 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niwor
kflows.interfaces.utility.TSV2JSON>
260420-05:10:50,637 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/conf_corr_plot".
260420-
05:10:50,645 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.011147s.
260
420-05:10:50,645 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.nui
sance.ConfoundsCorrelationPlot>
260420-05:10:50,663 nipype.workflow INFO:
	 [Node] Setting-up "fmrip
rep_25_2_wf.sub_104_wf.bold_task_trust_run_04_wf.bold_confounds_wf.model_expansion" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_conf
ounds_wf/model_expansion".
260420-05:10:50,674 nipype.workflow INFO:
	 [Node] Executing "model_expan
sion" <niworkflows.interfaces.confounds.ExpandModel>
260420-05:10:50,930 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.255325
s.
260420-05:10:51,135 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_confounds_wf/spike_regressors".
260420-05:10:51,137 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfa
ces.confounds.SpikeRegressors>
260420-05:10:51,247 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.614267s.
260420-05:10:51,315 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.17719
8s.
260420-05:10:51,702 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 1.052744s
.
260420-05:10:52,15 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 11.70511s.
260420-05:10:53,262 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_confounds_wf/spike_regressors".
260
420-05:10:53,264 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfaces
.confounds.SpikeRegressors>
260420-05:10:53,395 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.13049
4s.
260420-05:10:54,514 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:10:54,517 nipype.workflow INFO:
	 [Node] Execut
ing "_acc_msk_tfm0" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:54,518 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:10:54,518 nipype.workflow INFO:
	 [Node] Settin
g-up "_acc_msk_tfm2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_w
f/bold_task_ultimatum_run_01_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:10:5
4,520 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm1" <niworkflows.interfaces.fixes.FixHead
erApplyTransforms>
260420-05:10:54,520 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm2" <niw
orkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:54,522 nipype.workflow INFO:
	 [Nod
e] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/
sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
26042
0-05:10:54,522 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_exam
ple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_w
f/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:10:54,524 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_tfm0" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-05:10:54,524 nipype.workflow INFO:
	 [Node] Executing "_acc_
msk_tfm1" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:55,632 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.114148s.
260420-05:10:55,684 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 1.163569s.
260420-05:10:55,757 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 1.231353s.
260420-05:10:55,804 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm1", elapsed time 1.283223s.
260420-05:10:55,969 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm0", elapsed time 1.44397399
99999999s.
260420-05:10:56,970 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confou
nds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:10:56,972 nipype.workflow INFO:
	 [Node] Execut
ing "_acc_msk_tfm2" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-05:10:56,979 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:10:56,981 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:10:56,984 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0"
in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum
_run_01_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:10:56,985 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed o
utputs
260420-05:10:56,986 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:10:56,986 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm1".
260420-05:10:56,987 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm1" - collecting precomputed o
utputs
260420-05:10:56,987 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm1" found cached.
260420-05:10:56,988 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:10:56,989 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomputed o
utputs
260420-05:10:56,989 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:10:57,34 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.052345s
.
260420-05:10:57,350 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:10:57,351 nipype.workflow INFO:
	 [Node] Exec
uting "_acc_msk_brain1" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:10:57,354 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confound
s_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:10:57,355 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain2" <niworkflows.interfac
es.nibabel.ApplyMask>
260420-05:10:57,382 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.026117
s.
260420-05:10:57,393 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.040451
s.
260420-05:10:58,21 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 35.529395s.
260420-05:10:58,124 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_tfm2", elapsed time 1.150954s.
260420-05:10:59,18 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm0" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confoun
ds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm0".
260420-05:10:59,19 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm0" - collecting precomputed ou
tputs
260420-05:10:59,20 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm0" found cached.
260420-05:10:5
9,20 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_tfm1" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_msk_
tfm/mapflow/_acc_msk_tfm1".
260420-05:10:59,21 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_b
rain0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_tr
ust_run_05_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:10:59,21 nipype.wo
rkflow INFO:
	 [Node] Cached "_acc_msk_tfm1" - collecting precomputed outputs
260420-05:10:59,21 nip
ype.workflow INFO:
	 [Node] "_acc_msk_tfm1" found cached.
260420-05:10:59,22 nipype.workflow INFO:
 [Node] Cached "_acc_msk_brain0" - collecting precomputed outputs
260420-05:10:59,22 nipype.workflow
 INFO:
	 [Node] "_acc_msk_brain0" found cached.
260420-05:10:59,22 nipype.workflow INFO:
	 [Node] Se
tting-up "_acc_msk_tfm2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_msk_tfm/mapflow/_acc_msk_tfm2".
260420-05:
10:59,22 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_ms
k_brain/mapflow/_acc_msk_brain1".
260420-05:10:59,23 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_tfm2" - collecting precomputed ou
tputs
260420-05:10:59,23 nipype.workflow INFO:
	 [Node] "_acc_msk_tfm2" found cached.
260420-05:10:5
9,23 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain1" - collecting precomputed outputs
260420
-05:10:59,23 nipype.workflow INFO:
	 [Node] "_acc_msk_brain1" found cached.
260420-05:10:59,24 nipyp
e.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_msk_brain/mapflo
w/_acc_msk_brain2".
260420-05:10:59,24 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain2" - col
lecting precomputed outputs
260420-05:10:59,24 nipype.workflow INFO:
	 [Node] "_acc_msk_brain2" foun
d cached.
260420-05:11:01,26 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 38.54308s.
260420-05:11:01,90 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confo
unds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:11:01,91 nipype.workflow INFO:
	 [Node] Ex
ecuting "_acc_msk_brain0" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:11:01,94 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confo
unds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:11:01,95 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain1" <niworkflows.interface
s.nibabel.ApplyMask>
260420-05:11:01,98 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confo
unds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:11:01,99 nipype.workflow INFO:
	 [Node] Ex
ecuting "_acc_msk_brain2" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:11:01,122 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.026234
s.
260420-05:11:01,126 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.034765
s.
260420-05:11:01,127 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.026
815s.
260420-05:11:03,3 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:11:03,4 nipype.workflow INFO:
	 [Node] Sett
ing-up "_acc_msk_brain0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_1
04_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420
-05:11:03,4 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain0" - collecting precomputed outputs

260420-05:11:03,5 nipype.workflow INFO:
	 [Node] "_acc_msk_brain0" found cached.
260420-05:11:03,5 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_brain0" <niworkflows.interfaces
.nibabel.ApplyMask>
260420-05:11:03,6 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in
 "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_r
un_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain1".
260420-05:11:03,8 nipype.workflow
 INFO:
	 [Node] Executing "_acc_msk_brain1" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:11:
03,9 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_example/scra
tch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/acc_ms
k_brain/mapflow/_acc_msk_brain1".
260420-05:11:03,10 nipype.workflow INFO:
	 [Node] Cached "_acc_msk
_brain1" - collecting precomputed outputs
260420-05:11:03,10 nipype.workflow INFO:
	 [Node] "_acc_ms
k_brain1" found cached.
260420-05:11:03,11 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain
2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultima
tum_run_01_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:11:03,12 nipype.wo
rkflow INFO:
	 [Node] Cached "_acc_msk_brain2" - collecting precomputed outputs
260420-05:11:03,12 n
ipype.workflow INFO:
	 [Node] "_acc_msk_brain2" found cached.
260420-05:11:03,14 nipype.workflow INF
O:
	 [Node] Setting-up "_acc_msk_brain2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk
_brain2".
260420-05:11:03,15 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jov
yan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_c
onfounds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:11:03,15 nipype.workflow INFO:
	 [Node] Ex
ecuting "_acc_msk_brain2" <niworkflows.interfaces.nibabel.ApplyMask>
260420-05:11:03,17 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces.
nibabel.Binarize>
260420-05:11:03,18 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/
home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_w
f/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:11:03,20 nipype.workflow INFO:
	 [
Node] Executing "_acc_msk_bin1" <niworkflows.interfaces.nibabel.Binarize>
260420-05:11:03,26 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_w
f/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:11:03,28 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niworkflows.interfaces.
nibabel.Binarize>
260420-05:11:03,33 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain2", elapsed time 0.017445s
.
260420-05:11:03,36 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.015211s.
260420-05:11:03,39 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain0", elapsed time 0.033419s
.
260420-05:11:03,43 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_brain1", elapsed time 0.033702s
.
260420-05:11:03,44 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.015733s
.
260420-05:11:03,62 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.04394s.
260420-05:11:05,21 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain0" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confo
unds_wf/acc_msk_brain/mapflow/_acc_msk_brain0".
260420-05:11:05,22 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_brain0" - collecting precomputed
outputs
260420-05:11:05,22 nipype.workflow INFO:
	 [Node] "_acc_msk_brain0" found cached.
260420-05:
11:05,22 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_brain1" in "/home/jovyan/trust_example/
scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/ac
c_msk_brain/mapflow/_acc_msk_brain1".
260420-05:11:05,23 nipype.workflow INFO:
	 [Node] Cached "_acc
_msk_brain1" - collecting precomputed outputs
260420-05:11:05,23 nipype.workflow INFO:
	 [Node] "_ac
c_msk_brain1" found cached.
260420-05:11:05,24 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_b
rain2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ul
timatum_run_02_wf/bold_confounds_wf/acc_msk_brain/mapflow/_acc_msk_brain2".
260420-05:11:05,24 nipyp
e.workflow INFO:
	 [Node] Cached "_acc_msk_brain2" - collecting precomputed outputs
260420-05:11:05,
24 nipype.workflow INFO:
	 [Node] "_acc_msk_brain2" found cached.
260420-05:11:05,24 nipype.workflow
 INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin
0".
260420-05:11:05,25 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin0" - collecting precompute
d outputs
260420-05:11:05,25 nipype.workflow INFO:
	 [Node] "_acc_msk_bin0" found cached.
260420-05:
11:05,26 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/sc
ratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_msk_
bin/mapflow/_acc_msk_bin1".
260420-05:11:05,26 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin1"
 - collecting precomputed outputs
260420-05:11:05,26 nipype.workflow INFO:
	 [Node] "_acc_msk_bin1"
found cached.
260420-05:11:05,27 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home
/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bo
ld_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:11:05,27 nipype.workflow INFO:
	 [Node
] Cached "_acc_msk_bin2" - collecting precomputed outputs
260420-05:11:05,27 nipype.workflow INFO:
 [Node] "_acc_msk_bin2" found cached.
260420-05:11:07,374 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acompcor".
260420-05:11:07,378 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patc
hes.RobustACompCor>
260420-05:11:07,698 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:11:07,699 nipype.workflow INFO:
	 [Node] Execut
ing "_acc_msk_bin0" <niworkflows.interfaces.nibabel.Binarize>
260420-05:11:07,702 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:11:07,703 nipype.workflow INFO:
	 [Node] Execut
ing "_acc_msk_bin1" <niworkflows.interfaces.nibabel.Binarize>
260420-05:11:07,706 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confou
nds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:11:07,707 nipype.workflow INFO:
	 [Node] Execut
ing "_acc_msk_bin2" <niworkflows.interfaces.nibabel.Binarize>
260420-05:11:07,723 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.018956s.
260420-05:11:07,726 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.026563s.

260420-05:11:07,726 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.018504s
.
260420-05:11:08,995 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmr
iprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/signals".
260420-05:11:08,996 n
ipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/acc_msk_bin/ma
pflow/_acc_msk_bin0".
260420-05:11:08,997 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin0" - co
llecting precomputed outputs
260420-05:11:08,997 nipype.workflow INFO:
	 [Node] "_acc_msk_bin0" foun
d cached.
260420-05:11:08,998 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jo
vyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/b
old_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin1".
260420-05:11:08,998 nipype.workflow INFO:
	 [No
de] Cached "_acc_msk_bin1" - collecting precomputed outputs
260420-05:11:08,998 nipype.workflow INFO
:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:11:08,999 nipype.workflow INFO:
	 [Node] Setting-
up "_acc_msk_bin2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/
bold_task_ultimatum_run_01_wf/bold_confounds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:11:08,
999 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.images.SignalExtracti
on>
260420-05:11:08,999 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin2" - collecting precomput
ed outputs
260420-05:11:08,999 nipype.workflow INFO:
	 [Node] "_acc_msk_bin2" found cached.
260420-0
5:11:09,0 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run
_05_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25
_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/rois_plot".
260420-05:11:09,2 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confound
s_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:11:09,3 nipype.workflow INFO:
	 [Node] Executing
"rois_plot" <niworkflows.interfaces.reportlets.masks.ROIsPlot>
260420-05:11:09,4 nipype.workflow INF
O:
	 [Node] Executing "_acc_msk_bin0" <niworkflows.interfaces.nibabel.Binarize>
260420-05:11:09,6 ni
pype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_msk_bin/map
flow/_acc_msk_bin1".
260420-05:11:09,7 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin1" <niw
orkflows.interfaces.nibabel.Binarize>
260420-05:11:09,10 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_
example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confoun
ds_wf/acc_msk_bin/mapflow/_acc_msk_bin2".
260420-05:11:09,11 nipype.workflow INFO:
	 [Node] Executing "_acc_msk_bin2" <niworkflows.interfaces.
nibabel.Binarize>
260420-05:11:09,31 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin1", elapsed time 0.022925s.
260420-05:11:09,31 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin2", elapsed time 0.018843s.
260420-05:11:09,38 nipype.workflow INFO:
	 [Node] Finished "_acc_msk_bin0", elapsed time 0.033643s.
260420-05:11:09,324 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 35.11163s.
260420-05:11:09,689 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 2.309315s.
260420-05:11:10,402 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.403019s.
260420-05:11:11,155 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/acompcor".
260420-05:11:11,156 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin0" in "/home/jovyan/trust
_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confou
nds_wf/acc_msk_bin/mapflow/_acc_msk_bin0".
260420-05:11:11,157 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin0" - collecting precomputed o
utputs
260420-05:11:11,157 nipype.workflow INFO:
	 [Node] "_acc_msk_bin0" found cached.
260420-05:11
:11,158 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin1" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_m
sk_bin/mapflow/_acc_msk_bin1".
260420-05:11:11,158 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_bin1" - collecting precomputed o
utputs
260420-05:11:11,158 nipype.workflow INFO:
	 [Node] "_acc_msk_bin1" found cached.
260420-05:11
:11,159 nipype.workflow INFO:
	 [Node] Setting-up "_acc_msk_bin2" in "/home/jovyan/trust_example/scr
atch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_m
sk_bin/mapflow/_acc_msk_bin2".
260420-05:11:11,159 nipype.workflow INFO:
	 [Node] Cached "_acc_msk_b
in2" - collecting precomputed outputs
260420-05:11:11,159 nipype.workflow INFO:
	 [Node] "_acc_msk_b
in2" found cached.
260420-05:11:11,160 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patc
hes.RobustACompCor>
260420-05:11:12,249 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/rename_acompcor".
26042
0-05:11:12,252 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.interfaces.confo
unds.RenameACompCor>
260420-05:11:12,332 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.07946s
.
260420-05:11:13,128 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 1.967047s.
260420-05:11:13,654 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.acompcor" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acompcor".
260420-05:11:13,657 nipype.workflow INFO:
	 [Node] Executing "acompcor" <niworkflows.interfaces.patc
hes.RobustACompCor>
260420-05:11:13,658 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.
sub_104_wf.bold_task_ultimatum_run_01_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/s
cratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/sig
nals".
260420-05:11:13,662 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_metadata_filter
".
260420-05:11:13,662 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.image
s.SignalExtraction>
260420-05:11:13,676 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.interfa
ces.confounds.FilterDropped>
260420-05:11:13,686 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
4634s.
260420-05:11:14,130 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/compcor_plot".
260420-05:11:14,133 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nu
isance.CompCorVariancePlot>
260420-05:11:14,624 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.490945s.
260420-05:11:14,999 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.336395s.
260420-05:11:15,398 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/rename_acompcor
".
260420-05:11:15,400 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.interfac
es.confounds.RenameACompCor>
260420-05:11:15,402 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.signals" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/signals".
260420-05:11:
15,408 nipype.workflow INFO:
	 [Node] Executing "signals" <niworkflows.interfaces.images.SignalExtra
ction>
260420-05:11:15,409 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bo
ld_task_trust_run_05_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/acc_metadata_fm
t".
260420-05:11:15,412 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.int
erfaces.utility.TSV2JSON>
260420-05:11:15,417 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_
fmt", elapsed time 0.004749s.
260420-05:11:15,418 nipype.workflow INFO:
	 [Node] Setting-up "fmripre
p_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/t
rust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confou
nds_wf/model_expansion".
260420-05:11:15,420 nipype.workflow INFO:
	 [Node] Executing "model_expansi
on" <niworkflows.interfaces.confounds.ExpandModel>
260420-05:11:15,493 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.08479s
.
260420-05:11:15,686 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.265495
s.
260420-05:11:15,745 nipype.workflow INFO:
	 [Node] Finished "acompcor", elapsed time 2.0867s.
260420-05:11:16,834 nipype.workflow INFO:
	 [Node] Finished "signals", elapsed time 1.425426s.
260420-05:11:17,54 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_02_wf.bold_confounds_wf.rename_acompcor" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/rename_acompcor"
.
260420-05:11:17,56 nipype.workflow INFO:
	 [Node] Executing "rename_acompcor" <fmriprep.interfaces.c
onfounds.RenameACompCor>
260420-05:11:17,57 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_ultimatum_run_01_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan
/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_
confounds_wf/acc_metadata_filter".
260420-05:11:17,58 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
ultimatum_run_01_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/rois_plot".
260420-05:11:17,60 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmriprep.interfac
es.confounds.FilterDropped>
260420-05:11:17,64 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.repo
rtlets.masks.ROIsPlot>
260420-05:11:17,64 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filt
er", elapsed time 0.004141s.
260420-05:11:17,139 nipype.workflow INFO:
	 [Node] Finished "rename_acompcor", elapsed time 0.082195
s.
260420-05:11:17,854 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.rois_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/rois_plot".
260420-05:11:17,857 nipype.workflow INFO:
	 [Node] Executing "rois_plot" <niworkflows.interfaces.rep
ortlets.masks.ROIsPlot>
260420-05:11:17,858 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_trust_run_05_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/
conf_corr_plot".
260420-05:11:17,872 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nire
ports.interfaces.nuisance.ConfoundsCorrelationPlot>
260420-05:11:18,788 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 0.914773s
.
260420-05:11:19,165 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.acc_metadata_filter" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_metadat
a_filter".
260420-05:11:19,167 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_filter" <fmrip
rep.interfaces.confounds.FilterDropped>
260420-05:11:19,172 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_filter", elapsed time 0.00
367s.
260420-05:11:19,282 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 10.277904s.
260420-05:11:19,574 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/compcor_plot".
260
420-05:11:19,576 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nuisa
nce.CompCorVariancePlot>
260420-05:11:19,585 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/acc_metadata_f
mt".
260420-05:11:19,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/model_expansion
".
260420-05:11:19,586 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_ultimatum_run_01_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/conf_corr_plo
t".
260420-05:11:19,588 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.int
erfaces.utility.TSV2JSON>
260420-05:11:19,588 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows.interfac
es.confounds.ExpandModel>
260420-05:11:19,594 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.00517
4s.
260420-05:11:19,596 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.
nuisance.ConfoundsCorrelationPlot>
260420-05:11:19,757 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.compcor_plot" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/compcor_plot".
260420-05:11:19,759 nipype.workflow INFO:
	 [Node] Executing "compcor_plot" <nireports.interfaces.nu
isance.CompCorVariancePlot>
260420-05:11:19,787 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.197976
s.
260420-05:11:19,959 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.382697s.
260420-05:11:20,110 nipype.workflow INFO:
	 [Node] Finished "compcor_plot", elapsed time 0.350247s.
260420-05:11:20,489 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 0.891936s
.
260420-05:11:21,554 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.acc_metadata_fmt" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/acc_metadata_f
mt".
260420-05:11:21,556 nipype.workflow INFO:
	 [Node] Executing "acc_metadata_fmt" <niworkflows.in
terfaces.utility.TSV2JSON>
260420-05:11:21,558 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.model_expansion" in "/home/jovyan/trust_example/scratch/fmrip
rep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/model_expansion
".
260420-05:11:21,560 nipype.workflow INFO:
	 [Node] Executing "model_expansion" <niworkflows.inter
faces.confounds.ExpandModel>
260420-05:11:21,562 nipype.workflow INFO:
	 [Node] Finished "acc_metadata_fmt", elapsed time 0.00463
4s.
260420-05:11:21,562 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_
task_ultimatum_run_02_wf.bold_confounds_wf.conf_corr_plot" in "/home/jovyan/trust_example/scratch/fm
riprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/conf_corr_pl
ot".
260420-05:11:21,573 nipype.workflow INFO:
	 [Node] Executing "conf_corr_plot" <nireports.interfaces.
nuisance.ConfoundsCorrelationPlot>
260420-05:11:21,736 nipype.workflow INFO:
	 [Node] Finished "model_expansion", elapsed time 0.175513
s.
260420-05:11:21,914 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_confounds_wf/spike_regressors".
260
420-05:11:21,916 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfaces
.confounds.SpikeRegressors>
260420-05:11:22,87 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.170335
s.
260420-05:11:22,462 nipype.workflow INFO:
	 [Node] Finished "conf_corr_plot", elapsed time 0.88789s.
260420-05:11:23,165 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_confounds_wf/spike_regresso
rs".
260420-05:11:23,168 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.in
terfaces.confounds.SpikeRegressors>
260420-05:11:23,310 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.14161
s.
260420-05:11:24,716 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_confounds_wf.spike_regressors" in "/home/jovyan/trust_example/scratch/fmri
prep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_confounds_wf/spike_regresso
rs".
260420-05:11:24,718 nipype.workflow INFO:
	 [Node] Executing "spike_regressors" <niworkflows.interfa
ces.confounds.SpikeRegressors>
260420-05:11:24,859 nipype.workflow INFO:
	 [Node] Finished "spike_regressors", elapsed time 0.13971
7s.
260420-05:11:28,141 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 11.075787s.
260420-05:11:29,341 nipype.workflow INFO:
	 [Node] Finished "rois_plot", elapsed time 11.48275s.
260420-07:06:22,485 nipype.workflow INFO:
	 [Node] Finished "registration", elapsed time 7303.92198s
.
260420-07:27:33,995 nipype.workflow INFO:
	 [Node] Finished "registration", elapsed time 8567.462004
s.
260420-07:27:35,849 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.register_template_wf.outputnode" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25
_2_wf/sub_104_wf/anat_fit_wf/register_template_wf/outputnode".
260420-07:27:35,858 nipype.workflow INFO:
	 [Node] Executing "outputnode" <nipype.interfaces.utility
.base.IdentityInterface>
260420-07:27:35,860 nipype.workflow INFO:
	 [Node] Finished "outputnode", elapsed time 0.000653s.
260420-07:27:37,913 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.template_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf
/anat_fit_wf/template_buffer".
260420-07:27:37,920 nipype.workflow INFO:
	 [Node] Executing "template_buffer" <nipype.interfaces.ut
ility.base.Merge>
260420-07:27:37,922 nipype.workflow INFO:
	 [Node] Finished "template_buffer", elapsed time 0.000473
s.
260420-07:27:43,897 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.anat2std_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf
/anat_fit_wf/anat2std_buffer".
260420-07:27:43,897 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.std2anat_buffer" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf
/anat_fit_wf/std2anat_buffer".
260420-07:27:43,903 nipype.workflow INFO:
	 [Node] Executing "std2anat_buffer" <nipype.interfaces.ut
ility.base.Merge>
260420-07:27:43,906 nipype.workflow INFO:
	 [Node] Finished "std2anat_buffer", elapsed time 0.000573
s.
260420-07:27:43,907 nipype.workflow INFO:
	 [Node] Executing "anat2std_buffer" <nipype.interfaces.ut
ility.base.Merge>
260420-07:27:43,909 nipype.workflow INFO:
	 [Node] Finished "anat2std_buffer", elapsed time 0.000513
s.
260420-07:27:47,941 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.ds_std_vo
lumes_wf.anat2std_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_10
4_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6Asym.res2/anat2std_mask".
260420-07:27:47,943 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.ds_std_vo
lumes_wf.anat2std_dseg" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_10
4_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6Asym.res2/anat2std_dseg".
260420-07:27:47,951 nipype.workflow INFO:
	 [Node] Executing "anat2std_mask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:27:47,951 nipype.workflow INFO:
	 [Node] Executing "anat2
std_dseg" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:27:48,4 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.ds_std_volu
mes_wf.anat2std_t1w" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_w
f/ds_std_volumes_wf/_in_tuple_MNI152NLin6Asym.res2/anat2std_t1w".
260420-07:27:48,15 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_w
f.anat_reports_wf.t1w_std" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub
_104_wf/anat_fit_wf/anat_reports_wf/_in_tuple_MNI152NLin6Asym.res2/t1w_std".
260420-07:27:48,17 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_w
f.anat_reports_wf.mask_std" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/su
b_104_wf/anat_fit_wf/anat_reports_wf/_in_tuple_MNI152NLin6Asym.res2/mask_std".
260420-07:27:48,20 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_01_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/carpetplot_wf/mrg_xfms".
260420-07:27:48,21 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
sharedreward_run_01_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152N
Lin6Asym.res2/boldref2target".
260420-07:27:48,25 nipype.workflow INFO:
	 [Node] Executing "mask_std" <niworkflows.interfaces.fixes
.FixHeaderApplyTransforms>
260420-07:27:48,29 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <n
ipype.interfaces.utility.base.Merge>
260420-07:27:48,31 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces.util
ity.base.Merge>
260420-07:27:48,31 nipype.workflow INFO:
	 [Node] Executing "t1w_std" <niworkflows.i
nterfaces.fixes.FixHeaderApplyTransforms>
260420-07:27:48,31 nipype.workflow INFO:
	 [Node] Finished
 "mrg_xfms", elapsed time 0.00053s.
260420-07:27:48,35 nipype.workflow INFO:
	 [Node] Executing "anat2std_t1w" <niworkflows.interfaces.f
ixes.FixHeaderApplyTransforms>
260420-07:27:48,41 nipype.workflow INFO:
	 [Node] Finished "boldref2target", elapsed time 0.000511s.
260420-07:27:48,486 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6As
ym.res2/sources".
260420-07:27:48,490 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/carpetplot_wf/mrg_xfms".
260420-07:27:
48,494 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_sharedreward
_run_02_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_
2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/sourc
es".
260420-07:27:48,494 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.util
ity.base.Merge>
260420-07:27:48,495 nipype.workflow INFO:
	 [Node] Finished "mrg_xfms", elapsed time
 0.00026s.
260420-07:27:48,507 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:48,509 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.001257s.
260420-07:27:48,542 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:48,545 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.001528s.
260420-07:27:48,956 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmripr
ep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152
NLin6Asym.res2/boldref2target".
260420-07:27:48,960 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces.uti
lity.base.Merge>
260420-07:27:48,961 nipype.workflow INFO:
	 [Node] Finished "boldref2target", elaps
ed time 0.000213s.
260420-07:27:48,961 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.s
ub_104_wf.bold_task_trust_run_01_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/f
mriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/carpetplot_wf/mrg_xfms".
260420-0
7:27:48,965 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.utility.base.Merg
e>
260420-07:27:48,966 nipype.workflow INFO:
	 [Node] Finished "mrg_xfms", elapsed time 0.000164s.
260420-07:27:49,966 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/source
s".
260420-07:27:49,982 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:49,985 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.001881s.
260420-07:27:50,369 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2
/boldref2target".
260420-07:27:50,373 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces.uti
lity.base.Merge>
260420-07:27:50,374 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_trust_run_02_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmr
iprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/carpetplot_wf/mrg_xfms".
260420-07:
27:50,374 nipype.workflow INFO:
	 [Node] Finished "boldref2target", elapsed time 0.000225s.
260420-0
7:27:50,377 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.utility.base.Merg
e>
260420-07:27:50,378 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_t
ask_trust_run_02_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.r
es2/boldref2target".
260420-07:27:50,378 nipype.workflow INFO:
	 [Node] Finished "mrg_xfms", elapsed
 time 0.000237s.
260420-07:27:50,381 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipy
pe.interfaces.utility.base.Merge>
260420-07:27:50,381 nipype.workflow INFO:
	 [Node] Setting-up "fmr
iprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_ex
ample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/ds_bold_std_wf/_in
_tuple_MNI152NLin6Asym.res2/sources".
260420-07:27:50,382 nipype.workflow INFO:
	 [Node] Finished "b
oldref2target", elapsed time 0.000178s.
260420-07:27:50,393 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:50,396 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.00216s.
260420-07:27:50,747 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/carpetplot_wf/mrg_xfms".
260420-07:27:50,750 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/source
s".
260420-07:27:50,751 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.utility.b
ase.Merge>
260420-07:27:50,751 nipype.workflow INFO:
	 [Node] Finished "mrg_xfms", elapsed time 0.00
0198s.
260420-07:27:50,765 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:50,768 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.001942s.
260420-07:27:52,278 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2
/boldref2target".
260420-07:27:52,281 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces.uti
lity.base.Merge>
260420-07:27:52,282 nipype.workflow INFO:
	 [Node] Finished "boldref2target", elaps
ed time 0.000215s.
260420-07:27:52,642 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/carpetplot_wf/mrg_xfms".
260420-07:27:52,643 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/source
s".
260420-07:27:52,645 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.utili
ty.base.Merge>
260420-07:27:52,646 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_1
04_wf.bold_task_trust_run_04_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/ds_bold_std_wf/_in_tuple_MNI15
2NLin6Asym.res2/boldref2target".
260420-07:27:52,646 nipype.workflow INFO:
	 [Node] Finished "mrg_xf
ms", elapsed time 0.000456s.
260420-07:27:52,648 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep
_25_2_wf.sub_104_wf.bold_task_trust_run_05_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example
/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/carpetplot_wf/mrg_xfms"
.
260420-07:27:52,649 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_ta
sk_trust_run_05_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.re
s2/boldref2target".
260420-07:27:52,649 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/source
s".
260420-07:27:52,649 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces
.utility.base.Merge>
260420-07:27:52,650 nipype.workflow INFO:
	 [Node] Finished "boldref2target", e
lapsed time 0.000236s.
260420-07:27:52,651 nipype.workflow INFO:
	 [Node] Executing "boldref2target"
 <nipype.interfaces.utility.base.Merge>
260420-07:27:52,652 nipype.workflow INFO:
	 [Node] Finished
"boldref2target", elapsed time 0.00015s.
260420-07:27:52,653 nipype.workflow INFO:
	 [Node] Executin
g "sources" <fmriprep.interfaces.bids.BIDSURI>
260420-07:27:52,656 nipype.workflow INFO:
	 [Node] Fi
nished "sources", elapsed time 0.001557s.
260420-07:27:52,656 nipype.workflow INFO:
	 [Node] Executi
ng "mrg_xfms" <nipype.interfaces.utility.base.Merge>
260420-07:27:52,656 nipype.workflow INFO:
	 [No
de] Finished "mrg_xfms", elapsed time 0.000194s.
260420-07:27:52,659 nipype.workflow INFO:
	 [Node]
Executing "sources" <fmriprep.interfaces.bids.BIDSURI>
260420-07:27:52,662 nipype.workflow INFO:
	 [
Node] Finished "sources", elapsed time 0.002209s.
260420-07:27:53,402 nipype.workflow INFO:
	 [Node] Finished "t1w_std", elapsed time 5.370179s.
260420-07:27:54,54 nipype.workflow INFO:
	 [Node] Finished "anat2std_t1w", elapsed time 6.018227s.
260420-07:27:54,233 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/carpetplot_wf/mrg_xfms".
260420-07:27:54,237 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.utility.b
ase.Merge>
260420-07:27:54,238 nipype.workflow INFO:
	 [Node] Finished "mrg_xfms", elapsed time 0.0002s.
260420-07:27:54,645 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res
2/sources".
260420-07:27:54,648 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmriprep_
work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6A
sym.res2/boldref2target".
260420-07:27:54,649 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.carpetplot_wf.mrg_xfms" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/carpetplot_wf/mrg_xfms".
260420-07:27:54,652 nipype.workflow INFO:
	 [Node] Executing "mrg_xfms" <nipype.interfaces.utility.b
ase.Merge>
260420-07:27:54,653 nipype.workflow INFO:
	 [Node] Finished "mrg_xfms", elapsed time 0.000228s.
2604
20-07:27:54,653 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ult
imatum_run_02_wf.ds_bold_std_wf.boldref2target" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.
res2/boldref2target".
260420-07:27:54,656 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces.uti
lity.base.Merge>
260420-07:27:54,657 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:54,657 nipype.workflow INFO:
	 [Node] Finished "boldref2target", elapsed time 0.0
00242s.
260420-07:27:54,658 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.001223s.
260420-07:27:54,664 nipype.workflow INFO:
	 [Node] Executing "boldref2target" <nipype.interfaces.uti
lity.base.Merge>
260420-07:27:54,667 nipype.workflow INFO:
	 [Node] Finished "boldref2target", elapsed time 0.000242s
.
260420-07:27:55,102 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.ds_bold_std_wf.sources" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res
2/sources".
260420-07:27:55,103 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/carpetplot_wf/resample_parc".
260420-07:27:55,107 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:27:55,109 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NL
in6Asym.res2/resample_ref".
260420-07:27:55,118 nipype.workflow INFO:
	 [Node] Executing "sources" <fmriprep.interfaces.bids.BID
SURI>
260420-07:27:55,120 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-07:27:55,123 nipype.workflow INFO:
	 [Node] Finished "sources", elapsed time 0.001589s.
260420-07:27:55,653 nipype.workflow INFO:
	 [Node] Finished "mask_std", elapsed time 7.626623s.
260420-07:27:56,258 nipype.workflow INFO:
	 [Node] Finished "anat2std_dseg", elapsed time 8.305343s.
260420-07:27:56,393 nipype.workflow INFO:
	 [Node] Finished "anat2std_mask", elapsed time 8.441113s.
260420-07:27:56,518 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152N
Lin6Asym.res2/resample_mask".
260420-07:27:56,522 nipype.workflow INFO:
	 [Node] Executing "resample_mask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:27:57,706 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/carpetplot_wf/resample_parc".
260420-07:27:57,710 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:27:57,877 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.768962s.
260420-07:27:58,798 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep
_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NL
in6Asym.res2/resample_ref".
260420-07:27:58,802 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152N
Lin6Asym.res2/resample_mask".
260420-07:27:58,806 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/carpetplot_wf/resample_parc".
260420-07:27:58,8
09 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.fixes.FixHeaderAp
plyTransforms>
260420-07:27:58,809 nipype.workflow INFO:
	 [Node] Executing "resample_mask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:27:58,810 nipype.workflow INFO:
	 [Node] Executing "resam
ple_parc" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:27:59,242 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 4.122257s.
260420-07:28:00,97 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_01_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/re
sample_ref".
260420-07:28:00,98 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_01_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/r
esample_mask".
260420-07:28:00,105 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkfl
ows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:00,109 nipype.workflow INFO:
	 [Node] Ex
ecuting "resample_mask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:00,502 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.790451s.
260420-07:28:00,571 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/anat/sub-104_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dtype from float64 to f
loat64
260420-07:28:01,34 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmrip
rep/sub-104/anat/sub-104_space-MNI152NLin6Asym_res-2_dseg.nii.gz dtype from float64 to float64
260420-07:28:01,462 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.650677s.
260420-07:28:02,34 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_w
f.anat_reports_wf.norm_msk" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/su
b_104_wf/anat_fit_wf/anat_reports_wf/_in_tuple_MNI152NLin6Asym.res2/norm_msk".
260420-07:28:02,38 nipype.workflow INFO:
	 [Node] Executing "norm_msk" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:02,38 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_
104_wf.bold_task_trust_run_02_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/carpetplot_wf/resample_parc".
2
60420-07:28:02,41 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkflows.interfaces.f
ixes.FixHeaderApplyTransforms>
260420-07:28:02,42 nipype.workflow INFO:
	 [Node] Setting-up "fmripre
p_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_e
xample/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/ds_bold_std_wf/_i
n_tuple_MNI152NLin6Asym.res2/resample_ref".
260420-07:28:02,43 nipype.workflow INFO:
	 [Node] Settin
g-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.ds_bold_std_wf.resample_mask" in "/home/
jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/ds_
bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample_mask".
260420-07:28:02,47 nipype.workflow INFO:
	 [Node] Executing "resample_mask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07
:28:02,52 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.fixes.FixH
eaderApplyTransforms>
260420-07:28:02,202 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 5.678456s.
260420-07:28:02,441 nipype.workflow INFO:
	 [Node] Finished "norm_msk", elapsed time 0.398917s.
260420-07:28:02,830 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/carpetplot_wf/resample_parc".
260420-07:28:02,8
33 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkflows.interfaces.fixes.FixHeaderA
pplyTransforms>
260420-07:28:03,198 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.anat_fit_
wf.anat_reports_wf.norm_rpt" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/s
ub_104_wf/anat_fit_wf/anat_reports_wf/_in_tuple_MNI152NLin6Asym.res2/norm_rpt".
260420-07:28:03,219 nipype.workflow INFO:
	 [Node] Executing "norm_rpt" <niworkflows.interfaces.repo
rtlets.registration.SimpleBeforeAfterRPT>
260420-07:28:03,553 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 4.743747s.
260420-07:28:04,105 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 3.999983s.
260420-07:28:04,274 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/r
esample_ref".
260420-07:28:04,276 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/
resample_mask".
260420-07:28:04,278 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_
104_wf.bold_task_trust_run_04_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch
/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/carpetplot_wf/resample_parc".
2
60420-07:28:04,279 nipype.workflow INFO:
	 [Node] Executing "resample_mask" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-07:28:04,281 nipype.workflow INFO:
	 [Node] Executing "resamp
le_parc" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:04,285 nipype.workflow
 INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:04,367 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 5.556717s.
260420-07:28:05,274 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/r
esample_ref".
260420-07:28:05,278 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/
resample_mask".
260420-07:28:05,278 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 3.236529s.
260420-07:28:05,283 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-07:28:05,284 nipype.workflow INFO:
	 [Node] Executing "resample_mask" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:28:05,487 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.653042s.
260420-07:28:06,348 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/carpetplot_wf/resample_parc".
260420-07:28:06,352 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:28:06,409 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 4.355762s.
260420-07:28:06,433 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 6.322663s.
260420-07:28:07,202 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 5.154069s.
260420-07:28:07,511 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 3.228457s.
260420-07:28:07,713 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/r
esample_ref".
260420-07:28:07,714 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/
resample_mask".
260420-07:28:07,718 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkf
lows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:07,725 nipype.workflow INFO:
	 [Node] E
xecuting "resample_mask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:08,688 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 4.402579s.
260420-07:28:08,952 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/carpetplot_wf/resample_parc".
260420-07:28:08,955 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkflows.interfaces
.fixes.FixHeaderApplyTransforms>
260420-07:28:09,117 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 3.833328s.
260420-07:28:09,268 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.915354s.
260420-07:28:09,982 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep_wo
rk/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asy
m.res2/resample_ref".
260420-07:28:09,985 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6As
ym.res2/resample_mask".
260420-07:28:09,986 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2
_wf.sub_104_wf.bold_task_ultimatum_run_02_wf.carpetplot_wf.resample_parc" in "/home/jovyan/trust_exa
mple/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/carpetplot_wf/r
esample_parc".
260420-07:28:09,989 nipype.workflow INFO:
	 [Node] Executing "resample_parc" <niworkf
lows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:09,989 nipype.workflow INFO:
	 [Node] E
xecuting "resample_mask" <niworkflows.interfaces.fixes.FixHeaderApplyTransforms>
260420-07:28:09,990
 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_ultimatum_run_02_w
f.ds_bold_std_wf.resample_ref" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf
/sub_104_wf/bold_task_ultimatum_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample_ref
".
260420-07:28:09,993 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.
fixes.FixHeaderApplyTransforms>
260420-07:28:09,995 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.ds_bold_std_wf.resample_mask" in "/home/jovyan/trust_example/scratch/fmriprep_w
ork/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6As
ym.res2/resample_mask".
260420-07:28:10,0 nipype.workflow INFO:
	 [Node] Executing "resample_mask" <niworkflows.interfaces.f
ixes.FixHeaderApplyTransforms>
260420-07:28:10,0 nipype.workflow INFO:
	 [Node] Executing "resample_ref" <niworkflows.interfaces.fi
xes.FixHeaderApplyTransforms>
260420-07:28:10,407 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 6.126365s.
260420-07:28:11,422 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 6.137015s.
260420-07:28:11,499 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 3.780214s.
260420-07:28:11,769 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.812791s.
260420-07:28:11,807 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-sharedreward_run-01_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.g
z dtype from float64 to float64
260420-07:28:12,505 nipype.workflow INFO:
	 [Node] Finished "resample_parc", elapsed time 2.515582s.
260420-07:28:12,566 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.
res2/fmap_recon".
260420-07:28:12,568 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.
res2/fmap_recon".
260420-07:28:12,572 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-07:28:12,577 nipype.workflow INFO:
	 [Node] Executing "fmap_recon"
 <fmriprep.interfaces.resampling.ReconstructFieldmap>
260420-07:28:13,232 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-sharedreward_run-02_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.g
z dtype from float64 to float64
260420-07:28:13,658 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/fmap_reco
n".
260420-07:28:13,668 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-07:28:14,135 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 6.408997s.
260420-07:28:14,168 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 4.174054s.
260420-07:28:14,311 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-01_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dtype
 from float64 to float64
260420-07:28:14,450 nipype.workflow INFO:
	 [Node] Finished "norm_rpt", elapsed time 11.229735s.
260420-07:28:14,514 nipype.workflow INFO:
	 [Node] Finished "resample_ref", elapsed time 4.512704s.
260420-07:28:15,61 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.483567s.
260420-07:28:15,413 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-02_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dtype
 from float64 to float64
260420-07:28:15,537 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.963863s.
260420-07:28:15,797 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 5.806603s.
260420-07:28:16,92 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.423093s.
260420-07:28:16,275 nipype.workflow INFO:
	 [Node] Finished "resample_mask", elapsed time 6.269036s.
260420-07:28:16,605 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/fmap_reco
n".
260420-07:28:16,609 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/fmap_reco
n".
260420-07:28:16,611 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-07:28:16,630 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resam
pling.ReconstructFieldmap>
260420-07:28:17,293 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-03_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dtype
 from float64 to float64
260420-07:28:18,585 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-04_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dtype
 from float64 to float64
260420-07:28:18,823 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.191568s.
260420-07:28:18,852 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.240039s.
260420-07:28:19,30 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_
trust_run_04_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/fmap_recon
".
260420-07:28:19,41 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resamp
ling.ReconstructFieldmap>
260420-07:28:19,687 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-trust_run-05_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dtype
 from float64 to float64
260420-07:28:20,170 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/fmap_reco
n".
260420-07:28:20,173 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/f
map_recon".
260420-07:28:20,176 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.inte
rfaces.resampling.ReconstructFieldmap>
260420-07:28:20,183 nipype.workflow INFO:
	 [Node] Executing
"fmap_recon" <fmriprep.interfaces.resampling.ReconstructFieldmap>
260420-07:28:21,411 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.368061s.
260420-07:28:21,634 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_std_wf.fmap_recon" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/f
map_recon".
260420-07:28:21,637 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.re
s2/resample".
260420-07:28:21,642 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/carpetplot_wf/parcels".
260420-07:28:21
,644 nipype.workflow INFO:
	 [Node] Executing "fmap_recon" <fmriprep.interfaces.resampling.Reconstru
ctFieldmap>
260420-07:28:21,645 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:21,649 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-07:28:21,678 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.02711s.
260420-07:28:22,85 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmrip
rep/sub-104/func/sub-104_task-ultimatum_run-01_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz dt
ype from float64 to float64
260420-07:28:22,283 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.106065s.
260420-07:28:22,371 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.186705s.
260420-07:28:22,614 nipype.interface WARNING:
	 Changing /home/jovyan/trust_example/derivatives/fmri
prep/sub-104/func/sub-104_task-ultimatum_run-02_space-MNI152NLin6Asym_res-2_desc-brain_mask.nii.gz d
type from float64 to float64
260420-07:28:23,162 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/f
mriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.re
s2/resample".
260420-07:28:23,166 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample".
260420-07:28:23,170 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample".
260420-07:28:23,173 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-07:28:23,173 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample".
260420-07:28:23,173 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample".
260420-07:28:23,174 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work/
fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/carpetplot_wf/parcels".
260420-07:28:23,176 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/carpetplot_wf/parcels".
260420-07:28:23,178 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:23,178 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-07:28:23,179 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-07:28:23,180 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-07:28:23,181 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampl
ing.ResampleSeries>
260420-07:28:23,194 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:23,223 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.028034s.
260420-07:28:23,225 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.046347s.
260420-07:28:23,929 nipype.workflow INFO:
	 [Node] Finished "fmap_recon", elapsed time 2.283865s.
260420-07:28:24,170 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep
_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/resample".
260420-07:28:24,174 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/res
ample".
260420-07:28:24,178 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/carpetplot_wf/parcels".
260420-07:28:24,179 nipype.wo
rkflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampling.ResampleSeries>
260420-07:28:24,181 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/carpetplot_wf/parcels".
260420-07:28:24,182 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripre
p_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/carpetplot_wf/parcels".
260420-07:28:24,184 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:24,185 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.i
nterfaces.resampling.ResampleSeries>
260420-07:28:24,191 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:24,194 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:24,227 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.042459s.
260420-07:28:24,249 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.050583s.
26042
0-07:28:24,250 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.057813s.
260420-07:28:26,162 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.bold_std_wf.resample" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmri
prep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/res
ample".
260420-07:28:26,162 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.b
old_task_trust_run_05_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/carpetplot_wf/parcels".
260420-07:28:26,165 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:26,165 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_ultimatum_run_01_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/carpetplot_wf/parcels".
260420-07:28:26,169 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.interfaces.utility.wr
appers.Function>
260420-07:28:26,170 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_ultimatum_run_02_wf.carpetplot_wf.parcels" in "/home/jovyan/trust_example/scratch/
fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/carpetplot_wf/parcels".
2604
20-07:28:26,172 nipype.workflow INFO:
	 [Node] Executing "resample" <fmriprep.interfaces.resampling.
ResampleSeries>
260420-07:28:26,173 nipype.workflow INFO:
	 [Node] Executing "parcels" <nipype.inter
faces.utility.wrappers.Function>
260420-07:28:26,200 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.033942s.
260420-07:28:26,216 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.046191s.
260420-07:28:26,221 nipype.workflow INFO:
	 [Node] Finished "parcels", elapsed time 0.047761s.
260420-07:28:28,50 nipype.workflow INFO:
	 [Node] Setting-up "_anat2std_tpms0" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6A
sym.res2/anat2std_tpms/mapflow/_anat2std_tpms0".
260420-07:28:28,52 nipype.workflow INFO:
	 [Node] Executing "_anat2std_tpms0" <niworkflows.interface
s.fixes.FixHeaderApplyTransforms>
260420-07:28:28,54 nipype.workflow INFO:
	 [Node] Setting-up "_anat2std_tpms1" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6A
sym.res2/anat2std_tpms/mapflow/_anat2std_tpms1".
260420-07:28:28,56 nipype.workflow INFO:
	 [Node] Executing "_anat2std_tpms1" <niworkflows.interface
s.fixes.FixHeaderApplyTransforms>
260420-07:28:28,58 nipype.workflow INFO:
	 [Node] Setting-up "_anat2std_tpms2" in "/home/jovyan/trus
t_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6A
sym.res2/anat2std_tpms/mapflow/_anat2std_tpms2".
260420-07:28:28,60 nipype.workflow INFO:
	 [Node] Executing "_anat2std_tpms2" <niworkflows.interface
s.fixes.FixHeaderApplyTransforms>
260420-07:28:30,619 nipype.workflow INFO:
	 [Node] Finished "_anat2std_tpms1", elapsed time 2.561873
s.
260420-07:28:30,622 nipype.workflow INFO:
	 [Node] Finished "_anat2std_tpms2", elapsed time 2.560874
s.
260420-07:28:30,652 nipype.workflow INFO:
	 [Node] Finished "_anat2std_tpms0", elapsed time 2.599263
s.
260420-07:28:32,173 nipype.workflow INFO:
	 [Node] Setting-up "_anat2std_tpms0" in "/home/jovyan/tru
st_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6
Asym.res2/anat2std_tpms/mapflow/_anat2std_tpms0".
260420-07:28:32,175 nipype.workflow INFO:
	 [Node] Cached "_anat2std_tpms0" - collecting precomputed
 outputs
260420-07:28:32,175 nipype.workflow INFO:
	 [Node] "_anat2std_tpms0" found cached.
260420-0
7:28:32,176 nipype.workflow INFO:
	 [Node] Setting-up "_anat2std_tpms1" in "/home/jovyan/trust_examp
le/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/ds_std_volumes_wf/_in_tuple_MNI152NLin6Asym.res
2/anat2std_tpms/mapflow/_anat2std_tpms1".
260420-07:28:32,178 nipype.workflow INFO:
	 [Node] Cached
"_anat2std_tpms1" - collecting precomputed outputs
260420-07:28:32,178 nipype.workflow INFO:
	 [Node
] "_anat2std_tpms1" found cached.
260420-07:28:32,180 nipype.workflow INFO:
	 [Node] Setting-up "_an
at2std_tpms2" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/ds_st
d_volumes_wf/_in_tuple_MNI152NLin6Asym.res2/anat2std_tpms/mapflow/_anat2std_tpms2".
260420-07:28:32,
181 nipype.workflow INFO:
	 [Node] Cached "_anat2std_tpms2" - collecting precomputed outputs
260420-
07:28:32,181 nipype.workflow INFO:
	 [Node] "_anat2std_tpms2" found cached.
260420-07:31:05,264 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 161.078193s.
260420-07:31:06,206 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_01_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res
2/ds_bold".
260420-07:31:06,210 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/carpetplot_wf/conf_plot".
260420-07:3
1:06,211 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.DerivativesDataSink
>
260420-07:31:06,220 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:09,177 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 167.527071s.
260420-07:31:10,106 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 166.931645s.
260420-07:31:10,334 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6As
ym.res2/ds_bold".
260420-07:31:10,336 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_02_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_wor
k/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_02_wf/carpetplot_wf/conf_plot".
260420-07:31:10,346 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:10,362 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.Derivati
vesDataSink>
260420-07:31:10,502 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 4.28185s.
260420-07:31:12,282 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_sharedreward_run_01_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work
/fmriprep_25_2_wf/sub_104_wf/bold_task_sharedreward_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6As
ym.res2/ds_bold".
260420-07:31:12,286 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/carpetplot_wf/conf_plot".
260420-07:31:12,286 nipyp
e.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task_trust_run_02_wf.carpetpl
ot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bo
ld_task_trust_run_02_wf/carpetplot_wf/conf_plot".
260420-07:31:12,287 nipype.workflow INFO:
	 [Node]
 Executing "ds_bold" <fmriprep.interfaces.DerivativesDataSink>
260420-07:31:12,291 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:12,295 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:13,332 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 2.983888s.
260420-07:31:14,274 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/carpetplot_wf/conf_plot".
260420-07:31:14,284 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:15,576 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 3.280304s.
260420-07:31:15,622 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 3.330333s.
260420-07:31:15,642 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 169.469668s.
260420-07:31:16,346 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/carpetplot_wf/conf_plot".
260420-07:31:16,346 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_ultimatum_run_02_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res
2/ds_bold".
260420-07:31:16,352 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_05_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmrip
rep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/carpetplot_wf/conf_plot".
260420-07:31:16,356 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.Derivati
vesDataSink>
260420-07:31:16,366 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:16,384 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:17,993 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 174.812526s.
260420-07:31:18,15 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 3.729653s.
260420-07:31:18,829 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 174.648916s.
260420-07:31:19,390 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 3.020824s.
260420-07:31:19,753 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 3.363177s.
260420-07:31:20,302 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_03_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_03_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/ds_bol
d".
260420-07:31:20,303 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_
task_trust_run_05_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fm
riprep_25_2_wf/sub_104_wf/bold_task_trust_run_05_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/ds
_bold".
260420-07:31:20,305 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.b
old_task_ultimatum_run_01_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratch/fmripre
p_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_01_wf/carpetplot_wf/conf_plot".
260420-07
:31:20,308 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.DerivativesDataSi
nk>
260420-07:31:20,308 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.Deri
vativesDataSink>
260420-07:31:20,310 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub
_104_wf.bold_task_ultimatum_run_02_wf.carpetplot_wf.conf_plot" in "/home/jovyan/trust_example/scratc
h/fmriprep_work/fmriprep_25_2_wf/sub_104_wf/bold_task_ultimatum_run_02_wf/carpetplot_wf/conf_plot".
260420-07:31:20,316 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.interfaces.confou
nds.FMRISummary>
260420-07:31:20,320 nipype.workflow INFO:
	 [Node] Executing "conf_plot" <fmriprep.
interfaces.confounds.FMRISummary>
260420-07:31:22,275 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 179.09279s.
260420-07:31:23,40 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 2.723781s.
260420-07:31:23,442 nipype.workflow INFO:
	 [Node] Finished "conf_plot", elapsed time 3.120894s.
260420-07:31:23,707 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_02_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_02_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/ds_bol
d".
260420-07:31:23,712 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.Derivati
vesDataSink>
260420-07:31:25,512 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 182.331261s.
260420-07:31:25,609 nipype.workflow INFO:
	 [Node] Finished "resample", elapsed time 182.429208s.
260420-07:31:27,770 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_01_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_01_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/ds_bol
d".
260420-07:31:27,774 nipype.workflow INFO:
	 [Node] Setting-up "fmriprep_25_2_wf.sub_104_wf.bold_task
_trust_run_04_wf.ds_bold_std_wf.ds_bold" in "/home/jovyan/trust_example/scratch/fmriprep_work/fmripr
ep_25_2_wf/sub_104_wf/bold_task_trust_run_04_wf/ds_bold_std_wf/_in_tuple_MNI152NLin6Asym.res2/ds_bol
d".
260420-07:31:27,778 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.Derivati
vesDataSink>
260420-07:31:27,782 nipype.workflow INFO:
	 [Node] Executing "ds_bold" <fmriprep.interfaces.Derivati
vesDataSink>
260420-07:31:40,240 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 34.028012s.
260420-07:31:45,381 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 35.017445s.
260420-07:31:47,638 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 35.349456s.
260420-07:31:52,475 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 36.109595s.
260420-07:31:59,915 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 39.605916s.
260420-07:32:00,574 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 40.264952s.
260420-07:32:01,143 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 37.429889s.
260420-07:32:04,585 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 36.80564s.
260420-07:32:08,85 nipype.workflow INFO:
	 [Node] Finished "ds_bold", elapsed time 40.301484s.
260420-07:32:11,555 nipype.workflow IMPORTANT:
	 fMRIPrep finished successfully!
260420-07:32:11,566 nipype.workflow IMPORTANT:
	 Works derived from this fMRIPrep execution should i
nclude the boilerplate text found in <OUTPUT_PATH>/logs/CITATION.md.
(node:1171) Warning: Closing directory handle on garbage collection
(Use `node --trace-warnings ...`
 to show where the warning was created)
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin6Asym/tpl-MNI152NLin6Asym_res-01_T1w
.nii.gz
  0%|          | 0.00/11.0M [00:00<?, ?B/s]
  0%|          | 17.4k/11.0M [00:00<02:11, 83.9kB/s]
  0%|          | 52.2k/11.0M [00:00<01:22, 132kB/s]
  1%|          | 122k/11.0M [00:00<00:48, 223kB/s]
  2%|▏         | 261k/11.0M [00:00<00:27, 397kB/s]
  5%|▌         | 574k/11.0M [00:01<00:13, 793kB/s]
 11%|█         | 1.17M/11.0M [00:01<00:06, 1.48MB/s]
 21%|██▏       | 2.37M/11.0M [00:01<00:03, 2.87MB/s]
 43%|████▎     | 4.76M/11.0M [00:01<00:01, 5.58MB/s]
 71%|███████▏  | 7.87M/11.0M [00:01<00:00, 8.46MB/s]
 94%|█████████▍| 10.4M/11.0M [00:02<00:00, 9.59MB/s]
100%|██████████| 11.0M/11.0M [00:02<00:00, 5.24MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin6Asym/tpl-MNI152NLin6Asym_res-01_des
c-brain_mask.nii.gz
  0%|          | 0.00/150k [00:00<?, ?B/s]
 12%|█▏        | 17.4k/150k [00:00<00:01, 83.1kB/s]
 35%|███▍      | 52.2k/150k [00:00<00:00, 132kB/s]
 81%|████████▏ | 122k/150k [00:00<00:00, 223kB/s]
100%|██████████| 150k/150k [00:00<00:00, 237kB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-01_T1w.nii.gz
  0%|          | 0.00/13.7M [00:00<?, ?B/s]
  0%|          | 17.4k/13.7M [00:00<02:44, 83.3kB/s]
  0%|          | 52.2k/13.7M [00:00<01:43, 132kB/s]
  1%|          | 122k/13.7M [00:00<01:00, 224kB/s]
  2%|▏         | 261k/13.7M [00:00<00:33, 398kB/s]
  4%|▍         | 557k/13.7M [00:01<00:17, 764kB/s]
  8%|▊         | 1.15M/13.7M [00:01<00:08, 1.47MB/s]
 16%|█▌        | 2.16M/13.7M [00:01<00:04, 2.56MB/s]
 32%|███▏      | 4.36M/13.7M [00:01<00:01, 5.08MB/s]
 55%|█████▍    | 7.47M/13.7M [00:01<00:00, 8.13MB/s]
 74%|███████▍  | 10.1M/13.7M [00:01<00:00, 11.4MB/s]
 84%|████████▍ | 11.5M/13.7M [00:02<00:00, 10.5MB/s]
 96%|█████████▋| 13.2M/13.7M [00:02<00:00, 10.6MB/s]
100%|██████████| 13.7M/13.7M [00:02<00:00, 5.92MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-01_desc-brain_mask.nii.gz
  0%|          | 0.00/160k [00:00<?, ?B/s]
 11%|█         | 17.4k/160k [00:00<00:01, 82.6kB/s]
 44%|████▎     | 69.6k/160k [00:00<00:00, 179kB/s]
100%|██████████| 160k/160k [00:00<00:00, 376kB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-01_T2w.nii.gz
  0%|          | 0.00/13.3M [00:00<?, ?B/s]
  0%|          | 17.4k/13.3M [00:00<02:40, 82.7kB/s]
  1%|          | 68.6k/13.3M [00:00<01:14, 177kB/s]
  1%|          | 122k/13.3M [00:00<01:02, 211kB/s]
  2%|▏         | 279k/13.3M [00:00<00:30, 421kB/s]
  5%|▍         | 609k/13.3M [00:01<00:15, 834kB/s]
  9%|▉         | 1.25M/13.3M [00:01<00:07, 1.59MB/s]
 19%|█▉        | 2.55M/13.3M [00:01<00:03, 3.07MB/s]
 39%|███▊      | 5.13M/13.3M [00:01<00:01, 6.00MB/s]
 62%|██████▏   | 8.23M/13.3M [00:01<00:00, 8.71MB/s]
 81%|████████  | 10.8M/13.3M [00:02<00:00, 9.70MB/s]
100%|█████████▉| 13.3M/13.3M [00:02<00:00, 10.4MB/s]
100%|██████████| 13.3M/13.3M [00:02<00:00, 5.72MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-OASIS30ANTs/tpl-OASIS30ANTs_res-01_T1w.nii.gz
  0%|          | 0.00/32.4M [00:00<?, ?B/s]
  0%|          | 17.4k/32.4M [00:00<06:32, 82.4kB/s]
  0%|          | 69.6k/32.4M [00:00<02:59, 180kB/s]
  0%|          | 122k/32.4M [00:00<02:32, 211kB/s]
  1%|          | 295k/32.4M [00:00<01:10, 452kB/s]
  2%|▏         | 609k/32.4M [00:01<00:38, 827kB/s]
  4%|▍         | 1.25M/32.4M [00:01<00:19, 1.58MB/s]
  8%|▊         | 2.54M/32.4M [00:01<00:09, 3.06MB/s]
 16%|█▌        | 5.10M/32.4M [00:01<00:04, 5.95MB/s]
 22%|██▏       | 7.03M/32.4M [00:01<00:03, 6.96MB/s]
 29%|██▉       | 9.41M/32.4M [00:02<00:02, 8.30MB/s]
 36%|███▌      | 11.5M/32.4M [00:02<00:02, 8.83MB/s]
 43%|████▎     | 13.8M/32.4M [00:02<00:01, 9.41MB/s]
 50%|█████     | 16.2M/32.4M [00:02<00:01, 10.0MB/s]
 60%|█████▉    | 19.3M/32.4M [00:02<00:01, 11.4MB/s]
 69%|██████▉   | 22.4M/32.4M [00:03<00:00, 12.3MB/s]
 79%|███████▊  | 25.4M/32.4M [00:03<00:00, 13.0MB/s]
 88%|████████▊ | 28.5M/32.4M [00:03<00:00, 13.5MB/s]
 97%|█████████▋| 31.4M/32.4M [00:03<00:00, 13.5MB/s]
100%|██████████| 32.4M/32.4M [00:03<00:00, 8.46MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-OASIS30ANTs/tpl-OASIS30ANTs_res-01_label-brain
_probseg.nii.gz
  0%|          | 0.00/2.59M [00:00<?, ?B/s]
  1%|          | 17.4k/2.59M [00:00<00:30, 83.4kB/s]
  3%|▎         | 68.6k/2.59M [00:00<00:14, 178kB/s]
  5%|▍         | 122k/2.59M [00:00<00:11, 212kB/s]
 11%|█         | 279k/2.59M [00:00<00:05, 422kB/s]
 24%|██▎       | 609k/2.59M [00:01<00:02, 836kB/s]
 48%|████▊     | 1.24M/2.59M [00:01<00:00, 1.56MB/s]
 97%|█████████▋| 2.51M/2.59M [00:01<00:00, 3.03MB/s]
100%|██████████| 2.59M/2.59M [00:01<00:00, 1.75MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-OASIS30ANTs/tpl-OASIS30ANTs_res-01_desc-BrainC
erebellumExtraction_mask.nii.gz
  0%|          | 0.00/265k [00:00<?, ?B/s]
  7%|▋         | 17.4k/265k [00:00<00:02, 83.6kB/s]
 24%|██▍       | 63.5k/265k [00:00<00:01, 164kB/s]
 50%|█████     | 133k/265k [00:00<00:00, 239kB/s]
100%|██████████| 265k/265k [00:00<00:00, 418kB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-OASIS30ANTs/tpl-OASIS30ANTs_res-01_label-WM_pr
obseg.nii.gz
  0%|          | 0.00/4.06M [00:00<?, ?B/s]
  0%|          | 17.4k/4.06M [00:00<00:48, 83.1kB/s]
  2%|▏         | 69.6k/4.06M [00:00<00:22, 180kB/s]
  3%|▎         | 138k/4.06M [00:00<00:15, 247kB/s]
  7%|▋         | 296k/4.06M [00:00<00:08, 445kB/s]
 15%|█▌        | 627k/4.06M [00:01<00:04, 851kB/s]
 32%|███▏      | 1.31M/4.06M [00:01<00:01, 1.66MB/s]
 65%|██████▍   | 2.63M/4.06M [00:01<00:00, 3.17MB/s]
100%|██████████| 4.06M/4.06M [00:01<00:00, 2.72MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-OASIS30ANTs/tpl-OASIS30ANTs_res-01_label-BS_pr
obseg.nii.gz
  0%|          | 0.00/447k [00:00<?, ?B/s]
  4%|▍         | 17.4k/447k [00:00<00:05, 83.1kB/s]
 14%|█▍        | 63.5k/447k [00:00<00:02, 164kB/s]
 28%|██▊       | 124k/447k [00:00<00:01, 220kB/s]
 63%|██████▎   | 281k/447k [00:00<00:00, 428kB/s]
100%|██████████| 447k/447k [00:00<00:00, 530kB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-02_desc-fMRIPrep_boldref.nii.gz
  0%|          | 0.00/1.75M [00:00<?, ?B/s]
  1%|          | 17.4k/1.75M [00:00<00:20, 83.1kB/s]
  4%|▎         | 63.5k/1.75M [00:00<00:10, 163kB/s]
  7%|▋         | 122k/1.75M [00:00<00:07, 215kB/s]
 17%|█▋        | 296k/1.75M [00:00<00:03, 456kB/s]
 35%|███▍      | 609k/1.75M [00:01<00:01, 828kB/s]
 60%|█████▉    | 1.04M/1.75M [00:01<00:00, 1.25MB/s]
100%|██████████| 1.75M/1.75M [00:01<00:00, 1.37MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-02_desc-brain_mask.nii.gz
  0%|          | 0.00/29.6k [00:00<?, ?B/s]
 62%|██████▏   | 18.4k/29.6k [00:00<00:00, 88.1kB/s]
100%|██████████| 29.6k/29.6k [00:00<00:00, 140kB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-01_label-brain_probseg.nii.gz
  0%|          | 0.00/3.93M [00:00<?, ?B/s]
  0%|          | 17.4k/3.93M [00:00<00:46, 83.6kB/s]
  1%|▏         | 52.2k/3.93M [00:00<00:29, 132kB/s]
  3%|▎         | 104k/3.93M [00:00<00:20, 185kB/s]
  6%|▌         | 243k/3.93M [00:00<00:09, 372kB/s]
 13%|█▎        | 505k/3.93M [00:01<00:04, 688kB/s]
 26%|██▌       | 1.03M/3.93M [00:01<00:02, 1.30MB/s]
 53%|█████▎    | 2.08M/3.93M [00:01<00:00, 2.51MB/s]
100%|██████████| 3.93M/3.93M [00:01<00:00, 2.51MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin2009cAsym/tpl-MNI152NLin2009cAsym_re
s-01_desc-carpet_dseg.nii.gz
  0%|          | 0.00/451k [00:00<?, ?B/s]
  4%|▍         | 17.4k/451k [00:00<00:05, 83.6kB/s]
 15%|█▌        | 68.6k/451k [00:00<00:02, 178kB/s]
 31%|███       | 139k/451k [00:00<00:01, 250kB/s]
 69%|██████▉   | 313k/451k [00:00<00:00, 479kB/s]
100%|██████████| 451k/451k [00:00<00:00, 536kB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin6Asym/tpl-MNI152NLin6Asym_res-02_T1w
.nii.gz
  0%|          | 0.00/1.41M [00:00<?, ?B/s]
  1%|          | 17.4k/1.41M [00:00<00:15, 88.9kB/s]
  5%|▍         | 69.6k/1.41M [00:00<00:07, 185kB/s]
 10%|▉         | 138k/1.41M [00:00<00:05, 251kB/s]
 21%|██        | 296k/1.41M [00:00<00:02, 439kB/s]
 44%|████▍     | 627k/1.41M [00:01<00:00, 858kB/s]
 80%|████████  | 1.13M/1.41M [00:01<00:00, 1.39MB/s]
100%|██████████| 1.41M/1.41M [00:01<00:00, 1.12MB/s]
Downloading https://templateflow.s3.amazonaws.com/tpl-MNI152NLin6Asym/tpl-MNI152NLin6Asym_res-02_des
c-brain_mask.nii.gz
  0%|          | 0.00/28.6k [00:00<?, ?B/s]
 65%|██████▍   | 18.4k/28.6k [00:00<00:00, 87.7kB/s]
100%|██████████| 28.6k/28.6k [00:00<00:00, 135kB/s]

When fMRIPrep finishes, the files we care about most for FEAT are:

  • the HTML report

  • the preprocessed BOLD file for the run we want

  • the confounds table for that run

Because we wrote the outputs into ~/trust_example/derivatives/fmriprep, the next steps can keep using the same paths throughout the notebook.

If the HTML report does not open correctly inside Neurodesktop, open it through JupyterLab instead. It is worth checking the report before moving on, because bad preprocessing or bad alignment will usually be easier to catch here than later in the FEAT output.

!find ~/trust_example/derivatives/fmriprep -name "sub-104.html"
!find ~/trust_example/derivatives/fmriprep -name "*run-01*desc-preproc_bold.nii.gz"
!find ~/trust_example/derivatives/fmriprep -name "*run-01*desc-confounds_timeseries.tsv"
/home/jovyan/trust_example/derivatives/fmriprep/sub-104.html
/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-sharedreward_run-01_space-MNI152NLin6Asym_res-2_desc-preproc_bold.nii.gz
/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-ultimatum_run-01_space-MNI152NLin6Asym_res-2_desc-preproc_bold.nii.gz
/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_run-01_space-MNI152NLin6Asym_res-2_desc-preproc_bold.nii.gz
/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-ultimatum_run-01_desc-confounds_timeseries.tsv
/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-trust_run-01_desc-confounds_timeseries.tsv
/home/jovyan/trust_example/derivatives/fmriprep/sub-104/func/sub-104_task-sharedreward_run-01_desc-confounds_timeseries.tsv

4. Make a FEAT confounds file#

Here we take the fMRIPrep confounds table for one run and save a FEAT-ready text file.

We keep:

  • cosine regressors

  • non-steady-state regressors

  • 6 motion parameters

  • the first 6 aCompCor components

  • framewise displacement, if it exists

FEAT wants a plain text file without a header, so we write the output that way.

This is a good example of why notebook workflows can be useful for teaching: you can see exactly which nuisance regressors are being kept, rather than hiding that logic inside a separate script.

confounds_tsv = base_dir / "derivatives" / "fmriprep" / "sub-104" / "func" / "sub-104_task-trust_run-01_desc-confounds_timeseries.tsv"
confounds = pd.read_csv(confounds_tsv, sep="	")

# Keep a simple but still realistic set of nuisance regressors.
cosine_cols = [c for c in confounds.columns if c.startswith("cosine")]
nss_cols = [c for c in confounds.columns if c.startswith("non_steady_state")]
motion_cols = ["trans_x", "trans_y", "trans_z", "rot_x", "rot_y", "rot_z"]
acompcor_cols = [c for c in confounds.columns if c.startswith("a_comp_cor_")][:6]
fd_cols = ["framewise_displacement"] if "framewise_displacement" in confounds.columns else []

keep_cols = cosine_cols + nss_cols + motion_cols + acompcor_cols + fd_cols
feat_confounds = confounds[keep_cols].fillna(0)

out_dir = base_dir / "derivatives" / "fsl" / "confounds" / "sub-104"
out_dir.mkdir(parents=True, exist_ok=True)

out_file = out_dir / "sub-104_task-trust_run-01_desc-fslConfounds.tsv"
feat_confounds.to_csv(out_file, sep="	", header=False, index=False)

print(out_file)
print(feat_confounds.shape)
feat_confounds.head()
/home/jovyan/trust_example/derivatives/fsl/confounds/sub-104/sub-104_task-trust_run-01_desc-fslConfounds.tsv
(217, 19)
cosine00 cosine01 cosine02 cosine03 cosine04 non_steady_state_outlier00 trans_x trans_y trans_z rot_x rot_y rot_z a_comp_cor_00 a_comp_cor_01 a_comp_cor_02 a_comp_cor_03 a_comp_cor_04 a_comp_cor_05 framewise_displacement
0 0.000000 0.000000 0.000000 0.000000 0.000000 1.0 -0.028677 -0.050250 0.041419 -0.001136 -0.000077 -3.280445e-04 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
1 0.096223 0.096215 0.096202 0.096184 0.096161 0.0 -0.020840 -0.050390 0.077573 -0.000667 -0.000360 -1.197739e-07 0.092894 -0.019865 0.105213 -0.030189 0.057506 -0.072984 0.098113
2 0.096202 0.096133 0.096019 0.095859 0.095653 0.0 -0.016589 -0.015174 0.059022 -0.000540 -0.000058 -2.060158e-04 -0.016827 0.118740 0.083429 -0.048254 0.025921 0.071438 0.089766
3 0.096161 0.095971 0.095653 0.095209 0.094639 0.0 -0.009081 -0.045662 0.038655 -0.000667 0.000078 2.599182e-08 -0.083448 0.017565 -0.074148 0.033330 -0.006818 -0.012913 0.081813
4 0.096100 0.095727 0.095105 0.094237 0.093125 0.0 -0.012794 0.007354 0.047157 -0.000667 -0.000073 -2.435978e-08 -0.046349 0.013469 -0.088292 0.031972 0.004754 -0.003002 0.072783

5. Convert events.tsv to 3-column files#

This step uses BIDSto3col.sh from bidsutils and keeps the logic to one run.

BIDSto3col.sh reads the BIDS events file and writes one 3-column text file per event type.
Each output file has three columns:

  1. onset

  2. duration

  3. weight

Those output files are exactly the kind of timing files FEAT expects for custom EVs, so this is one of the main bridges between a BIDS dataset and an FSL first-level model.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example"

sub=104
run=01
events_tsv="$EXAMPLE_DIR/bids/ds003745/sub-${sub}/func/sub-${sub}_task-trust_run-${run}_events.tsv"
out_base="$EXAMPLE_DIR/derivatives/fsl/EVfiles/sub-${sub}/trust/run-${run}"

mkdir -p "$(dirname "$out_base")"

# This creates one 3-column file per event type found in the BIDS events file.
bash "$EXAMPLE_DIR/bidsutils/BIDSto3col/BIDSto3col.sh" "$events_tsv" "$out_base"
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_choice_computer.tx
t'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_choice_friend.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_choice_stranger.tx
t'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_missed_trial.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_outcome_computer_d
efect.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_outcome_computer_r
ecip.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_outcome_friend_def
ect.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_outcome_friend_rec
ip.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_outcome_stranger_d
efect.txt'
Creating '/home/jovyan/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_outcome_stranger_r
ecip.txt'
!ls ~/trust_example/derivatives/fsl/EVfiles/sub-104/trust
!head -n 5 ~/trust_example/derivatives/fsl/EVfiles/sub-104/trust/run-01_choice_computer.txt
run-01_choice_computer.txt	    run-01_outcome_computer_recip.txt
run-01_choice_friend.txt	    run-01_outcome_friend_defect.txt
run-01_choice_stranger.txt	    run-01_outcome_friend_recip.txt
run-01_missed_trial.txt		    run-01_outcome_stranger_defect.txt
run-01_outcome_computer_defect.txt  run-01_outcome_stranger_recip.txt
4.03279	1.860030	1.0
35.3721	1.830190	1.0
90.4619	2.570010	1.0
178.15	2.770810	1.0
212.465	2.416930	1.0

6. Render the FEAT template#

The template file already contains the FEAT model structure.
What changes from subject to subject and run to run are the paths and a few settings.

This is a useful pattern for reproducible work: keep the design mostly fixed, and then fill in the parts that should vary across runs.

Placeholders we replace#

  • OUTPUT → where the .feat directory should be written

  • DATA → the preprocessed BOLD file from fMRIPrep

  • EVDIR → the prefix used by the EV timing files

  • MISSED_TRIAL → path to the optional missed-trial EV file

  • EV_SHAPE3 if the missed-trial file exists, otherwise 10 for an empty EV

  • SMOOTH → smoothing kernel in mm

  • CONFOUNDEVS → the confounds file we just created

template_text = (base_dir / "templates" / "L1_task-trust_model-01_type-act.fsf").read_text()

for token in ["OUTPUT", "DATA", "EVDIR", "MISSED_TRIAL", "EV_SHAPE", "SMOOTH", "CONFOUNDEVS"]:
    print(f"--- lines containing {token} ---")
    for line in template_text.splitlines():
        if token in line:
            print(line)
    print()
--- lines containing OUTPUT ---
set fmri(outputdir) "OUTPUT"

--- lines containing DATA ---
set feat_files(1) "DATA"

--- lines containing EVDIR ---
set fmri(custom1) "EVDIR_choice_computer.txt"
set fmri(custom2) "EVDIR_choice_friend.txt"
set fmri(custom3) "EVDIR_choice_stranger.txt"
set fmri(custom4) "EVDIR_outcome_computer_defect.txt"
set fmri(custom5) "EVDIR_outcome_computer_recip.txt"
set fmri(custom6) "EVDIR_outcome_friend_defect.txt"
set fmri(custom7) "EVDIR_outcome_friend_recip.txt"
set fmri(custom8) "EVDIR_outcome_stranger_defect.txt"
set fmri(custom9) "EVDIR_outcome_stranger_recip.txt"

--- lines containing MISSED_TRIAL ---
set fmri(custom10) "MISSED_TRIAL"

--- lines containing EV_SHAPE ---
set fmri(shape10) EV_SHAPE

--- lines containing SMOOTH ---
set fmri(smooth) SMOOTH

--- lines containing CONFOUNDEVS ---
set confoundev_files(1) "CONFOUNDEVS"

The next cell renders a new .fsf file. Each variable is written out explicitly so you can see what is being inserted.

Even if you do not remember every line of FEAT syntax, the important lesson is that the .fsf file is just text. That means you can inspect it, edit it, and generate it systematically.

%%bash
set -e

EXAMPLE_DIR="$HOME/trust_example"

TASK=trust
SMOOTH=6
sub=104
run=01

OUTPUT="$EXAMPLE_DIR/derivatives/fsl/sub-${sub}/L1_task-${TASK}_model-01_type-act_run-${run}_sm-${SMOOTH}"
DATA="$EXAMPLE_DIR/derivatives/fmriprep/sub-${sub}/func/sub-${sub}_task-${TASK}_run-${run}_space-MNI152NLin6Asym_res-2_desc-preproc_bold.nii.gz"
CONFOUNDEVS="$EXAMPLE_DIR/derivatives/fsl/confounds/sub-${sub}/sub-${sub}_task-${TASK}_run-${run}_desc-fslConfounds.tsv"
EVDIR="$EXAMPLE_DIR/derivatives/fsl/EVfiles/sub-${sub}/${TASK}/run-${run}"
MISSED_TRIAL="${EVDIR}_missed_trial.txt"

if [ -e "$MISSED_TRIAL" ]; then
  EV_SHAPE=3
else
  EV_SHAPE=10
fi

mkdir -p "$(dirname "$OUTPUT")"

sed \
  -e "s@OUTPUT@${OUTPUT}@g" \
  -e "s@DATA@${DATA}@g" \
  -e "s@EVDIR@${EVDIR}@g" \
  -e "s@MISSED_TRIAL@${MISSED_TRIAL}@g" \
  -e "s@EV_SHAPE@${EV_SHAPE}@g" \
  -e "s@SMOOTH@${SMOOTH}@g" \
  -e "s@CONFOUNDEVS@${CONFOUNDEVS}@g" \
  "$EXAMPLE_DIR/templates/L1_task-trust_model-01_type-act.fsf" \
  > "$EXAMPLE_DIR/derivatives/fsl/sub-${sub}/L1_sub-${sub}_task-${TASK}_model-01_run-${run}_act.fsf"
rendered_fsf = base_dir / "derivatives" / "fsl" / "sub-104" / "L1_sub-104_task-trust_model-01_run-01_act.fsf"
print(rendered_fsf)
print()
print(rendered_fsf.read_text()[:4000])
/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_sub-104_task-trust_model-01_run-01_act.fsf


# FEAT version number
set fmri(version) 6.00

# Are we in MELODIC?
set fmri(inmelodic) 0

# Analysis level
# 1 : First-level analysis
# 2 : Higher-level analysis
set fmri(level) 1

# Which stages to run
# 0 : No first-level analysis (registration and/or group stats only)
# 7 : Full first-level analysis
# 1 : Pre-processing
# 2 : Statistics
set fmri(analysis) 7

# Use relative filenames
set fmri(relative_yn) 0

# Balloon help
set fmri(help_yn) 1

# Run Featwatcher
set fmri(featwatcher_yn) 0

# Cleanup first-level standard-space images
set fmri(sscleanup_yn) 0

# Output directory
set fmri(outputdir) "/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6"

# TR(s)
set fmri(tr) 2.020000

# Total volumes
set fmri(npts) 217

# Delete volumes
set fmri(ndelete) 0

# Perfusion tag/control order
set fmri(tagfirst) 1

# Number of first-level analyses
set fmri(multiple) 1

# Higher-level input type
# 1 : Inputs are lower-level FEAT directories
# 2 : Inputs are cope images from FEAT directories
set fmri(inputtype) 2

# Carry out pre-stats processing?
set fmri(filtering_yn) 1

# Brain/background threshold, %
set fmri(brain_thresh) 10

# Critical z for design efficiency calculation
set fmri(critical_z) 5.3

# Noise level
set fmri(noise) 0.66

# Noise AR(1)
set fmri(noisear) 0.34

# Motion correction
# 0 : None
# 1 : MCFLIRT
set fmri(mc) 0

# Spin-history (currently obsolete)
set fmri(sh_yn) 0

# B0 fieldmap unwarping?
set fmri(regunwarp_yn) 0

# EPI dwell time (ms)
set fmri(dwell) 0.7

# EPI TE (ms)
set fmri(te) 35

# % Signal loss threshold
set fmri(signallossthresh) 10

# Unwarp direction
set fmri(unwarp_dir) y-

# Slice timing correction
# 0 : None
# 1 : Regular up (0, 1, 2, 3, ...)
# 2 : Regular down
# 3 : Use slice order file
# 4 : Use slice timings file
# 5 : Interleaved (0, 2, 4 ... 1, 3, 5 ... )
set fmri(st) 0

# Slice timings file
set fmri(st_file) ""

# BET brain extraction
set fmri(bet_yn) 1

# Spatial smoothing FWHM (mm)
set fmri(smooth) 6

# Intensity normalization
set fmri(norm_yn) 0

# Perfusion subtraction
set fmri(perfsub_yn) 0

# Highpass temporal filtering
set fmri(temphp_yn) 0

# Lowpass temporal filtering
set fmri(templp_yn) 0

# MELODIC ICA data exploration
set fmri(melodic_yn) 0

# Carry out main stats?
set fmri(stats_yn) 1

# Carry out prewhitening?
set fmri(prewhiten_yn) 1

# Add motion parameters to model
# 0 : No
# 1 : Yes
set fmri(motionevs) 0
set fmri(motionevsbeta) ""
set fmri(scriptevsbeta) ""

# Robust outlier detection in FLAME?
set fmri(robust_yn) 0

# Higher-level modelling
# 3 : Fixed effects
# 0 : Mixed Effects: Simple OLS
# 2 : Mixed Effects: FLAME 1
# 1 : Mixed Effects: FLAME 1+2
set fmri(mixed_yn) 2

# Number of EVs
set fmri(evs_orig) 10
set fmri(evs_real) 10
set fmri(evs_vox) 0

# Number of contrasts
set fmri(ncon_orig) 18
set fmri(ncon_real) 18

# Number of F-tests
set fmri(nftests_orig) 0
set fmri(nftests_real) 0

# Add constant column to design matrix? (obsolete)
set fmri(constcol) 0

# Carry out post-stats steps?
set fmri(poststats_yn) 1

# Pre-threshold masking?
set fmri(threshmask) ""

# Thresholding
# 0 : None
# 1 : Uncorrected
# 2 : Voxel
# 3 : Cluster
set fmri(thresh) 3

# P threshold
set fmri(prob_thresh) 0.05

# Z threshold
set fmri(z_thresh) 2.3

# Z min/max for colour rendering
# 0 : Use actual Z min/max
# 1 : Use preset Z min/max
set fmri(zdisplay) 0

# Z min in colour rendering
set fmri(zmin) 2

# Z max in colour rendering
set fmri(zmax) 8

# Colour rendering type
# 0 : Solid blobs
# 1 : Transparent blobs
set fmri(rendertype) 1

# Background image for higher-level stats overlays
# 1 : Mean highres
# 2 : First highres
# 3 : Mean functional
# 4 : First functional
# 5 : Standard space template
set fmri(bgimage) 1

# Create time series plots
set fmri(tsplot_yn) 1

# Registration to initial structural
set fmri(reginitial_highres_yn) 0

# Search space for registration to initial structural
# 0   : No search
# 90  : Normal search
# 180 : Full search
se

7. Run first-level FEAT#

This command runs FEAT on the rendered design file.

At this point, the main conceptual pieces are in place: preprocessed data, confounds, EV timing files, and a rendered design file. FEAT now uses those pieces to estimate the first-level GLM.

%%bash
set -e

# Run FEAT on the rendered first-level design file.
feat "$HOME/trust_example/derivatives/fsl/sub-104/L1_sub-104_task-trust_model-01_run-01_act.fsf"
To view the FEAT progress and final report, point your web browser at /home/jovyan/trust_example/der
ivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/report_log.html

8. Fix FEAT registration for fMRIPrep-preprocessed data#

Because the functional image already came out of fMRIPrep in standard space, FEAT’s usual registration outputs are not the right ones to trust here.
The next cell follows the same post-FEAT registration fix used in the original L1stats.sh script.

This is based on the NeuroStars post referenced in that script.

In plain language, this step tells FEAT to treat the input as already being in standard space, so the registration files inside the .feat directory do not point to misleading transforms.

%%bash
set -e

OUTPUT="$HOME/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6"

# fix registration as per NeuroStars post:
# https://neurostars.org/t/performing-full-glm-analysis-with-fsl-on-the-bold-images-preprocessed-by-fmriprep-without-re-registering-the-data-to-the-mni-space/784/3
mkdir -p ${OUTPUT}.feat/reg
ln -sf $FSLDIR/etc/flirtsch/ident.mat ${OUTPUT}.feat/reg/example_func2standard.mat
ln -sf $FSLDIR/etc/flirtsch/ident.mat ${OUTPUT}.feat/reg/standard2example_func.mat
ln -sf ${OUTPUT}.feat/mean_func.nii.gz ${OUTPUT}.feat/reg/standard.nii.gz

9. Results#

The FEAT output directory should now contain the standard report, design matrix, and statistical maps.

A few files worth checking first are:

  • report.html

  • design.png

  • thresh_zstat1.nii.gz

  • thresh_zstat2.nii.gz

  • thresh_zstat10.nii.gz

This is also a good point to slow down and inspect the outputs before interpreting anything. Make sure the design looks sensible, the report opens, and the expected thresholded maps actually exist.

feat_dir = base_dir / "derivatives" / "fsl" / "sub-104" / "L1_task-trust_model-01_type-act_run-01_sm-6.feat"

for rel in [
    "report.html",
    "design.png",
    "thresh_zstat1.nii.gz",
    "thresh_zstat2.nii.gz",
    "thresh_zstat10.nii.gz",
]:
    p = feat_dir / rel
    print(f"{p}: {p.exists()}")
/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/report.html: True
/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/design.png: True
/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/thresh_zstat1.nii.gz: True
/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/thresh_zstat2.nii.gz: True
/home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/thresh_zstat10.nii.gz: True
design_png = feat_dir / "design.png"
if design_png.exists():
    display(Image(filename=str(design_png)))
else:
    print("Run FEAT first, then come back to this cell.")
../../_images/6fa120de4e050e81f6ece51dbbc5d7bb6ff3409216b64fb8f3bb679e5eae6d7f.png

Optional: try a quick NiiVue visualization#

This cell overlays a thresholded FEAT result on the example functional image from the same run.

Here we use thresh_zstat10.nii.gz, which corresponds to reciprocate > defect. In this task, that contrast is roughly reward-related, so even in a single run you may see activation in the ventral striatum and nearby reward-sensitive regions.

A few learning notes:

  • example_func.nii.gz gives you a background image in the same space as the FEAT results, but it’s a little blurry

  • MNI152_T1_2mm_brain.nii.gz is a T1 background in MNI space and should be better for visualization.

  • thresh_zstat10.nii.gz is already thresholded, so the overlay is easier to interpret

  • if your notebook shows nothing, first confirm that the .feat directory exists and that thresh_zstat10.nii.gz is really there

from pathlib import Path
from IPython.display import display
from ipyniivue import NiiVue
import nibabel as nib
import numpy as np

# FEAT background and contrast map from the same run
# bg = str(feat_dir / "example_func.nii.gz")
bg = "/cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz"
zmap = str(feat_dir / "thresh_zstat10.nii.gz")  # reciprocate > defect

print("Background exists:", Path(bg).exists(), bg)
print("Contrast exists:", Path(zmap).exists(), zmap)

if Path(bg).exists() and Path(zmap).exists():
    # Load the EPI background and choose a sensible display window
    epi = nib.load(bg).get_fdata()
    epi_nonzero = epi[epi > 0]

    lo = float(np.percentile(epi_nonzero, 2))
    hi = float(np.percentile(epi_nonzero, 98))

    nv = NiiVue()
    nv.load_volumes([
        {
            "path": bg,
            "name": "example_func",
            "colormap": "gray",
            "opacity": 1.0,
            "cal_min": lo,
            "cal_max": hi
        },
        {
            "path": zmap,
            "name": "reciprocate > defect",
            "colormap": "red",
            "opacity": 0.45
        }
    ])
    display(nv)
else:
    print("Run FEAT first, then come back to this cell.")
Background exists: True /cvmfs/neurodesk.ardc.edu.au/containers/fsl_6.0.7.16_20250131/fsl_6.0.7.16_20250131.simg/opt/fsl-6.0.7.16/data/standard/MNI152_T1_2mm_brain.nii.gz
Contrast exists: True /home/jovyan/trust_example/derivatives/fsl/sub-104/L1_task-trust_model-01_type-act_run-01_sm-6.feat/thresh_zstat10.nii.gz

Dependencies in Jupyter/Python#

  • Using the package watermark to document system environment and software versions used in this notebook, alongside the Neurodesktop version extracted from the JUPYTER_IMAGE or NEURODESKTOP_VERSION environment variables.

import os

%load_ext watermark

%watermark
%watermark --iversions

neurodesktop_version = (
    os.environ.get('JUPYTER_IMAGE', '').split(':')[-1] or
    os.environ.get('NEURODESKTOP_VERSION', 'unknown')
)

print(f"Neurodesktop version: {neurodesktop_version}")
Last updated: 2026-04-20T07:55:06.889391+00:00

Python implementation: CPython
Python version       : 3.13.9
IPython version      : 9.7.0

Compiler    : GCC 14.3.0
OS          : Linux
Release     : 5.15.0-171-generic
Machine     : x86_64
Processor   : x86_64
CPU cores   : 32
Architecture: 64bit

IPython  : 9.7.0
ipyniivue: 2.4.4
nibabel  : 5.3.3
numpy    : 2.3.5
pandas   : 2.3.3

Neurodesktop version: 2025-12-20