├── .gitattributes ├── .github ├── codespell_exclude_lines.txt ├── codespell_ignore_words.txt ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── build-test-deploy.yml │ ├── codespell.yml │ └── docs.yml ├── .gitignore ├── .gitmodules ├── .mailmap ├── .zenodo.json ├── CHANGELOG.rst ├── LICENSE ├── MANIFEST.in ├── README.md ├── codecov.yml ├── doc ├── Makefile ├── _static │ ├── git.png │ └── theme_overrides.css ├── _templates │ ├── class.rst │ ├── function.rst │ └── module.rst ├── analysis │ └── index.rst ├── api.rst ├── conf.py ├── examples │ ├── index.rst │ ├── pybids_tutorial.md │ ├── reports_tutorial.md │ └── statsmodels_tutorial.md ├── includes │ ├── big_toc_css.rst │ └── bigger_toc_css.rst ├── index.rst ├── introduction.rst ├── layout │ └── index.rst ├── make.bat ├── reports │ └── index.rst ├── sphinxext │ ├── docscrape.py │ ├── docscrape_sphinx.py │ ├── github.py │ ├── math_dollar.py │ └── numpydoc.py ├── tune_toc.rst ├── user_guide.rst └── whats_new.rst ├── long_description.rst ├── paper ├── paper.bib └── paper.md ├── pyproject.toml ├── setup.cfg ├── setup.py ├── src └── bids │ ├── __init__.py │ ├── __main__.py │ ├── _version.py │ ├── cli.py │ ├── config.py │ ├── conftest.py │ ├── due.py │ ├── exceptions.py │ ├── ext │ └── __init__.py │ ├── external │ ├── __init__.py │ └── inflect.py │ ├── layout │ ├── README.md │ ├── __init__.py │ ├── config │ │ ├── bids.json │ │ └── derivatives.json │ ├── db.py │ ├── index.py │ ├── layout.py │ ├── models.py │ ├── tests │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── data │ │ │ └── sample_validation_config.json │ │ ├── test_db.py │ │ ├── test_layout.py │ │ ├── test_layout_on_examples.py │ │ ├── test_models.py │ │ ├── test_path_building.py │ │ ├── test_remote_bids.py │ │ ├── test_rootpath.py │ │ ├── test_utils.py │ │ ├── test_validation.py │ │ └── test_writing.py │ ├── utils.py │ ├── validation.py │ └── writing.py │ ├── modeling │ ├── README.md │ ├── __init__.py │ ├── auto_model.py │ ├── hrf.py │ ├── model_spec.py │ ├── report │ │ ├── __init__.py │ │ ├── base.py │ │ ├── report_template.jinja │ │ ├── utils.py │ │ └── viz.py │ ├── statsmodels.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_automodel.py │ │ ├── test_hrf.py │ │ ├── test_model_spec.py │ │ ├── test_statsmodels.py │ │ └── test_transformations.py │ └── transformations │ │ ├── __init__.py │ │ ├── base.py │ │ ├── compute.py │ │ └── munge.py │ ├── reports │ ├── README.md │ ├── __init__.py │ ├── config │ │ └── converters.json │ ├── conftest.py │ ├── parameters.py │ ├── parsing.py │ ├── report.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_parameters.py │ │ ├── test_parsing.py │ │ └── test_report.py │ └── utils.py │ ├── tests │ ├── __init__.py │ ├── data │ │ └── images │ │ │ ├── 3d.nii.gz │ │ │ ├── 4d.bval │ │ │ └── 4d.nii.gz │ ├── test_cli.py │ ├── test_config.py │ └── utils.py │ ├── utils.py │ └── variables │ ├── __init__.py │ ├── collections.py │ ├── entities.py │ ├── io.py │ ├── tests │ ├── __init__.py │ ├── test_collections.py │ ├── test_entities.py │ ├── test_io.py │ └── test_variables.py │ └── variables.py ├── tests └── data │ ├── 7t_trt │ ├── README │ ├── dataset_description.json │ ├── participants.tsv │ ├── sub-01 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-01_ses-1_T1map.nii.gz │ │ │ │ └── sub-01_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-01_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-01_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-01_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-01_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-01_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-01_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-01_ses-1_run-2_phasediff.json │ │ │ │ └── sub-01_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-01_ses-1_task-rest_acq-fullbrain_run-1_bold.json │ │ │ │ ├── sub-01_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-01_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-01_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-01_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-01_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-01_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-01_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-01_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-01_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-01_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-01_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-01_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-01_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-01_ses-2_run-2_phasediff.json │ │ │ │ └── sub-01_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-01_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-01_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-01_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-01_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-01_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-01_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-01_ses-2_scans.tsv │ │ └── sub-01_sessions.tsv │ ├── sub-02 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-02_ses-1_T1map.nii.gz │ │ │ │ └── sub-02_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-02_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-02_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-02_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-02_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-02_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-02_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-02_ses-1_run-2_phasediff.json │ │ │ │ └── sub-02_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-02_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-02_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-02_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-02_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-02_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-02_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-02_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-02_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-02_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-02_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-02_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-02_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-02_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-02_ses-2_run-2_phasediff.json │ │ │ │ └── sub-02_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-02_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-02_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-02_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-02_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-02_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-02_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-02_ses-2_scans.tsv │ │ └── sub-02_sessions.tsv │ ├── sub-03 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-03_ses-1_T1map.nii.gz │ │ │ │ └── sub-03_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-03_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-03_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-03_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-03_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-03_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-03_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-03_ses-1_run-2_phasediff.json │ │ │ │ └── sub-03_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-03_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-03_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-03_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-03_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-03_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-03_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-03_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-03_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-03_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-03_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-03_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-03_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-03_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-03_ses-2_run-2_phasediff.json │ │ │ │ └── sub-03_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-03_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-03_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-03_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-03_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-03_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-03_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-03_ses-2_scans.tsv │ │ ├── sub-03-test.bval │ │ └── sub-03_sessions.tsv │ ├── sub-04 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-04_ses-1_T1map.nii.gz │ │ │ │ └── sub-04_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-04_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-04_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-04_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-04_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-04_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-04_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-04_ses-1_run-2_phasediff.json │ │ │ │ └── sub-04_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-04_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-04_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-04_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-04_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-04_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-04_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-04_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-04_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-04_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-04_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-04_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-04_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-04_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-04_ses-2_run-2_phasediff.json │ │ │ │ └── sub-04_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-04_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-04_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-04_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-04_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-04_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-04_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-04_ses-2_scans.tsv │ │ └── sub-04_sessions.tsv │ ├── sub-05 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-05_ses-1_T1map.nii.gz │ │ │ │ └── sub-05_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-05_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-05_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-05_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-05_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-05_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-05_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-05_ses-1_run-2_phasediff.json │ │ │ │ └── sub-05_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-05_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-05_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-05_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-05_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-05_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-05_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-05_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-05_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-05_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-05_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-05_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-05_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-05_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-05_ses-2_run-2_phasediff.json │ │ │ │ └── sub-05_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-05_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-05_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-05_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-05_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-05_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-05_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-05_ses-2_scans.tsv │ │ └── sub-05_sessions.tsv │ ├── sub-06 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-06_ses-1_T1map.nii.gz │ │ │ │ └── sub-06_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-06_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-06_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-06_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-06_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-06_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-06_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-06_ses-1_run-2_phasediff.json │ │ │ │ └── sub-06_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-06_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-06_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-06_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-06_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-06_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-06_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-06_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-06_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-06_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-06_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-06_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-06_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-06_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-06_ses-2_run-2_phasediff.json │ │ │ │ └── sub-06_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-06_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-06_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-06_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-06_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-06_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-06_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-06_ses-2_scans.tsv │ │ └── sub-06_sessions.tsv │ ├── sub-07 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-07_ses-1_T1map.nii.gz │ │ │ │ └── sub-07_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-07_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-07_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-07_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-07_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-07_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-07_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-07_ses-1_run-2_phasediff.json │ │ │ │ └── sub-07_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-07_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-07_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-07_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-07_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-07_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-07_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-07_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-07_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-07_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-07_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-07_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-07_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-07_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-07_ses-2_run-2_phasediff.json │ │ │ │ └── sub-07_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-07_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-07_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-07_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-07_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-07_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-07_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-07_ses-2_scans.tsv │ │ └── sub-07_sessions.tsv │ ├── sub-08 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-08_ses-1_T1map.nii.gz │ │ │ │ └── sub-08_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-08_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-08_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-08_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-08_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-08_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-08_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-08_ses-1_run-2_phasediff.json │ │ │ │ └── sub-08_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-08_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-08_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-08_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-08_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-08_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-08_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-08_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-08_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-08_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-08_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-08_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-08_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-08_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-08_ses-2_run-2_phasediff.json │ │ │ │ └── sub-08_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-08_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-08_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-08_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-08_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-08_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-08_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-08_ses-2_scans.tsv │ │ └── sub-08_sessions.tsv │ ├── sub-09 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-09_ses-1_T1map.nii.gz │ │ │ │ └── sub-09_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-09_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-09_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-09_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-09_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-09_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-09_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-09_ses-1_run-2_phasediff.json │ │ │ │ └── sub-09_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-09_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-09_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-09_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-09_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-09_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-09_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-09_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-09_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-09_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-09_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-09_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-09_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-09_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-09_ses-2_run-2_phasediff.json │ │ │ │ └── sub-09_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-09_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-09_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-09_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-09_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-09_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-09_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-09_ses-2_scans.tsv │ │ └── sub-09_sessions.tsv │ ├── sub-10 │ │ ├── ses-1 │ │ │ ├── anat │ │ │ │ ├── sub-10_ses-1_T1map.nii.gz │ │ │ │ └── sub-10_ses-1_T1w.nii.gz │ │ │ ├── fmap │ │ │ │ ├── sub-10_ses-1_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-10_ses-1_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-10_ses-1_run-1_phasediff.json │ │ │ │ ├── sub-10_ses-1_run-1_phasediff.nii.gz │ │ │ │ ├── sub-10_ses-1_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-10_ses-1_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-10_ses-1_run-2_phasediff.json │ │ │ │ └── sub-10_ses-1_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-10_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-10_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-10_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-10_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-10_ses-1_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-10_ses-1_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-10_ses-1_scans.tsv │ │ ├── ses-2 │ │ │ ├── fmap │ │ │ │ ├── sub-10_ses-2_run-1_magnitude1.nii.gz │ │ │ │ ├── sub-10_ses-2_run-1_magnitude2.nii.gz │ │ │ │ ├── sub-10_ses-2_run-1_phasediff.json │ │ │ │ ├── sub-10_ses-2_run-1_phasediff.nii.gz │ │ │ │ ├── sub-10_ses-2_run-2_magnitude1.nii.gz │ │ │ │ ├── sub-10_ses-2_run-2_magnitude2.nii.gz │ │ │ │ ├── sub-10_ses-2_run-2_phasediff.json │ │ │ │ └── sub-10_ses-2_run-2_phasediff.nii.gz │ │ │ ├── func │ │ │ │ ├── sub-10_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz │ │ │ │ ├── sub-10_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz │ │ │ │ ├── sub-10_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz │ │ │ │ ├── sub-10_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz │ │ │ │ ├── sub-10_ses-2_task-rest_acq-prefrontal_bold.nii.gz │ │ │ │ └── sub-10_ses-2_task-rest_acq-prefrontal_physio.tsv.gz │ │ │ └── sub-10_ses-2_scans.tsv │ │ └── sub-10_sessions.tsv │ ├── task-rest_acq-fullbrain_bold.json │ ├── task-rest_acq-fullbrain_run-1_physio.json │ ├── task-rest_acq-fullbrain_run-2_physio.json │ ├── task-rest_acq-prefrontal_bold.json │ ├── task-rest_acq-prefrontal_physio.json │ └── test.bval │ ├── bids_specs_with_oligarchy.json │ ├── ds000117 │ ├── .bidsignore │ ├── CHANGES │ ├── README │ ├── acq-epi_T1w.json │ ├── acq-mprage_T1w.json │ ├── dataset_description.json │ ├── participants.tsv │ ├── run-1_echo-1_FLASH.json │ ├── run-1_echo-2_FLASH.json │ ├── run-1_echo-3_FLASH.json │ ├── run-1_echo-4_FLASH.json │ ├── run-1_echo-5_FLASH.json │ ├── run-1_echo-6_FLASH.json │ ├── run-1_echo-7_FLASH.json │ ├── run-2_echo-1_FLASH.json │ ├── run-2_echo-2_FLASH.json │ ├── run-2_echo-3_FLASH.json │ ├── run-2_echo-4_FLASH.json │ ├── run-2_echo-5_FLASH.json │ ├── run-2_echo-6_FLASH.json │ ├── run-2_echo-7_FLASH.json │ ├── sub-01 │ │ ├── ses-meg │ │ │ ├── beh │ │ │ │ └── sub-01_ses-meg_task-facerecognition_events.tsv │ │ │ ├── meg │ │ │ │ ├── sub-01_ses-meg_headshape.pos │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_proc-sss_coordsystem.json │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-01_proc-sss_events.tsv │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-01_proc-sss_meg.fif │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-02_proc-sss_events.tsv │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-02_proc-sss_meg.fif │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-03_proc-sss_events.tsv │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-03_proc-sss_meg.fif │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-04_proc-sss_events.tsv │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-04_proc-sss_meg.fif │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-05_proc-sss_events.tsv │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-05_proc-sss_meg.fif │ │ │ │ ├── sub-01_ses-meg_task-facerecognition_run-06_proc-sss_events.tsv │ │ │ │ └── sub-01_ses-meg_task-facerecognition_run-06_proc-sss_meg.fif │ │ │ └── sub-01_ses-meg_scans.tsv │ │ └── ses-mri │ │ │ ├── anat │ │ │ ├── sub-01_ses-mri_acq-mprage_T1w.json │ │ │ ├── sub-01_ses-mri_acq-mprage_T1w.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-1_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-2_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-3_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-4_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-5_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-6_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-1_echo-7_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-2_echo-1_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-2_echo-2_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-2_echo-3_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-2_echo-4_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-2_echo-5_FLASH.nii.gz │ │ │ ├── sub-01_ses-mri_run-2_echo-6_FLASH.nii.gz │ │ │ └── sub-01_ses-mri_run-2_echo-7_FLASH.nii.gz │ │ │ ├── dwi │ │ │ ├── sub-01_ses-mri_dwi.bval │ │ │ ├── sub-01_ses-mri_dwi.bvec │ │ │ ├── sub-01_ses-mri_dwi.json │ │ │ └── sub-01_ses-mri_dwi.nii.gz │ │ │ ├── fmap │ │ │ ├── sub-01_ses-mri_magnitude1.nii │ │ │ ├── sub-01_ses-mri_magnitude2.nii │ │ │ ├── sub-01_ses-mri_phasediff.json │ │ │ └── sub-01_ses-mri_phasediff.nii │ │ │ └── func │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-01_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-01_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-02_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-02_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-03_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-03_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-04_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-04_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-05_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-05_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-06_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-06_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-07_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-07_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-08_bold.nii.gz │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-08_events.tsv │ │ │ ├── sub-01_ses-mri_task-facerecognition_run-09_bold.nii.gz │ │ │ └── sub-01_ses-mri_task-facerecognition_run-09_events.tsv │ ├── sub-02 │ │ ├── ses-meg │ │ │ ├── beh │ │ │ │ └── sub-02_ses-meg_task-facerecognition_events.tsv │ │ │ ├── meg │ │ │ │ ├── sub-02_ses-meg_headshape.pos │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_coordsystem.json │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-01_events.tsv │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-01_meg.fif │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-02_events.tsv │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-02_meg.fif │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-03_events.tsv │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-03_meg.fif │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-04_events.tsv │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-04_meg.fif │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-05_events.tsv │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-05_meg.fif │ │ │ │ ├── sub-02_ses-meg_task-facerecognition_run-06_events.tsv │ │ │ │ └── sub-02_ses-meg_task-facerecognition_run-06_meg.fif │ │ │ └── sub-02_ses-meg_scans.tsv │ │ └── ses-mri │ │ │ ├── anat │ │ │ ├── sub-02_ses-mri_acq-mprage_T1w.json │ │ │ ├── sub-02_ses-mri_acq-mprage_T1w.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-1_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-2_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-3_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-4_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-5_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-6_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-1_echo-7_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-2_echo-1_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-2_echo-2_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-2_echo-3_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-2_echo-4_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-2_echo-5_FLASH.nii.gz │ │ │ ├── sub-02_ses-mri_run-2_echo-6_FLASH.nii.gz │ │ │ └── sub-02_ses-mri_run-2_echo-7_FLASH.nii.gz │ │ │ ├── dwi │ │ │ ├── sub-02_ses-mri_dwi.bval │ │ │ ├── sub-02_ses-mri_dwi.bvec │ │ │ ├── sub-02_ses-mri_dwi.json │ │ │ └── sub-02_ses-mri_dwi.nii.gz │ │ │ ├── fmap │ │ │ ├── sub-02_ses-mri_magnitude1.nii │ │ │ ├── sub-02_ses-mri_magnitude2.nii │ │ │ ├── sub-02_ses-mri_phasediff.json │ │ │ └── sub-02_ses-mri_phasediff.nii │ │ │ └── func │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-01_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-01_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-02_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-02_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-03_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-03_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-04_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-04_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-05_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-05_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-06_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-06_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-07_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-07_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-08_bold.nii.gz │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-08_events.tsv │ │ │ ├── sub-02_ses-mri_task-facerecognition_run-09_bold.nii.gz │ │ │ └── sub-02_ses-mri_task-facerecognition_run-09_events.tsv │ ├── sub-emptyroom │ │ ├── ses-20090409 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20090409_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20090409_scans.tsv │ │ ├── ses-20090506 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20090506_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20090506_scans.tsv │ │ ├── ses-20090511 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20090511_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20090511_scans.tsv │ │ ├── ses-20090515 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20090515_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20090515_scans.tsv │ │ ├── ses-20090518 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20090518_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20090518_scans.tsv │ │ ├── ses-20090601 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20090601_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20090601_scans.tsv │ │ ├── ses-20091126 │ │ │ ├── meg │ │ │ │ └── sub-emptyroom_ses-20091126_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20091126_scans.tsv │ │ └── ses-20091208 │ │ │ ├── meg │ │ │ └── sub-emptyroom_ses-20091208_task-noise_meg.fif │ │ │ └── sub-emptyroom_ses-20091208_scans.tsv │ ├── task-facerecognition_beh.json │ ├── task-facerecognition_bold.json │ ├── task-facerecognition_channels.tsv │ ├── task-facerecognition_meg.json │ └── task-facerecognition_photo.jpg │ ├── ds005 │ ├── CHANGES │ ├── README │ ├── dataset_description.json │ ├── derivatives │ │ ├── bet │ │ │ ├── mask │ │ │ │ ├── _subject_id_sub-01 │ │ │ │ │ └── sub-01_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-02 │ │ │ │ │ └── sub-02_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-03 │ │ │ │ │ └── sub-03_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-04 │ │ │ │ │ └── sub-04_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-05 │ │ │ │ │ └── sub-05_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-06 │ │ │ │ │ └── sub-06_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-07 │ │ │ │ │ └── sub-07_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-08 │ │ │ │ │ └── sub-08_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-09 │ │ │ │ │ └── sub-09_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-10 │ │ │ │ │ └── sub-10_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-11 │ │ │ │ │ └── sub-11_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-12 │ │ │ │ │ └── sub-12_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-13 │ │ │ │ │ └── sub-13_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-14 │ │ │ │ │ └── sub-14_T1w_corrected_brain_mask.nii.gz │ │ │ │ ├── _subject_id_sub-15 │ │ │ │ │ └── sub-15_T1w_corrected_brain_mask.nii.gz │ │ │ │ └── _subject_id_sub-16 │ │ │ │ │ └── sub-16_T1w_corrected_brain_mask.nii.gz │ │ │ └── output │ │ │ │ ├── _subject_id_sub-01 │ │ │ │ └── sub-01_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-02 │ │ │ │ └── sub-02_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-03 │ │ │ │ └── sub-03_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-04 │ │ │ │ └── sub-04_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-05 │ │ │ │ └── sub-05_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-06 │ │ │ │ └── sub-06_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-07 │ │ │ │ └── sub-07_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-08 │ │ │ │ └── sub-08_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-09 │ │ │ │ └── sub-09_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-10 │ │ │ │ └── sub-10_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-11 │ │ │ │ └── sub-11_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-12 │ │ │ │ └── sub-12_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-13 │ │ │ │ └── sub-13_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-14 │ │ │ │ └── sub-14_T1w_corrected_brain.nii.gz │ │ │ │ ├── _subject_id_sub-15 │ │ │ │ └── sub-15_T1w_corrected_brain.nii.gz │ │ │ │ └── _subject_id_sub-16 │ │ │ │ └── sub-16_T1w_corrected_brain.nii.gz │ │ ├── events │ │ │ ├── dataset_description.json │ │ │ └── sub-01 │ │ │ │ └── func │ │ │ │ └── sub-01_task-mixedgamblestask_run-01_desc-extra_events.tsv │ │ └── fmriprep │ │ │ ├── dataset_description.json │ │ │ ├── sub-01 │ │ │ └── func │ │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-01_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-01_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-01_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-01_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-01_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-01_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-01_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-02 │ │ │ └── func │ │ │ │ ├── sub-02_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-02_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-02_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-02_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-02_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-02_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-02_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-02_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-02_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-02_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-03 │ │ │ └── func │ │ │ │ ├── sub-03_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-03_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-03_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-03_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-03_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-03_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-03_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-03_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-03_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-03_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-04 │ │ │ └── func │ │ │ │ ├── sub-04_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-04_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-04_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-04_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-04_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-04_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-04_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-04_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-04_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-04_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-05 │ │ │ └── func │ │ │ │ ├── sub-05_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-05_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-05_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-05_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-05_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-05_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-05_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-05_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-05_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-05_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-06 │ │ │ └── func │ │ │ │ ├── sub-06_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-06_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-06_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-06_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-06_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-06_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-06_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-06_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-06_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-06_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-06_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-06_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-07 │ │ │ └── func │ │ │ │ ├── sub-07_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-07_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-07_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-07_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-07_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-07_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-07_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-07_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-07_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-07_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-07_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-07_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-08 │ │ │ └── func │ │ │ │ ├── sub-08_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-08_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-08_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-08_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-08_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-08_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-08_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-08_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-08_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-08_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-08_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-08_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-09 │ │ │ └── func │ │ │ │ ├── sub-09_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-09_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-09_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-09_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-09_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-09_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-09_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-09_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-09_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-09_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-09_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-09_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-10 │ │ │ └── func │ │ │ │ ├── sub-10_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-10_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-10_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-10_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-10_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-10_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-10_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-10_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-10_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-10_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-10_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-10_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-11 │ │ │ └── func │ │ │ │ ├── sub-11_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-11_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-11_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-11_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-11_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-11_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-11_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-11_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-11_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-11_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-11_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-11_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-12 │ │ │ └── func │ │ │ │ ├── sub-12_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-12_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-12_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-12_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-12_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-12_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-12_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-12_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-12_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-12_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-12_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-12_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-13 │ │ │ └── func │ │ │ │ ├── sub-13_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-13_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-13_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-13_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-13_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-13_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-13_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-13_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-13_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-13_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-13_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-13_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-14 │ │ │ └── func │ │ │ │ ├── sub-14_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-14_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-14_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-14_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-14_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-14_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-14_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-14_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-14_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-14_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-14_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-14_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-15 │ │ │ └── func │ │ │ │ ├── sub-15_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ │ ├── sub-15_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-15_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-15_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-15_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ │ ├── sub-15_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-15_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ ├── sub-15_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-15_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ │ ├── sub-15_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ │ ├── sub-15_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ │ └── sub-15_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ └── sub-16 │ │ │ └── func │ │ │ ├── sub-16_task-mixedgamblestask_run-01_desc-preproc_timeseries.json │ │ │ ├── sub-16_task-mixedgamblestask_run-01_desc-preproc_timeseries.tsv │ │ │ ├── sub-16_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ ├── sub-16_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-16_task-mixedgamblestask_run-02_desc-preproc_timeseries.json │ │ │ ├── sub-16_task-mixedgamblestask_run-02_desc-preproc_timeseries.tsv │ │ │ ├── sub-16_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ ├── sub-16_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-16_task-mixedgamblestask_run-03_desc-preproc_timeseries.json │ │ │ ├── sub-16_task-mixedgamblestask_run-03_desc-preproc_timeseries.tsv │ │ │ ├── sub-16_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json │ │ │ └── sub-16_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ ├── ds005_onsets.json │ ├── dwi.bval │ ├── dwi.bvec │ ├── models │ │ ├── ds-005_type-interceptonlyrunlevel_model.json │ │ ├── ds-005_type-mfx_model.json │ │ ├── ds-005_type-test_intercept.json │ │ ├── ds-005_type-test_model.json │ │ ├── ds-005_type-testnodummy_model.json │ │ └── extras │ │ │ └── ds-005_type-test_model.json │ ├── participants.tsv │ ├── sub-01 │ │ ├── anat │ │ │ └── sub-01_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-01_dwi.nii.gz │ │ ├── func │ │ │ ├── sub-01_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-01_task-mixedgamblestask_run-01_events.json │ │ │ ├── sub-01_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-01_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-01_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-01_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-01_task-mixedgamblestask_run-03_events.tsv │ │ └── sub-01_scans.tsv │ ├── sub-02 │ │ ├── anat │ │ │ └── sub-02_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-02_dwi.nii.gz │ │ ├── func │ │ │ ├── sub-02_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-02_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-02_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-02_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-02_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-02_task-mixedgamblestask_run-03_events.tsv │ │ └── sub-02_scans.tsv │ ├── sub-03 │ │ ├── anat │ │ │ └── sub-03_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-03_dwi.nii.gz │ │ └── func │ │ │ ├── sub-03_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-03_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-03_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-03_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-03_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-03_task-mixedgamblestask_run-03_events.tsv │ ├── sub-04 │ │ ├── anat │ │ │ └── sub-04_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-04_dwi.nii.gz │ │ └── func │ │ │ ├── sub-04_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-04_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-04_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-04_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-04_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-04_task-mixedgamblestask_run-03_events.tsv │ ├── sub-05 │ │ ├── anat │ │ │ └── sub-05_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-05_dwi.nii.gz │ │ └── func │ │ │ ├── sub-05_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-05_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-05_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-05_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-05_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-05_task-mixedgamblestask_run-03_events.tsv │ ├── sub-06 │ │ ├── anat │ │ │ └── sub-06_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-06_dwi.nii.gz │ │ └── func │ │ │ ├── sub-06_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-06_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-06_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-06_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-06_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-06_task-mixedgamblestask_run-03_events.tsv │ ├── sub-07 │ │ ├── anat │ │ │ └── sub-07_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-07_dwi.nii.gz │ │ └── func │ │ │ ├── sub-07_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-07_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-07_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-07_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-07_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-07_task-mixedgamblestask_run-03_events.tsv │ ├── sub-08 │ │ ├── anat │ │ │ └── sub-08_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-08_dwi.nii.gz │ │ └── func │ │ │ ├── sub-08_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-08_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-08_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-08_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-08_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-08_task-mixedgamblestask_run-03_events.tsv │ ├── sub-09 │ │ ├── anat │ │ │ └── sub-09_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-09_dwi.nii.gz │ │ └── func │ │ │ ├── sub-09_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-09_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-09_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-09_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-09_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-09_task-mixedgamblestask_run-03_events.tsv │ ├── sub-10 │ │ ├── anat │ │ │ └── sub-10_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-10_dwi.nii.gz │ │ └── func │ │ │ ├── sub-10_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-10_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-10_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-10_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-10_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-10_task-mixedgamblestask_run-03_events.tsv │ ├── sub-11 │ │ ├── anat │ │ │ └── sub-11_T1w.nii.gz │ │ ├── dwi │ │ │ ├── sub-11 │ │ │ └── sub-11_dwi.nii.gz │ │ └── func │ │ │ ├── sub-11_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-11_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-11_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-11_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-11_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-11_task-mixedgamblestask_run-03_events.tsv │ ├── sub-12 │ │ ├── anat │ │ │ ├── sub-12_T1w.nii.gz │ │ │ ├── sub-12_acq-MP2RAGE_T1w.nii.gz │ │ │ └── sub-12_acq-MPRAGE_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-12_dwi.nii.gz │ │ └── func │ │ │ ├── sub-12_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-12_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-12_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-12_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-12_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-12_task-mixedgamblestask_run-03_events.tsv │ ├── sub-13 │ │ ├── anat │ │ │ └── sub-13_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-13_dwi.nii.gz │ │ └── func │ │ │ ├── sub-13_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-13_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-13_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-13_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-13_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-13_task-mixedgamblestask_run-03_events.tsv │ ├── sub-14 │ │ ├── anat │ │ │ └── sub-14_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-14_dwi.nii.gz │ │ └── func │ │ │ ├── sub-14_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-14_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-14_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-14_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-14_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-14_task-mixedgamblestask_run-03_events.tsv │ ├── sub-15 │ │ ├── anat │ │ │ └── sub-15_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-15_dwi.nii.gz │ │ └── func │ │ │ ├── sub-15_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-15_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-15_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-15_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-15_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-15_task-mixedgamblestask_run-03_events.tsv │ ├── sub-16 │ │ ├── anat │ │ │ └── sub-16_T1w.nii.gz │ │ ├── dwi │ │ │ └── sub-16_dwi.nii.gz │ │ └── func │ │ │ ├── sub-16_task-mixedgamblestask_run-01_bold.nii.gz │ │ │ ├── sub-16_task-mixedgamblestask_run-01_events.tsv │ │ │ ├── sub-16_task-mixedgamblestask_run-02_bold.nii.gz │ │ │ ├── sub-16_task-mixedgamblestask_run-02_events.tsv │ │ │ ├── sub-16_task-mixedgamblestask_run-03_bold.nii.gz │ │ │ └── sub-16_task-mixedgamblestask_run-03_events.tsv │ └── task-mixedgamblestask_bold.json │ ├── ds005_conflict │ ├── dataset_description.json │ └── sub-01 │ │ ├── anat │ │ └── sub-01_T1w.nii.gz │ │ ├── dwi │ │ └── sub-01_dwi.nii.gz │ │ └── func │ │ ├── sub-01_task-mixedgamblestask_run-01_bold.nii.gz │ │ ├── sub-01_task-mixedgamblestask_run-01_events.json │ │ ├── sub-01_task-mixedgamblestask_run-01_events.tsv │ │ ├── sub-01_task-mixedgamblestask_run-02_bold.nii.gz │ │ ├── sub-01_task-mixedgamblestask_run-02_events.tsv │ │ ├── sub-01_task-mixedgamblestask_run-03_bold.nii.gz │ │ └── sub-01_task-mixedgamblestask_run-03_events.tsv │ ├── ds005_derivs │ ├── dummy-vx.x.x │ │ ├── dataset_description.json │ │ └── sub-01 │ │ │ └── func │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz │ │ │ └── sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz │ ├── dummy │ │ ├── dataset_description.json │ │ └── sub-01 │ │ │ └── func │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz │ │ │ └── sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz │ ├── format_errs │ │ ├── no_dataset_type │ │ │ ├── dataset_description.json │ │ │ └── sub-01 │ │ │ │ └── func │ │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz │ │ │ │ └── sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz │ │ ├── no_pipeline_description │ │ │ ├── dataset_description.json │ │ │ └── sub-01 │ │ │ │ └── func │ │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz │ │ │ │ └── sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz │ │ └── no_type_or_description │ │ │ ├── dataset_description.json │ │ │ └── sub-01 │ │ │ └── func │ │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz │ │ │ └── sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz │ └── other │ │ └── dummy │ │ ├── dataset_description.json │ │ └── sub-01 │ │ └── func │ │ ├── sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz │ │ ├── sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz │ │ └── sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz │ └── synthetic │ ├── T1w.json │ ├── code │ ├── create_synthetic_ds.sh │ ├── dwi.bval │ └── dwi.bvec │ ├── dataset_description.json │ ├── derivatives │ └── fmriprep │ │ ├── dataset_description.json │ │ ├── sub-01 │ │ ├── ses-01 │ │ │ └── func │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-01_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_ses-01_task-rest_desc-confounds_regressors.tsv │ │ │ │ ├── sub-01_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-01_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-01_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-01_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-01_ses-01_task-rest_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-01_ses-01_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-01_ses-01_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ │ └── sub-01_ses-01_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ └── ses-02 │ │ │ └── func │ │ │ ├── sub-01_ses-02_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-01_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-01_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-rest_desc-confounds_regressors.tsv │ │ │ ├── sub-01_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-01_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-01_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-01_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-rest_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-01_ses-02_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-01_ses-02_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ └── sub-01_ses-02_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ ├── sub-02 │ │ ├── ses-01 │ │ │ └── func │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-02_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_ses-01_task-rest_desc-confounds_regressors.tsv │ │ │ │ ├── sub-02_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-02_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-02_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-02_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-02_ses-01_task-rest_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-02_ses-01_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-02_ses-01_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ │ └── sub-02_ses-01_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ └── ses-02 │ │ │ └── func │ │ │ ├── sub-02_ses-02_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-02_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-02_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-rest_desc-confounds_regressors.tsv │ │ │ ├── sub-02_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-02_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-02_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-02_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-rest_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-02_ses-02_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-02_ses-02_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ └── sub-02_ses-02_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ ├── sub-03 │ │ ├── ses-01 │ │ │ └── func │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-03_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_ses-01_task-rest_desc-confounds_regressors.tsv │ │ │ │ ├── sub-03_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-03_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-03_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-03_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-03_ses-01_task-rest_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-03_ses-01_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-03_ses-01_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ │ └── sub-03_ses-01_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ └── ses-02 │ │ │ └── func │ │ │ ├── sub-03_ses-02_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-03_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-03_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-rest_desc-confounds_regressors.tsv │ │ │ ├── sub-03_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-03_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-03_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-03_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-rest_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-03_ses-02_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-03_ses-02_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ └── sub-03_ses-02_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ ├── sub-04 │ │ ├── ses-01 │ │ │ └── func │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-04_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_ses-01_task-rest_desc-confounds_regressors.tsv │ │ │ │ ├── sub-04_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-04_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-04_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-04_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-04_ses-01_task-rest_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-04_ses-01_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-04_ses-01_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ │ └── sub-04_ses-01_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ └── ses-02 │ │ │ └── func │ │ │ ├── sub-04_ses-02_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-04_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-04_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-rest_desc-confounds_regressors.tsv │ │ │ ├── sub-04_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-04_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-04_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-04_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-rest_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-04_ses-02_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-04_ses-02_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ └── sub-04_ses-02_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ ├── sub-05 │ │ ├── ses-01 │ │ │ └── func │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ │ ├── sub-05_ses-01_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_ses-01_task-rest_desc-confounds_regressors.tsv │ │ │ │ ├── sub-05_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ │ ├── sub-05_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ │ ├── sub-05_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ │ ├── sub-05_ses-01_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ │ ├── sub-05_ses-01_task-rest_space-T1w_desc-brain_mask.nii │ │ │ │ ├── sub-05_ses-01_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ │ ├── sub-05_ses-01_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ │ └── sub-05_ses-01_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ └── ses-02 │ │ │ └── func │ │ │ ├── sub-05_ses-02_task-nback_run-01_desc-confounds_regressors.tsv │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-05_ses-02_task-nback_run-01_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_desc-confounds_regressors.tsv │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii │ │ │ ├── sub-05_ses-02_task-nback_run-02_space-T1w_desc-preproc_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-rest_desc-confounds_regressors.tsv │ │ │ ├── sub-05_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii │ │ │ ├── sub-05_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-brain_mask.nii.gz │ │ │ ├── sub-05_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii │ │ │ ├── sub-05_ses-02_task-rest_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-rest_space-T1w_desc-brain_mask.nii │ │ │ ├── sub-05_ses-02_task-rest_space-T1w_desc-brain_mask.nii.gz │ │ │ ├── sub-05_ses-02_task-rest_space-T1w_desc-preproc_bold.nii │ │ │ └── sub-05_ses-02_task-rest_space-T1w_desc-preproc_bold.nii.gz │ │ ├── task-nback_bold.json │ │ └── task-rest_bold.json │ ├── dwi.json │ ├── participants.tsv │ ├── sub-01 │ ├── ses-01 │ │ ├── anat │ │ │ ├── sub-01_ses-01_T1w.nii │ │ │ └── sub-01_ses-01_T1w.nii.gz │ │ ├── dwi │ │ │ ├── sub-01_ses-01_dwi.bval │ │ │ ├── sub-01_ses-01_dwi.bvec │ │ │ └── sub-01_ses-01_dwi.nii.gz │ │ ├── fmap │ │ │ ├── sub-01_ses-01_magnitude1.nii.gz │ │ │ ├── sub-01_ses-01_magnitude2.nii.gz │ │ │ ├── sub-01_ses-01_phasediff.json │ │ │ └── sub-01_ses-01_phasediff.nii.gz │ │ ├── func │ │ │ ├── sub-01_ses-01_task-nback_run-01_bold.nii │ │ │ ├── sub-01_ses-01_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-01_ses-01_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-01_ses-01_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-01_ses-01_task-nback_run-02_bold.nii │ │ │ ├── sub-01_ses-01_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-01_ses-01_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-01_ses-01_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-01_ses-01_task-rest_bold.nii │ │ │ ├── sub-01_ses-01_task-rest_bold.nii.gz │ │ │ └── sub-01_ses-01_task-rest_physio.tsv.gz │ │ └── sub-01_ses-01_scans.tsv │ ├── ses-02 │ │ ├── anat │ │ │ ├── sub-01_ses-02_T1w.nii │ │ │ └── sub-01_ses-02_T1w.nii.gz │ │ ├── func │ │ │ ├── sub-01_ses-02_task-nback_run-01_bold.nii │ │ │ ├── sub-01_ses-02_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-01_ses-02_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_bold.nii │ │ │ ├── sub-01_ses-02_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-01_ses-02_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-01_ses-02_task-rest_bold.nii │ │ │ ├── sub-01_ses-02_task-rest_bold.nii.gz │ │ │ └── sub-01_ses-02_task-rest_physio.tsv.gz │ │ └── sub-01_ses-02_scans.tsv │ └── sub-01_sessions.tsv │ ├── sub-02 │ ├── ses-01 │ │ ├── anat │ │ │ ├── sub-02_ses-01_T1w.nii │ │ │ └── sub-02_ses-01_T1w.nii.gz │ │ ├── dwi │ │ │ ├── sub-02_ses-01_dwi.bval │ │ │ ├── sub-02_ses-01_dwi.bvec │ │ │ └── sub-02_ses-01_dwi.nii.gz │ │ ├── fmap │ │ │ ├── sub-02_ses-01_magnitude1.nii.gz │ │ │ ├── sub-02_ses-01_magnitude2.nii.gz │ │ │ ├── sub-02_ses-01_phasediff.json │ │ │ └── sub-02_ses-01_phasediff.nii.gz │ │ ├── func │ │ │ ├── sub-02_ses-01_task-nback_run-01_bold.nii │ │ │ ├── sub-02_ses-01_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-02_ses-01_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-02_ses-01_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-02_ses-01_task-nback_run-02_bold.nii │ │ │ ├── sub-02_ses-01_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-02_ses-01_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-02_ses-01_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-02_ses-01_task-rest_bold.nii │ │ │ ├── sub-02_ses-01_task-rest_bold.nii.gz │ │ │ └── sub-02_ses-01_task-rest_physio.tsv.gz │ │ └── sub-02_ses-01_scans.tsv │ ├── ses-02 │ │ ├── anat │ │ │ ├── sub-02_ses-02_T1w.nii │ │ │ └── sub-02_ses-02_T1w.nii.gz │ │ ├── func │ │ │ ├── sub-02_ses-02_task-nback_run-01_bold.nii │ │ │ ├── sub-02_ses-02_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-02_ses-02_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_bold.nii │ │ │ ├── sub-02_ses-02_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-02_ses-02_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-02_ses-02_task-rest_bold.nii │ │ │ ├── sub-02_ses-02_task-rest_bold.nii.gz │ │ │ └── sub-02_ses-02_task-rest_physio.tsv.gz │ │ └── sub-02_ses-02_scans.tsv │ └── sub-02_sessions.tsv │ ├── sub-03 │ ├── ses-01 │ │ ├── anat │ │ │ ├── sub-03_ses-01_T1w.nii │ │ │ └── sub-03_ses-01_T1w.nii.gz │ │ ├── dwi │ │ │ ├── sub-03_ses-01_dwi.bval │ │ │ ├── sub-03_ses-01_dwi.bvec │ │ │ └── sub-03_ses-01_dwi.nii.gz │ │ ├── fmap │ │ │ ├── sub-03_ses-01_magnitude1.nii.gz │ │ │ ├── sub-03_ses-01_magnitude2.nii.gz │ │ │ ├── sub-03_ses-01_phasediff.json │ │ │ └── sub-03_ses-01_phasediff.nii.gz │ │ ├── func │ │ │ ├── sub-03_ses-01_task-nback_run-01_bold.nii │ │ │ ├── sub-03_ses-01_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-03_ses-01_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-03_ses-01_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-03_ses-01_task-nback_run-02_bold.nii │ │ │ ├── sub-03_ses-01_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-03_ses-01_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-03_ses-01_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-03_ses-01_task-rest_bold.nii │ │ │ ├── sub-03_ses-01_task-rest_bold.nii.gz │ │ │ └── sub-03_ses-01_task-rest_physio.tsv.gz │ │ └── sub-03_ses-01_scans.tsv │ ├── ses-02 │ │ ├── anat │ │ │ ├── sub-03_ses-02_T1w.nii │ │ │ └── sub-03_ses-02_T1w.nii.gz │ │ ├── func │ │ │ ├── sub-03_ses-02_task-nback_run-01_bold.nii │ │ │ ├── sub-03_ses-02_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-03_ses-02_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_bold.nii │ │ │ ├── sub-03_ses-02_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-03_ses-02_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-03_ses-02_task-rest_bold.nii │ │ │ ├── sub-03_ses-02_task-rest_bold.nii.gz │ │ │ └── sub-03_ses-02_task-rest_physio.tsv.gz │ │ └── sub-03_ses-02_scans.tsv │ └── sub-03_sessions.tsv │ ├── sub-04 │ ├── ses-01 │ │ ├── anat │ │ │ ├── sub-04_ses-01_T1w.nii │ │ │ └── sub-04_ses-01_T1w.nii.gz │ │ ├── dwi │ │ │ ├── sub-04_ses-01_dwi.bval │ │ │ ├── sub-04_ses-01_dwi.bvec │ │ │ └── sub-04_ses-01_dwi.nii.gz │ │ ├── fmap │ │ │ ├── sub-04_ses-01_magnitude1.nii.gz │ │ │ ├── sub-04_ses-01_magnitude2.nii.gz │ │ │ ├── sub-04_ses-01_phasediff.json │ │ │ └── sub-04_ses-01_phasediff.nii.gz │ │ ├── func │ │ │ ├── sub-04_ses-01_task-nback_run-01_bold.nii │ │ │ ├── sub-04_ses-01_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-04_ses-01_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-04_ses-01_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-04_ses-01_task-nback_run-02_bold.nii │ │ │ ├── sub-04_ses-01_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-04_ses-01_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-04_ses-01_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-04_ses-01_task-rest_bold.nii │ │ │ ├── sub-04_ses-01_task-rest_bold.nii.gz │ │ │ └── sub-04_ses-01_task-rest_physio.tsv.gz │ │ └── sub-04_ses-01_scans.tsv │ ├── ses-02 │ │ ├── anat │ │ │ ├── sub-04_ses-02_T1w.nii │ │ │ └── sub-04_ses-02_T1w.nii.gz │ │ ├── func │ │ │ ├── sub-04_ses-02_task-nback_run-01_bold.nii │ │ │ ├── sub-04_ses-02_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-04_ses-02_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_bold.nii │ │ │ ├── sub-04_ses-02_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-04_ses-02_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-04_ses-02_task-rest_bold.nii │ │ │ ├── sub-04_ses-02_task-rest_bold.nii.gz │ │ │ └── sub-04_ses-02_task-rest_physio.tsv.gz │ │ └── sub-04_ses-02_scans.tsv │ └── sub-04_sessions.tsv │ ├── sub-05 │ ├── ses-01 │ │ ├── anat │ │ │ ├── sub-05_ses-01_T1w.nii │ │ │ └── sub-05_ses-01_T1w.nii.gz │ │ ├── dwi │ │ │ ├── sub-05_ses-01_dwi.bval │ │ │ ├── sub-05_ses-01_dwi.bvec │ │ │ └── sub-05_ses-01_dwi.nii.gz │ │ ├── fmap │ │ │ ├── sub-05_ses-01_magnitude1.nii.gz │ │ │ ├── sub-05_ses-01_magnitude2.nii.gz │ │ │ ├── sub-05_ses-01_phasediff.json │ │ │ └── sub-05_ses-01_phasediff.nii.gz │ │ ├── func │ │ │ ├── sub-05_ses-01_task-nback_run-01_bold.nii │ │ │ ├── sub-05_ses-01_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-05_ses-01_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-05_ses-01_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-05_ses-01_task-nback_run-02_bold.nii │ │ │ ├── sub-05_ses-01_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-05_ses-01_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-05_ses-01_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-05_ses-01_task-rest_bold.nii │ │ │ ├── sub-05_ses-01_task-rest_bold.nii.gz │ │ │ └── sub-05_ses-01_task-rest_physio.tsv.gz │ │ └── sub-05_ses-01_scans.tsv │ ├── ses-02 │ │ ├── anat │ │ │ ├── sub-05_ses-02_T1w.nii │ │ │ └── sub-05_ses-02_T1w.nii.gz │ │ ├── func │ │ │ ├── sub-05_ses-02_task-nback_run-01_bold.nii │ │ │ ├── sub-05_ses-02_task-nback_run-01_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-01_physio.tsv.gz │ │ │ ├── sub-05_ses-02_task-nback_run-01_stim.tsv.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_bold.nii │ │ │ ├── sub-05_ses-02_task-nback_run-02_bold.nii.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_physio.tsv.gz │ │ │ ├── sub-05_ses-02_task-nback_run-02_stim.tsv.gz │ │ │ ├── sub-05_ses-02_task-rest_bold.nii │ │ │ ├── sub-05_ses-02_task-rest_bold.nii.gz │ │ │ └── sub-05_ses-02_task-rest_physio.tsv.gz │ │ └── sub-05_ses-02_scans.tsv │ └── sub-05_sessions.tsv │ ├── task-nback_bold.json │ ├── task-nback_events.tsv │ ├── task-nback_physio.json │ ├── task-nback_stim.json │ ├── task-rest_bold.json │ └── task-rest_physio.json ├── tools ├── prep_zenodo.py ├── update_changes.sh └── update_requirements.py ├── tox.ini └── uv.lock /.gitattributes: -------------------------------------------------------------------------------- 1 | bids/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/codespell_ignore_words.txt: -------------------------------------------------------------------------------- 1 | complies 2 | nin 3 | nwe 4 | te 5 | -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- 1 | template: | 2 | ## Release Notes 3 | 4 | ## CHANGES 5 | $CHANGES 6 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "bids-examples"] 2 | path = bids-examples 3 | url = https://github.com/bids-standard/bids-examples.git 4 | branch = master 5 | -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft src 2 | graft tests 3 | graft doc 4 | 5 | include tox.ini 6 | # Include uv.lock so that tox can run from sdist 7 | include uv.lock 8 | 9 | recursive-exclude src README.md 10 | -------------------------------------------------------------------------------- /doc/_static/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/doc/_static/git.png -------------------------------------------------------------------------------- /doc/whats_new.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [codespell] 2 | skip = ./.git,external,versioneer.py,_version.py 3 | ignore-words = .github/codespell_ignore_words.txt 4 | exclude-file = .github/codespell_exclude_lines.txt 5 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from setuptools import setup 3 | import versioneer 4 | 5 | setup( 6 | version=versioneer.get_version(), 7 | cmdclass=versioneer.get_cmdclass(), 8 | ) 9 | -------------------------------------------------------------------------------- /src/bids/__main__.py: -------------------------------------------------------------------------------- 1 | from .cli import cli 2 | 3 | if __name__ == '__main__': 4 | cli() 5 | -------------------------------------------------------------------------------- /src/bids/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/external/__init__.py -------------------------------------------------------------------------------- /src/bids/layout/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/layout/tests/__init__.py -------------------------------------------------------------------------------- /src/bids/modeling/report/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/modeling/report/__init__.py -------------------------------------------------------------------------------- /src/bids/modeling/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/modeling/tests/__init__.py -------------------------------------------------------------------------------- /src/bids/reports/__init__.py: -------------------------------------------------------------------------------- 1 | from .report import BIDSReport 2 | 3 | __all__ = ["BIDSReport"] 4 | -------------------------------------------------------------------------------- /src/bids/reports/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/reports/tests/__init__.py -------------------------------------------------------------------------------- /src/bids/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from .utils import get_test_data_path 2 | 3 | 4 | __all__ = [ 5 | 'get_test_data_path', 6 | ] 7 | -------------------------------------------------------------------------------- /src/bids/tests/data/images/3d.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/tests/data/images/3d.nii.gz -------------------------------------------------------------------------------- /src/bids/tests/data/images/4d.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/tests/data/images/4d.nii.gz -------------------------------------------------------------------------------- /src/bids/tests/utils.py: -------------------------------------------------------------------------------- 1 | ''' Test-related utilities ''' 2 | 3 | from pathlib import Path 4 | 5 | 6 | def get_test_data_path(): 7 | return str(Path(__file__).parent.parent.parent.parent / 'tests' / 'data') 8 | -------------------------------------------------------------------------------- /src/bids/variables/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/src/bids/variables/tests/__init__.py -------------------------------------------------------------------------------- /tests/data/7t_trt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/README -------------------------------------------------------------------------------- /tests/data/7t_trt/dataset_description.json: -------------------------------------------------------------------------------- 1 | { 2 | "BIDSVersion": "1.0.0rc3", 3 | "Name": "7t_trt" 4 | } -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/anat/sub-01_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/anat/sub-01_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/anat/sub-01_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/anat/sub-01_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-1_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "EchoTime": 0.020 3 | } -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/anat/sub-02_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/anat/sub-02_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/anat/sub-02_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/anat/sub-02_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-02_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-02_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/anat/sub-03_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/anat/sub-03_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/anat/sub-03_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/anat/sub-03_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-03_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-03_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": ["ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz", "ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"]} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/sub-03-test.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-03/sub-03-test.bval -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/anat/sub-04_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/anat/sub-04_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/anat/sub-04_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/anat/sub-04_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-04_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-04_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-04_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-04_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/anat/sub-05_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/anat/sub-05_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/anat/sub-05_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/anat/sub-05_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-05_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-05_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-05_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-05_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/anat/sub-06_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/anat/sub-06_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/anat/sub-06_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/anat/sub-06_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-06_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-06_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-06_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-06_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/anat/sub-07_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/anat/sub-07_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/anat/sub-07_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/anat/sub-07_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-07_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-07_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-07_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-07_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/anat/sub-08_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/anat/sub-08_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/anat/sub-08_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/anat/sub-08_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-08_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-08_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-08_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-08_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/anat/sub-09_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/anat/sub-09_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/anat/sub-09_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/anat/sub-09_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-09_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-09_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-09_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-09_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/anat/sub-10_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/anat/sub-10_ses-1_T1map.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/anat/sub-10_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/anat/sub-10_ses-1_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-10_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-1/func/sub-10_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-10_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- 1 | {"EchoTime2": 0.00702, "EchoTime1": 0.006, "IntendedFor": "ses-2/func/sub-10_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz"} -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-prefrontal_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-prefrontal_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-fullbrain_run-1_physio.json: -------------------------------------------------------------------------------- 1 | {"StartTime": 0, "SamplingFrequency": 100, "Columns": ["cardiac", "respiratory", "trigger", "oxygen saturation"]} -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-fullbrain_run-2_physio.json: -------------------------------------------------------------------------------- 1 | {"StartTime": 0, "SamplingFrequency": 100, "Columns": ["cardiac", "respiratory", "trigger", "oxygen saturation"]} -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-prefrontal_physio.json: -------------------------------------------------------------------------------- 1 | {"StartTime": 0, "SamplingFrequency": 100, "Columns": ["cardiac", "respiratory", "trigger", "oxygen saturation"]} -------------------------------------------------------------------------------- /tests/data/7t_trt/test.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/7t_trt/test.bval -------------------------------------------------------------------------------- /tests/data/ds000117/.bidsignore: -------------------------------------------------------------------------------- 1 | run-*_echo-*_FLASH.json 2 | **/sub-*_ses-mri_run-*_echo-*_FLASH.nii.gz 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-1_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.00185 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-2_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.00415 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-3_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.00645 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-4_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.00875 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-5_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.01105 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-6_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.01335 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-7_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 5, 4 | "EchoTime": 0.01565 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-1_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.00185 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-2_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.00415 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-3_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.00645 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-4_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.00875 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-5_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.01105 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-6_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.01335 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-7_FLASH.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 0.020, 3 | "FlipAngle": 30, 4 | "EchoTime": 0.01565 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_acq-mprage_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_acq-mprage_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-1_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-2_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-3_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-4_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-5_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-6_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-7_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-1_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-2_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-3_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-4_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-5_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-6_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-7_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_magnitude1.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_magnitude1.nii -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_magnitude2.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_magnitude2.nii -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_phasediff.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_phasediff.nii -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_acq-mprage_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_acq-mprage_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-1_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-2_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-3_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-4_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-5_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-6_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-7_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-1_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-2_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-3_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-4_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-5_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-6_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-7_FLASH.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_magnitude1.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_magnitude1.nii -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_magnitude2.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_magnitude2.nii -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_phasediff.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_phasediff.nii -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090409/sub-emptyroom_ses-20090409_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20090409_task-noise_meg.fif ##-##-##T11:05:49 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090506/sub-emptyroom_ses-20090506_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20090506_task-noise_meg.fif ##-##-##T14:51:49 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090511/sub-emptyroom_ses-20090511_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20090511_task-noise_meg.fif ##-##-##T09:39:23 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090515/sub-emptyroom_ses-20090515_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20090515_task-noise_meg.fif ##-##-##T15:52:30 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090518/sub-emptyroom_ses-20090518_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20090518_task-noise_meg.fif ##-##-##T09:33:15 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090601/sub-emptyroom_ses-20090601_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20090601_task-noise_meg.fif ##-##-##T10:05:18 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20091126/sub-emptyroom_ses-20091126_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20091126_task-noise_meg.fif ##-##-##T15:39:18 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20091208/sub-emptyroom_ses-20091208_scans.tsv: -------------------------------------------------------------------------------- 1 | filename acq_time 2 | meg/sub-emptyroom_ses-20091208_task-noise_meg.fif ##-##-##T09:54:18 3 | -------------------------------------------------------------------------------- /tests/data/ds000117/task-facerecognition_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds000117/task-facerecognition_photo.jpg -------------------------------------------------------------------------------- /tests/data/ds005/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/CHANGES -------------------------------------------------------------------------------- /tests/data/ds005/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/README -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-01/func/sub-01_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-01/func/sub-01_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-01/func/sub-01_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-02/func/sub-02_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-02/func/sub-02_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-02/func/sub-02_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-03/func/sub-03_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-03/func/sub-03_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-03/func/sub-03_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-04/func/sub-04_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-04/func/sub-04_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-04/func/sub-04_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-05/func/sub-05_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-05/func/sub-05_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-05/func/sub-05_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-06/func/sub-06_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-06/func/sub-06_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-06/func/sub-06_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-07/func/sub-07_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-07/func/sub-07_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-07/func/sub-07_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-08/func/sub-08_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-08/func/sub-08_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-08/func/sub-08_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-09/func/sub-09_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-09/func/sub-09_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-09/func/sub-09_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-10/func/sub-10_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-10/func/sub-10_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-10/func/sub-10_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-11/func/sub-11_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-11/func/sub-11_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-11/func/sub-11_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-12/func/sub-12_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-12/func/sub-12_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-12/func/sub-12_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-13/func/sub-13_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-13/func/sub-13_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-13/func/sub-13_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-14/func/sub-14_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-14/func/sub-14_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-14/func/sub-14_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-15/func/sub-15_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-15/func/sub-15_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-15/func/sub-15_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-16/func/sub-16_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-16/func/sub-16_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-16/func/sub-16_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "SkullStripped": false, 4 | "TaskName": "mixed gambles" 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/ds005/dwi.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/dwi.bval -------------------------------------------------------------------------------- /tests/data/ds005/dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/dwi.bvec -------------------------------------------------------------------------------- /tests/data/ds005/models/extras/ds-005_type-test_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "dummy": [] 3 | } -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/anat/sub-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-01/anat/sub-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/dwi/sub-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-01/dwi/sub-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-01_events.json: -------------------------------------------------------------------------------- 1 | { 2 | "run": "01" 3 | } 4 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/anat/sub-02_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-02/anat/sub-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/dwi/sub-02_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-02/dwi/sub-02_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/anat/sub-03_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-03/anat/sub-03_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/dwi/sub-03_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-03/dwi/sub-03_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/anat/sub-04_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-04/anat/sub-04_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/dwi/sub-04_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-04/dwi/sub-04_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/anat/sub-05_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-05/anat/sub-05_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/dwi/sub-05_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-05/dwi/sub-05_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/anat/sub-06_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-06/anat/sub-06_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/dwi/sub-06_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-06/dwi/sub-06_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/anat/sub-07_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-07/anat/sub-07_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/dwi/sub-07_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-07/dwi/sub-07_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/anat/sub-08_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-08/anat/sub-08_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/dwi/sub-08_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-08/dwi/sub-08_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/anat/sub-09_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-09/anat/sub-09_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/dwi/sub-09_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-09/dwi/sub-09_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/anat/sub-10_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-10/anat/sub-10_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/dwi/sub-10_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-10/dwi/sub-10_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/anat/sub-11_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-11/anat/sub-11_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/dwi/sub-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-11/dwi/sub-11 -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/dwi/sub-11_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-11/dwi/sub-11_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/anat/sub-12_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/anat/sub-12_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/anat/sub-12_acq-MP2RAGE_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/anat/sub-12_acq-MP2RAGE_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/anat/sub-12_acq-MPRAGE_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/anat/sub-12_acq-MPRAGE_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/dwi/sub-12_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/dwi/sub-12_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/anat/sub-13_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-13/anat/sub-13_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/dwi/sub-13_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-13/dwi/sub-13_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/anat/sub-14_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-14/anat/sub-14_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/dwi/sub-14_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-14/dwi/sub-14_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/anat/sub-15_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-15/anat/sub-15_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/dwi/sub-15_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-15/dwi/sub-15_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/anat/sub-16_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-16/anat/sub-16_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/dwi/sub-16_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-16/dwi/sub-16_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005/task-mixedgamblestask_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.0, 3 | "TaskName": "mixed-gambles task", 4 | "SliceTiming": [0.0, 0.0571, 0.1143, 0.1714, 0.2286, 0.2857], 5 | "NullTestMetadata": null 6 | } 7 | -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/anat/sub-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005_conflict/sub-01/anat/sub-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/dwi/sub-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005_conflict/sub-01/dwi/sub-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-01_events.json: -------------------------------------------------------------------------------- 1 | { 2 | "run": 2 3 | } -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-03_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/T1w.json: -------------------------------------------------------------------------------- 1 | { 2 | "RepetitionTime": 2.5, 3 | "EchoTime": 0.0029, 4 | "FlipAngle": 8 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/synthetic/dataset_description.json: -------------------------------------------------------------------------------- 1 | { 2 | "Name": "Synthetic dataset for inclusion in BIDS-examples", 3 | "BIDSVersion": "1.0.2", 4 | "License": "PD", 5 | "Authors": ["Markiewicz, C. J."] 6 | } 7 | -------------------------------------------------------------------------------- /tests/data/synthetic/derivatives/fmriprep/task-nback_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "TaskName": "N-Back", 3 | "RepetitionTime": 2.5 4 | } 5 | -------------------------------------------------------------------------------- /tests/data/synthetic/derivatives/fmriprep/task-rest_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "TaskName": "Rest", 3 | "RepetitionTime": 2.5 4 | } -------------------------------------------------------------------------------- /tests/data/synthetic/participants.tsv: -------------------------------------------------------------------------------- 1 | participant_id age sex subject_id 2 | sub-01 34 F 001 3 | sub-02 38 M 2 4 | sub-03 22 M 3 5 | sub-04 21 F 4 6 | sub-05 42 M 5 -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/anat/sub-01_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/anat/sub-01_ses-01_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/anat/sub-01_ses-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/anat/sub-01_ses-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/dwi/sub-01_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/dwi/sub-01_ses-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-01/func/sub-01_ses-01_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/anat/sub-01_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/anat/sub-01_ses-02_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/anat/sub-01_ses-02_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/anat/sub-01_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-01/ses-02/func/sub-01_ses-02_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/sub-01_sessions.tsv: -------------------------------------------------------------------------------- 1 | session_id systolic_blood_pressure 2 | ses-01 112 3 | ses-02 113 4 | -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/anat/sub-02_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/anat/sub-02_ses-01_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/anat/sub-02_ses-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/anat/sub-02_ses-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/dwi/sub-02_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/dwi/sub-02_ses-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-01/func/sub-02_ses-01_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/anat/sub-02_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/anat/sub-02_ses-02_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/anat/sub-02_ses-02_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/anat/sub-02_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-02/ses-02/func/sub-02_ses-02_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/sub-02_sessions.tsv: -------------------------------------------------------------------------------- 1 | session_id systolic_blood_pressure 2 | ses-01 114 3 | ses-02 115 4 | -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/anat/sub-03_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/anat/sub-03_ses-01_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/anat/sub-03_ses-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/anat/sub-03_ses-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/dwi/sub-03_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/dwi/sub-03_ses-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-01/func/sub-03_ses-01_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/anat/sub-03_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/anat/sub-03_ses-02_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/anat/sub-03_ses-02_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/anat/sub-03_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-03/ses-02/func/sub-03_ses-02_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/sub-03_sessions.tsv: -------------------------------------------------------------------------------- 1 | session_id systolic_blood_pressure 2 | ses-01 112 3 | ses-02 115 4 | -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/anat/sub-04_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/anat/sub-04_ses-01_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/anat/sub-04_ses-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/anat/sub-04_ses-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/dwi/sub-04_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/dwi/sub-04_ses-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-01/func/sub-04_ses-01_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/anat/sub-04_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/anat/sub-04_ses-02_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/anat/sub-04_ses-02_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/anat/sub-04_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-04/ses-02/func/sub-04_ses-02_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/sub-04_sessions.tsv: -------------------------------------------------------------------------------- 1 | session_id systolic_blood_pressure 2 | ses-01 111 3 | ses-02 115 4 | -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/anat/sub-05_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/anat/sub-05_ses-01_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/anat/sub-05_ses-01_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/anat/sub-05_ses-01_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/dwi/sub-05_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/dwi/sub-05_ses-01_dwi.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_magnitude1.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_magnitude1.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_magnitude2.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_magnitude2.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-01/func/sub-05_ses-01_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/anat/sub-05_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/anat/sub-05_ses-02_T1w.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/anat/sub-05_ses-02_T1w.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/anat/sub-05_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-01_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_stim.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-nback_run-02_stim.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-rest_bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-rest_bold.nii -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-rest_bold.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-rest_bold.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-rest_physio.tsv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/9017266e70134427a31355aeda90647914c44fd7/tests/data/synthetic/sub-05/ses-02/func/sub-05_ses-02_task-rest_physio.tsv.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/sub-05_sessions.tsv: -------------------------------------------------------------------------------- 1 | session_id systolic_blood_pressure 2 | ses-01 114 3 | ses-02 110 4 | -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "TaskName": "N-Back", 3 | "RepetitionTime": 2.5, 4 | "EchoTime": 0.03 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_physio.json: -------------------------------------------------------------------------------- 1 | { 2 | "SamplingFrequency": 10.0, 3 | "StartTime": 22.8, 4 | "Columns": ["respiratory", "cardiac"] 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_stim.json: -------------------------------------------------------------------------------- 1 | { 2 | "SamplingFrequency": 2.0, 3 | "StartTime": 0.0, 4 | "Columns": ["stimA", "stimB"] 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/synthetic/task-rest_bold.json: -------------------------------------------------------------------------------- 1 | { 2 | "TaskName": "Rest", 3 | "RepetitionTime": 2.5, 4 | "EchoTime": 0.03 5 | } 6 | -------------------------------------------------------------------------------- /tests/data/synthetic/task-rest_physio.json: -------------------------------------------------------------------------------- 1 | { 2 | "SamplingFrequency": 10.0, 3 | "StartTime": 0.0, 4 | "Columns": ["respiratory", "cardiac"] 5 | } 6 | --------------------------------------------------------------------------------