From 3821bb5462c50b7b2fa66f4a3f38e73d5d506ab5 Mon Sep 17 00:00:00 2001 From: Remi Gau Date: Wed, 7 Feb 2024 15:19:55 +0100 Subject: [PATCH] update mri scanner info --- bids/ext/reports/parsing.py | 27 +- bids/ext/reports/templates.py | 15 +- docs/source/examples/generate_report.ipynb | 452 ++++++++------------- 3 files changed, 202 insertions(+), 292 deletions(-) diff --git a/bids/ext/reports/parsing.py b/bids/ext/reports/parsing.py index 2c45b3a..4160bf1 100644 --- a/bids/ext/reports/parsing.py +++ b/bids/ext/reports/parsing.py @@ -26,6 +26,12 @@ def institution_info(files: list[BIDSFile]): return "" +def mri_scanner_info(files: list[BIDSFile]): + first_file = files[0] + metadata = first_file.get_metadata() + return templates.mri_scanner_info(metadata) + + def common_mri_desc( img: None | nib.Nifti1Image, metadata: dict[str, Any], @@ -299,17 +305,20 @@ def parse_files( # Group files into individual runs data_files = collect_associated_files(layout, data_files, extra_entities=["run"]) - # print(data_files) - # Will only get institution from the first file. # This assumes that ALL files from ALL datatypes # were acquired in the same institution. description_list = [institution_info(data_files[0])] - print(description_list) - + # %% MRI + mri_datatypes = ["anat", "func", "fmap", "perf", "dwi"] + mri_scanner_info_done = False for group in data_files: + if not mri_scanner_info_done and group[0].entities["datatype"] in mri_datatypes: + description_list.append(mri_scanner_info(group)) + mri_scanner_info_done = True + if group[0].entities["datatype"] == "func": group_description = func_info(group, config, layout) @@ -334,7 +343,15 @@ def parse_files( ] == "phasediff": group_description = fmap_info(layout, group, config) - elif group[0].entities["datatype"] in [ + description_list.append(group_description) + + # %% other + for group in data_files: + + if group[0].entities["datatype"] in mri_datatypes: + continue + + if group[0].entities["datatype"] in [ "eeg", "meg", "pet", diff --git a/bids/ext/reports/templates.py b/bids/ext/reports/templates.py index 6feac3b..fd78e01 100644 --- a/bids/ext/reports/templates.py +++ b/bids/ext/reports/templates.py @@ -24,11 +24,13 @@ def render(template_name: str, data: dict[str, Any] | None = None) -> str: return tmp -def highlight_missing_tags(foo: str) -> str: +def highlight_missing_tags(foo: str, color="cyan") -> str: """Highlight missing tags in a rendered template.""" - foo = f"[blue]{foo}[/blue]" - foo = foo.replace("{{", "[/blue][red]{{") - foo = foo.replace("}}", "}}[/red][blue]") + foo = f"[{color}]{foo}[/{color}]" + open_del = "{{" + foo = foo.replace("{{", f"[/{color}][red]{open_del}") + close_del = "}}" + foo = foo.replace("}}", f"{close_del}[/red][{color}]") return foo @@ -40,6 +42,11 @@ def footer() -> str: return f"This section was (in part) generated automatically using pybids {__version__}." +def mri_scanner_info(desc_data: dict[str, Any]) -> str: + """Generate mri scanner info report.""" + return render(template_name="mri_scanner_info.mustache", data=desc_data) + + def institution_info(desc_data: dict[str, Any]) -> str: """Generate institution report.""" return render(template_name="institution.mustache", data=desc_data) diff --git a/docs/source/examples/generate_report.ipynb b/docs/source/examples/generate_report.ipynb index 24d0bf7..a21ad41 100644 --- a/docs/source/examples/generate_report.ipynb +++ b/docs/source/examples/generate_report.ipynb @@ -46,32 +46,6 @@ "tags": [] }, "outputs": [ - { - "data": { - "text/html": [ - "
[14:41:39] WARNING   'sub-01_ses-01_magnitude1.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m[14:41:39]\u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-01_ses-01_magnitude1.nii.gz'\u001b[0m not yet supported. \u001b]8;id=223202;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=140722;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-01_ses-01_magnitude2.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-01_ses-01_magnitude2.nii.gz'\u001b[0m not yet supported. \u001b]8;id=504149;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=737701;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, { "name": "stderr", "output_type": "stream", @@ -83,115 +57,11 @@ { "data": { "text/html": [ - "
           WARNING   'sub-02_ses-01_magnitude1.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-02_ses-01_magnitude1.nii.gz'\u001b[0m not yet supported. \u001b]8;id=75636;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=944897;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-02_ses-01_magnitude2.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-02_ses-01_magnitude2.nii.gz'\u001b[0m not yet supported. \u001b]8;id=503709;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=202060;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-03_ses-01_magnitude1.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-03_ses-01_magnitude1.nii.gz'\u001b[0m not yet supported. \u001b]8;id=448860;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=177690;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-03_ses-01_magnitude2.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-03_ses-01_magnitude2.nii.gz'\u001b[0m not yet supported. \u001b]8;id=437160;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=739202;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-04_ses-01_magnitude1.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-04_ses-01_magnitude1.nii.gz'\u001b[0m not yet supported. \u001b]8;id=654117;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=522666;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-04_ses-01_magnitude2.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-04_ses-01_magnitude2.nii.gz'\u001b[0m not yet supported. \u001b]8;id=615329;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=375664;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-05_ses-01_magnitude1.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-05_ses-01_magnitude1.nii.gz'\u001b[0m not yet supported. \u001b]8;id=682190;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=246368;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           WARNING   'sub-05_ses-01_magnitude2.nii.gz' not yet supported.                            parsing.py:348\n",
-       "
\n" - ], - "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[31mWARNING \u001b[0m \u001b[32m'sub-05_ses-01_magnitude2.nii.gz'\u001b[0m not yet supported. \u001b]8;id=995651;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py\u001b\\\u001b[2mparsing.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=357936;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/parsing.py#348\u001b\\\u001b[2m348\u001b[0m\u001b]8;;\u001b\\\n" - ] - }, - "metadata": {}, - "output_type": "display_data" - }, - { - "data": { - "text/html": [ - "
           INFO     Number of patterns detected: 1                                                    report.py:182\n",
+       "
[15:14:14] INFO     Number of patterns detected: 1                                                    report.py:182\n",
        "
\n" ], "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Number of patterns detected: \u001b[1;36m1\u001b[0m \u001b]8;id=750728;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py\u001b\\\u001b[2mreport.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=475419;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py#182\u001b\\\u001b[2m182\u001b[0m\u001b]8;;\u001b\\\n" + "\u001b[2;36m[15:14:14]\u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Number of patterns detected: \u001b[1;36m1\u001b[0m \u001b]8;id=466182;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py\u001b\\\u001b[2mreport.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=950031;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py#182\u001b\\\u001b[2m182\u001b[0m\u001b]8;;\u001b\\\n" ] }, "metadata": {}, @@ -204,7 +74,7 @@ "
\n" ], "text/plain": [ - "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Remember to double-check everything and to replace \u001b[1m<\u001b[0m\u001b[1;95mdeg\u001b[0m\u001b[1m>\u001b[0m with a degree symbol. \u001b]8;id=125791;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py\u001b\\\u001b[2mreport.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=78274;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py#184\u001b\\\u001b[2m184\u001b[0m\u001b]8;;\u001b\\\n" + "\u001b[2;36m \u001b[0m\u001b[2;36m \u001b[0m\u001b[34mINFO \u001b[0m Remember to double-check everything and to replace \u001b[1m<\u001b[0m\u001b[1;95mdeg\u001b[0m\u001b[1m>\u001b[0m with a degree symbol. \u001b]8;id=809035;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py\u001b\\\u001b[2mreport.py\u001b[0m\u001b]8;;\u001b\\\u001b[2m:\u001b[0m\u001b]8;id=341887;file:///home/remi/github/bids/pybids-reports/env/lib/python3.11/site-packages/bids/ext/reports/report.py#184\u001b\\\u001b[2m184\u001b[0m\u001b]8;;\u001b\\\n" ] }, "metadata": {}, @@ -230,162 +100,178 @@ "data": { "text/html": [ "
In session 01, \n",
-       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
-       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
-       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
-       "\n",
-       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
-       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
-       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
-       "\n",
-       "        One run of  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging () data were collected (68\n",
-       "slices; repetition time, TR= 8400.0 ms; flip angle, FA= 90°; echo time, TE= 90 ms; field of view FOV= 128x128 mm; \n",
-       "matrix size= 64x64; voxel size= 2x2x2 mm; b-values of 0 and 1000 acquired; 64 diffusion directions;  ).\n",
-       "\n",
-       "        \n",
-       "        \n",
-       "        A  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT field map (repetition time, TR= 400.0 ms; flip angle, FA= \n",
-       "60.0°; echo time 1 / 2, TE 1/2= 519000.0/519000.0 ms; phase encoding: anterior to posterior; field of view FOV= \n",
-       "256x256 mm; matrix size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices) was acquired for the first and second runs \n",
-       "of the N-Back BOLD scan.\n",
-       "\n",
-       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
-       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
-       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
-       "\n",
-       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
-       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
-       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
-       "\n",
-       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
-       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
-       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
-       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
-       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
-       "\n",
-       "Participants were specifically instructed to: \n",
+       "        MRI data were acquired using a  system.\n",
+       "\n",
+       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
+       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
+       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
+       "\n",
+       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
+       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
+       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
+       "\n",
+       "        One run of  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging () data were collected (68\n",
+       "slices; repetition time, TR= 8400.0 ms; flip angle, FA= 90°; echo time, TE= 90 ms; field of view FOV= 128x128 mm; \n",
+       "matrix size= 64x64; voxel size= 2x2x2 mm; b-values of 0 and 1000 acquired; 64 diffusion directions;  ).\n",
+       "\n",
+       "        One run of  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging () data were collected (68\n",
+       "slices; repetition time, TR= 8400.0 ms; flip angle, FA= 90°; echo time, TE= 90 ms; field of view FOV= 128x128 mm; \n",
+       "matrix size= 64x64; voxel size= 2x2x2 mm; b-values of 0 and 1000 acquired; 64 diffusion directions;  ).\n",
+       "\n",
+       "        One run of  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging () data were collected (68\n",
+       "slices; repetition time, TR= 8400.0 ms; flip angle, FA= 90°; echo time, TE= 90 ms; field of view FOV= 128x128 mm; \n",
+       "matrix size= 64x64; voxel size= 2x2x2 mm; b-values of 0 and 1000 acquired; 64 diffusion directions;  ).\n",
+       "\n",
+       "        A  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT field map (repetition time, TR= 400.0 ms; flip angle, FA= \n",
+       "60.0°; echo time 1 / 2, TE 1/2= 519000.0/519000.0 ms; phase encoding: anterior to posterior; field of view FOV= \n",
+       "256x256 mm; matrix size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices) was acquired for the first and second runs \n",
+       "of the N-Back BOLD scan.\n",
+       "\n",
+       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
+       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
+       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
+       "\n",
+       "        One run of   UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \n",
+       "(repetition time, TR= 2500.0 ms; flip angle, FA= 8°; echo time, TE= 2.9 ms; field of view FOV= 256x256 mm; matrix \n",
+       "size= 256x256; voxel size= 1x1x1 mm; UNKNOWN slices).\n",
+       "\n",
+       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        For the N-Back task Two runs of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
+       "        For the Rest task One run of bold  UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \n",
+       "collected. The acquisition parameters were: UNKNOWN slices acquired in a  fashion; repetition time, TR= 2500.0 ms; \n",
+       "echo time, TE= 30 ms;    field of view FOV= 128x128 mm; matrix size= 64x64; voxel size= 2x2x2 mm;\n",
+       "Each run was 2:40 minutes in length, during which 64 functional volumes were acquired.\n",
+       "\n",
+       "Participants were specifically instructed to: \n",
        "\n",
        "Dicoms were converted to NIfTI-1 format.\n",
        "
\n" ], "text/plain": [ "In session \u001b[1;36m01\u001b[0m, \n", - " \u001b[34mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", - "\u001b[1;34m(\u001b[0m\u001b[34mrepetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; flip angle, \u001b[0m\u001b[34mFA\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m8\u001b[0m\u001b[34m°; echo time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2.9\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 256x256 mm; matrix \u001b[0m\n", - "\u001b[34msize\u001b[0m\u001b[34m= 256x256; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m.\u001b[0m\n", - "\n", - " \u001b[34mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", - "\u001b[1;34m(\u001b[0m\u001b[34mrepetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; flip angle, \u001b[0m\u001b[34mFA\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m8\u001b[0m\u001b[34m°; echo time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2.9\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 256x256 mm; matrix \u001b[0m\n", - "\u001b[34msize\u001b[0m\u001b[34m= 256x256; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m.\u001b[0m\n", - "\n", - " \u001b[34mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging \u001b[0m\u001b[1;34m(\u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m data were collected \u001b[0m\u001b[1;34m(\u001b[0m\u001b[1;34m68\u001b[0m\n", - "\u001b[34mslices; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m8400.0\u001b[0m\u001b[34m ms; flip angle, \u001b[0m\u001b[34mFA\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m90\u001b[0m\u001b[34m°; echo time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m90\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; \u001b[0m\n", - "\u001b[34mmatrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm; b-values of \u001b[0m\u001b[1;34m0\u001b[0m\u001b[34m and \u001b[0m\u001b[1;34m1000\u001b[0m\u001b[34m acquired; \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m diffusion directions; \u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m.\u001b[0m\n", - "\n", - " \n", - " \n", - " \u001b[34mA UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT field map \u001b[0m\u001b[1;34m(\u001b[0m\u001b[34mrepetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m400.0\u001b[0m\u001b[34m ms; flip angle, \u001b[0m\u001b[34mFA\u001b[0m\u001b[34m= \u001b[0m\n", - "\u001b[1;34m60.0\u001b[0m\u001b[34m°; echo time \u001b[0m\u001b[1;34m1\u001b[0m\u001b[34m \u001b[0m\u001b[34m/\u001b[0m\u001b[34m \u001b[0m\u001b[1;34m2\u001b[0m\u001b[34m, TE \u001b[0m\u001b[1;34m1\u001b[0m\u001b[34m/\u001b[0m\u001b[1;34m2\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m519000.0\u001b[0m\u001b[34m/\u001b[0m\u001b[1;34m519000.0\u001b[0m\u001b[34m ms; phase encoding: anterior to posterior; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= \u001b[0m\n", - "\u001b[34m256x256 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 256x256; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m was acquired for the first and second runs \u001b[0m\n", - "\u001b[34mof the N-Back BOLD scan.\u001b[0m\n", - "\n", - " \u001b[34mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", - "\u001b[1;34m(\u001b[0m\u001b[34mrepetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; flip angle, \u001b[0m\u001b[34mFA\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m8\u001b[0m\u001b[34m°; echo time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2.9\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 256x256 mm; matrix \u001b[0m\n", - "\u001b[34msize\u001b[0m\u001b[34m= 256x256; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m.\u001b[0m\n", - "\n", - " \u001b[34mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", - "\u001b[1;34m(\u001b[0m\u001b[34mrepetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; flip angle, \u001b[0m\u001b[34mFA\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m8\u001b[0m\u001b[34m°; echo time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2.9\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 256x256 mm; matrix \u001b[0m\n", - "\u001b[34msize\u001b[0m\u001b[34m= 256x256; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;34m)\u001b[0m\u001b[34m.\u001b[0m\n", - "\n", - " \u001b[34mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", - " \u001b[34mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", - "\u001b[34mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[34mTR\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m2500.0\u001b[0m\u001b[34m ms; \u001b[0m\n", - "\u001b[34mecho time, \u001b[0m\u001b[34mTE\u001b[0m\u001b[34m= \u001b[0m\u001b[1;34m30\u001b[0m\u001b[34m ms; field of view \u001b[0m\u001b[34mFOV\u001b[0m\u001b[34m= 128x128 mm; matrix \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 64x64; voxel \u001b[0m\u001b[34msize\u001b[0m\u001b[34m= 2x2x2 mm;\u001b[0m\n", - "\u001b[34mEach run was \u001b[0m\u001b[1;34m2:40\u001b[0m\u001b[34m minutes in length, during which \u001b[0m\u001b[1;34m64\u001b[0m\u001b[34m functional volumes were acquired.\u001b[0m\n", - "\n", - "\u001b[34mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mMRI data were acquired using a system.\u001b[0m\n", + "\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", + "\u001b[1;36m(\u001b[0m\u001b[36mrepetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2.9\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 256x256 mm; matrix \u001b[0m\n", + "\u001b[36msize\u001b[0m\u001b[36m= 256x256; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", + "\u001b[1;36m(\u001b[0m\u001b[36mrepetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2.9\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 256x256 mm; matrix \u001b[0m\n", + "\u001b[36msize\u001b[0m\u001b[36m= 256x256; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging \u001b[0m\u001b[1;36m(\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m data were collected \u001b[0m\u001b[1;36m(\u001b[0m\u001b[1;36m68\u001b[0m\n", + "\u001b[36mslices; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8400.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m90\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m90\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; \u001b[0m\n", + "\u001b[36mmatrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm; b-values of \u001b[0m\u001b[1;36m0\u001b[0m\u001b[36m and \u001b[0m\u001b[1;36m1000\u001b[0m\u001b[36m acquired; \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m diffusion directions; \u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging \u001b[0m\u001b[1;36m(\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m data were collected \u001b[0m\u001b[1;36m(\u001b[0m\u001b[1;36m68\u001b[0m\n", + "\u001b[36mslices; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8400.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m90\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m90\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; \u001b[0m\n", + "\u001b[36mmatrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm; b-values of \u001b[0m\u001b[1;36m0\u001b[0m\u001b[36m and \u001b[0m\u001b[1;36m1000\u001b[0m\u001b[36m acquired; \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m diffusion directions; \u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT diffusion-weighted-imaging \u001b[0m\u001b[1;36m(\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m data were collected \u001b[0m\u001b[1;36m(\u001b[0m\u001b[1;36m68\u001b[0m\n", + "\u001b[36mslices; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8400.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m90\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m90\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; \u001b[0m\n", + "\u001b[36mmatrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm; b-values of \u001b[0m\u001b[1;36m0\u001b[0m\u001b[36m and \u001b[0m\u001b[1;36m1000\u001b[0m\u001b[36m acquired; \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m diffusion directions; \u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mA UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT field map \u001b[0m\u001b[1;36m(\u001b[0m\u001b[36mrepetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m400.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\n", + "\u001b[1;36m60.0\u001b[0m\u001b[36m°; echo time \u001b[0m\u001b[1;36m1\u001b[0m\u001b[36m \u001b[0m\u001b[36m/\u001b[0m\u001b[36m \u001b[0m\u001b[1;36m2\u001b[0m\u001b[36m, TE \u001b[0m\u001b[1;36m1\u001b[0m\u001b[36m/\u001b[0m\u001b[1;36m2\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m519000.0\u001b[0m\u001b[36m/\u001b[0m\u001b[1;36m519000.0\u001b[0m\u001b[36m ms; phase encoding: anterior to posterior; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= \u001b[0m\n", + "\u001b[36m256x256 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 256x256; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m was acquired for the first and second runs \u001b[0m\n", + "\u001b[36mof the N-Back BOLD scan.\u001b[0m\n", + "\n", + " \u001b[36mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", + "\u001b[1;36m(\u001b[0m\u001b[36mrepetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2.9\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 256x256 mm; matrix \u001b[0m\n", + "\u001b[36msize\u001b[0m\u001b[36m= 256x256; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mOne run of UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo structural MRI data were collected \u001b[0m\n", + "\u001b[1;36m(\u001b[0m\u001b[36mrepetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; flip angle, \u001b[0m\u001b[36mFA\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m8\u001b[0m\u001b[36m°; echo time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2.9\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 256x256 mm; matrix \u001b[0m\n", + "\u001b[36msize\u001b[0m\u001b[36m= 256x256; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 1x1x1 mm; UNKNOWN slices\u001b[0m\u001b[1;36m)\u001b[0m\u001b[36m.\u001b[0m\n", + "\n", + " \u001b[36mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mFor the N-Back task Two runs of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", + " \u001b[36mFor the Rest task One run of bold UNKNOwN SEQUENCE UNKNOwN SEQUENCE VARIANT single-echo fMRI data were \u001b[0m\n", + "\u001b[36mcollected. The acquisition parameters were: UNKNOWN slices acquired in a fashion; repetition time, \u001b[0m\u001b[36mTR\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m2500.0\u001b[0m\u001b[36m ms; \u001b[0m\n", + "\u001b[36mecho time, \u001b[0m\u001b[36mTE\u001b[0m\u001b[36m= \u001b[0m\u001b[1;36m30\u001b[0m\u001b[36m ms; field of view \u001b[0m\u001b[36mFOV\u001b[0m\u001b[36m= 128x128 mm; matrix \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 64x64; voxel \u001b[0m\u001b[36msize\u001b[0m\u001b[36m= 2x2x2 mm;\u001b[0m\n", + "\u001b[36mEach run was \u001b[0m\u001b[1;36m2:40\u001b[0m\u001b[36m minutes in length, during which \u001b[0m\u001b[1;36m64\u001b[0m\u001b[36m functional volumes were acquired.\u001b[0m\n", + "\n", + "\u001b[36mParticipants were specifically instructed to: \u001b[0m\n", "\n", "Dicoms were converted to NIfTI-\u001b[1;36m1\u001b[0m format.\n" ]