In [92]:
import subprocess
from pathlib import Path
from templateflow import api
from nibabel.nifti1 import Nifti1Image
from nilearn import plotting
from nilearn.image import mean_img
from nibabel.orientations import aff2axcodes
In [93]:
def apply_transform(input_img: Path, reference_img: Path, transform: Path, output_img: Path):
"""Apply transform to input image using reference space."""
# Get dimensionality from input image
img = Nifti1Image.load(str(input_img))
ndim = len(img.shape)
if ndim == 4:
input_type = 3 # time-series type
else:
input_type = 0 # scalar type
cmd = [
"antsApplyTransforms",
"-d",
str(3), # dimensionality is 3 regardless
"-e",
str(input_type),
"-i",
str(input_img),
"-r",
str(reference_img),
"-t",
str(transform),
"-o",
str(output_img),
"-n",
"LanczosWindowedSinc",
"--float",
]
print(f"Running command: {' '.join(cmd)}")
subprocess.run(cmd, check=True)
def print_givens(img: Nifti1Image, name: str):
print(f"Image: {name}")
print(f"Shape: {img.shape}")
print(f"Zooms: {img.header.get_zooms()}")
print(f"Orientation: {aff2axcodes(img.affine)}")
In [101]:
# Setup paths
base_dir = Path.home() / "Documents/TEST"
transform_path = base_dir / "V12_to_V11.txt"
# T1w
path_v11_t1w = base_dir / "V11/sub-GRN296_ses-V11_acq-Philips3T3DT1_T1w.nii.gz"
path_v12_t1w = base_dir / "V12/sub-GRN296_ses-V12_acq-Philips3T3DT1_T1w.nii.gz"
path_v12_t1w_registered = path_v12_t1w.parent / path_v12_t1w.name.replace(".nii.gz", "_registered.nii.gz")
img_v11_t1w = Nifti1Image.load(str(path_v11_t1w))
img_v12_t1w = Nifti1Image.load(str(path_v12_t1w))
print_givens(img_v11_t1w, "V11 T1w")
print(img_v11_t1w.affine)
print_givens(img_v12_t1w, "V12 T1w")
print(img_v12_t1w.affine)
print("-" * 100)
# T2w
path_v11_t2w = base_dir / "V11/sub-GRN296_ses-V11_acq-Philips3T3DT2_T2w.nii.gz"
path_v12_t2w = base_dir / "V12/sub-GRN296_ses-V12_acq-Philips3T3DT2_T2w.nii.gz"
path_v12_t2w_registered = path_v12_t2w.parent / path_v12_t2w.name.replace(".nii.gz", "_registered.nii.gz")
img_v11_t2w = Nifti1Image.load(str(path_v11_t2w))
img_v12_t2w = Nifti1Image.load(str(path_v12_t2w))
print_givens(img_v11_t2w, "V11 T2w")
print(img_v11_t2w.affine)
print_givens(img_v12_t2w, "V12 T2w")
print(img_v12_t2w.affine)
print("-" * 100)
# BOLD
path_v11_bold = base_dir / "V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz"
path_v12_bold = base_dir / "V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz"
path_v12_bold_registered = path_v12_bold.parent / path_v12_bold.name.replace(".nii.gz", "_registered.nii.gz")
img_v11_bold = Nifti1Image.load(str(path_v11_bold))
img_v12_bold = Nifti1Image.load(str(path_v12_bold))
print_givens(img_v11_bold, "V11 BOLD")
print(img_v11_bold.affine)
print_givens(img_v12_bold, "V12 BOLD")
print(img_v12_bold.affine)
Image: V11 T1w Shape: (208, 256, 256) Zooms: (1.1, 1.1015625, 1.1015625) Orientation: ('R', 'A', 'S') [[ 1.09919715e+00 -3.97272855e-02 1.33315139e-02 -1.00281090e+02] [ 4.18307893e-02 1.05229211e+00 -3.23058039e-01 -5.07127228e+01] [-1.08275819e-03 3.23331177e-01 1.05304122e+00 -2.41561737e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]] Image: V12 T1w Shape: (208, 256, 256) Zooms: (1.1, 1.1015625, 1.1015625) Orientation: ('R', 'A', 'S') [[ 1.09916699e+00 3.44870659e-03 4.25405353e-02 -1.25100731e+02] [ 1.35649145e-02 1.01255357e+00 -4.33579028e-01 -2.85160751e+01] [-4.04029302e-02 4.33778137e-01 1.01175070e+00 -1.44102097e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]] ---------------------------------------------------------------------------------------------------- Image: V11 T2w Shape: (176, 256, 256) Zooms: (1.1, 1.1015625, 1.1015625) Orientation: ('R', 'A', 'S') [[ 1.09919715e+00 -3.97272855e-02 1.33315139e-02 -8.26938095e+01] [ 4.18307893e-02 1.05229211e+00 -3.23058039e-01 -5.00434113e+01] [-1.08275819e-03 3.23331177e-01 1.05304122e+00 -2.41579071e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]] Image: V12 T2w Shape: (176, 256, 256) Zooms: (1.1, 1.1015625, 1.1015625) Orientation: ('R', 'A', 'S') [[ 1.09916699e+00 3.44870659e-03 4.25405353e-02 -1.07513939e+02] [ 1.35649145e-02 1.01255357e+00 -4.33579028e-01 -2.82990341e+01] [-4.04029302e-02 4.33778137e-01 1.01175070e+00 -1.44748520e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]] ---------------------------------------------------------------------------------------------------- Image: V11 BOLD Shape: (64, 64, 42, 200) Zooms: (3.0, 3.0, 3.5, 2.5000014) Orientation: ('L', 'A', 'S') [[-2.99782848e+00 -1.08193457e-01 4.23582494e-02 1.07092514e+02] [-1.14084661e-01 2.86581683e+00 -1.02645302e+00 -2.20490570e+01] [ 2.95299338e-03 8.80561531e-01 3.34582973e+00 -1.44069565e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]] Image: V12 BOLD Shape: (64, 64, 42, 200) Zooms: (3.0, 3.0, 3.5, 2.5000014) Orientation: ('L', 'A', 'S') [[-2.99774766e+00 9.39222239e-03 1.35164261e-01 9.08997879e+01] [-3.69954631e-02 2.75759292e+00 -1.37761307e+00 -2.62816467e+01] [ 1.10190526e-01 1.18135321e+00 3.21464062e+00 -3.09833183e+01] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]]
In [95]:
# Sanity check, the original t2w images should not be registered; see this via plotting
plotting.plot_img(img_v11_t2w, cmap="gray", title="V11 T2w", cut_coords=(0, 0, 0)).add_overlay(
img_v12_t2w, cmap="Accent", alpha=0.5
)
In [96]:
# T1w
# Apply transform
print("Registering T1w image...")
apply_transform(path_v12_t1w, path_v11_t1w, transform_path, path_v12_t1w_registered)
img_v12_t1w_registered = Nifti1Image.load(str(path_v12_t1w_registered))
print_givens(img_v12_t1w_registered, "V12 T1w registered")
print(img_v12_t1w_registered.affine)
# Plot the registration
plotting.plot_img(img_v11_t1w, cmap="gray", title="V11 T1w", cut_coords=(0, 0, 0)).add_overlay(
img_v12_t1w_registered, cmap="Accent", alpha=0.5
)
Registering T1w image... Running command: antsApplyTransforms -d 3 -e 0 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_acq-Philips3T3DT1_T1w.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_acq-Philips3T3DT1_T1w.nii.gz -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_acq-Philips3T3DT1_T1w_registered.nii.gz -n LanczosWindowedSinc --float Image: V12 T1w registered Shape: (208, 256, 256) Zooms: (1.1, 1.1015625, 1.1015625) Orientation: ('R', 'A', 'S') [[ 1.09920382e+00 -3.97272855e-02 1.33315139e-02 -1.00281090e+02] [ 4.18310463e-02 1.05229211e+00 -3.23058039e-01 -5.07127228e+01] [-1.08276482e-03 3.23331177e-01 1.05304122e+00 -2.41561737e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]]
In [97]:
# T2w
# Apply transform
print("Registering T2w image...")
apply_transform(path_v12_t2w, path_v11_t2w, transform_path, path_v12_t2w_registered)
img_v12_t2w_registered = Nifti1Image.load(str(path_v12_t2w_registered))
print_givens(img_v12_t2w_registered, "V12 T2w registered")
print(img_v12_t2w_registered.affine)
# Plot the registration
plotting.plot_img(img_v11_t2w, cmap="gray", title="V11 T2w", cut_coords=(0, 0, 0)).add_overlay(
img_v12_t2w_registered, cmap="Accent", alpha=0.5
)
Registering T2w image... Running command: antsApplyTransforms -d 3 -e 0 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_acq-Philips3T3DT2_T2w.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_acq-Philips3T3DT2_T2w.nii.gz -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_acq-Philips3T3DT2_T2w_registered.nii.gz -n LanczosWindowedSinc --float Image: V12 T2w registered Shape: (176, 256, 256) Zooms: (1.1, 1.1015625, 1.1015625) Orientation: ('R', 'A', 'S') [[ 1.09920382e+00 -3.97272855e-02 1.33315139e-02 -8.26938095e+01] [ 4.18310463e-02 1.05229211e+00 -3.23058039e-01 -5.00434113e+01] [-1.08276482e-03 3.23331177e-01 1.05304122e+00 -2.41579071e+02] [ 0.00000000e+00 0.00000000e+00 0.00000000e+00 1.00000000e+00]]
In [98]:
print("Registering BOLD image...")
apply_transform(path_v12_bold, path_v11_bold, transform_path, path_v12_bold_registered)
img_v12_bold_registered = Nifti1Image.load(str(path_v12_bold_registered))
# And finally, check whether the new V12 BOLD image is registered to the V11 BOLD image
plotting.plot_epi(img_v11_bold.slicer[..., 10], cmap="gray", title="V11 BOLD", cut_coords=(0, 0, 0)).add_overlay(
img_v12_bold_registered.slicer[..., 10], cmap="Accent", alpha=0.5
)
Registering BOLD image... Running command: antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold_registered.nii.gz -n LanczosWindowedSinc --float
In [99]:
# Would it work if we applied the transform to each volume of the BOLD image and then concatenated them?
from tempfile import TemporaryDirectory
from subprocess import run
from nilearn.image import concat_imgs, iter_img
with TemporaryDirectory() as temp_dir:
# Instead we will apply the transform to each volume of the BOLD image and then concatenate them
imgs = []
img: Nifti1Image
for ii, img in enumerate(iter_img(img_v12_bold)): # type: ignore
path_temp_img = Path(temp_dir) / f"v12_bold_registered_volume_{ii:03d}.nii.gz"
cmd = [
"antsApplyTransforms",
"-d",
"3",
"-e",
"3",
"-i",
str(path_v12_bold),
"-r",
str(path_v11_bold),
"--time-index",
str(ii),
"-t",
str(transform_path),
"-o",
str(path_temp_img),
]
print(" ".join(cmd))
proc = run(
cmd,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
)
if proc.returncode != 0:
print(proc.stdout.decode())
print(proc.stderr.decode())
raise ValueError(f"Failed to register BOLD image volume {ii}")
imgs.append(Nifti1Image.load(str(path_temp_img)))
img_v12_bold_registered_concatenated = concat_imgs(imgs)
plotting.plot_epi(img_v11_bold.slicer[..., 10], cmap="gray", title="V11 BOLD", cut_coords=(0, 0, 0)).add_overlay(
img_v12_bold_registered_concatenated.slicer[..., 10], cmap="Accent", alpha=0.5
)
antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 0 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_000.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 1 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_001.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 2 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_002.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 3 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_003.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 4 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_004.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 5 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_005.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 6 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_006.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 7 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_007.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 8 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_008.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 9 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_009.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 10 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_010.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 11 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_011.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 12 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_012.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 13 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_013.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 14 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_014.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 15 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_015.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 16 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_016.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 17 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_017.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 18 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_018.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 19 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_019.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 20 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_020.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 21 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_021.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 22 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_022.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 23 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_023.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 24 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_024.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 25 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_025.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 26 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_026.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 27 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_027.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 28 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_028.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 29 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_029.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 30 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_030.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 31 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_031.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 32 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_032.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 33 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_033.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 34 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_034.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 35 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_035.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 36 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_036.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 37 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_037.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 38 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_038.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 39 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_039.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 40 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_040.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 41 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_041.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 42 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_042.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 43 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_043.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 44 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_044.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 45 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_045.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 46 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_046.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 47 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_047.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 48 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_048.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 49 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_049.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 50 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_050.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 51 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_051.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 52 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_052.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 53 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_053.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 54 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_054.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 55 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_055.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 56 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_056.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 57 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_057.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 58 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_058.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 59 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_059.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 60 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_060.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 61 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_061.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 62 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_062.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 63 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_063.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 64 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_064.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 65 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_065.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 66 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_066.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 67 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_067.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 68 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_068.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 69 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_069.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 70 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_070.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 71 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_071.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 72 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_072.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 73 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_073.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 74 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_074.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 75 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_075.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 76 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_076.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 77 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_077.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 78 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_078.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 79 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_079.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 80 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_080.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 81 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_081.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 82 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_082.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 83 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_083.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 84 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_084.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 85 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_085.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 86 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_086.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 87 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_087.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 88 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_088.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 89 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_089.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 90 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_090.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 91 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_091.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 92 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_092.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 93 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_093.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 94 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_094.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 95 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_095.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 96 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_096.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 97 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_097.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 98 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_098.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 99 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_099.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 100 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_100.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 101 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_101.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 102 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_102.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 103 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_103.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 104 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_104.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 105 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_105.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 106 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_106.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 107 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_107.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 108 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_108.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 109 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_109.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 110 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_110.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 111 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_111.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 112 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_112.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 113 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_113.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 114 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_114.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 115 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_115.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 116 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_116.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 117 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_117.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 118 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_118.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 119 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_119.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 120 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_120.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 121 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_121.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 122 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_122.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 123 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_123.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 124 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_124.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 125 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_125.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 126 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_126.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 127 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_127.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 128 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_128.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 129 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_129.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 130 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_130.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 131 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_131.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 132 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_132.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 133 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_133.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 134 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_134.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 135 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_135.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 136 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_136.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 137 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_137.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 138 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_138.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 139 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_139.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 140 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_140.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 141 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_141.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 142 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_142.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 143 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_143.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 144 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_144.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 145 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_145.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 146 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_146.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 147 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_147.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 148 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_148.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 149 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_149.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 150 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_150.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 151 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_151.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 152 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_152.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 153 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_153.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 154 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_154.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 155 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_155.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 156 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_156.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 157 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_157.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 158 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_158.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 159 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_159.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 160 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_160.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 161 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_161.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 162 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_162.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 163 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_163.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 164 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_164.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 165 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_165.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 166 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_166.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 167 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_167.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 168 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_168.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 169 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_169.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 170 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_170.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 171 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_171.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 172 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_172.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 173 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_173.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 174 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_174.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 175 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_175.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 176 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_176.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 177 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_177.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 178 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_178.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 179 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_179.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 180 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_180.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 181 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_181.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 182 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_182.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 183 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_183.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 184 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_184.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 185 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_185.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 186 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_186.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 187 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_187.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 188 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_188.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 189 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_189.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 190 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_190.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 191 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_191.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 192 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_192.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 193 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_193.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 194 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_194.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 195 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_195.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 196 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_196.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 197 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_197.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 198 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_198.nii.gz antsApplyTransforms -d 3 -e 3 -i /home/mpasternak/Documents/TEST/V12/sub-GRN296_ses-V12_task-rest_acq-Philips3T_bold.nii.gz -r /home/mpasternak/Documents/TEST/V11/sub-GRN296_ses-V11_task-rest_acq-Philips3T_bold.nii.gz --time-index 199 -t /home/mpasternak/Documents/TEST/V12_to_V11.txt -o /tmp/tmpw_ozslsb/v12_bold_registered_volume_199.nii.gz