├── .gitattributes ├── .github ├── codespell_exclude_lines.txt ├── codespell_ignore_words.txt ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── build-test-deploy.yml │ ├── codespell.yml │ ├── docs.yml │ └── prerelease.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_exclude_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/codespell_exclude_lines.txt -------------------------------------------------------------------------------- /.github/codespell_ignore_words.txt: -------------------------------------------------------------------------------- 1 | complies 2 | nin 3 | nwe 4 | te 5 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/build-test-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/workflows/build-test-deploy.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/prerelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.github/workflows/prerelease.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.mailmap -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/.zenodo.json -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/codecov.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/git.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/_static/git.png -------------------------------------------------------------------------------- /doc/_static/theme_overrides.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/_static/theme_overrides.css -------------------------------------------------------------------------------- /doc/_templates/class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/_templates/class.rst -------------------------------------------------------------------------------- /doc/_templates/function.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/_templates/function.rst -------------------------------------------------------------------------------- /doc/_templates/module.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/_templates/module.rst -------------------------------------------------------------------------------- /doc/analysis/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/analysis/index.rst -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/examples/index.rst -------------------------------------------------------------------------------- /doc/examples/pybids_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/examples/pybids_tutorial.md -------------------------------------------------------------------------------- /doc/examples/reports_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/examples/reports_tutorial.md -------------------------------------------------------------------------------- /doc/examples/statsmodels_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/examples/statsmodels_tutorial.md -------------------------------------------------------------------------------- /doc/includes/big_toc_css.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/includes/big_toc_css.rst -------------------------------------------------------------------------------- /doc/includes/bigger_toc_css.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/includes/bigger_toc_css.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/introduction.rst -------------------------------------------------------------------------------- /doc/layout/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/layout/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/reports/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/reports/index.rst -------------------------------------------------------------------------------- /doc/sphinxext/docscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/sphinxext/docscrape.py -------------------------------------------------------------------------------- /doc/sphinxext/docscrape_sphinx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/sphinxext/docscrape_sphinx.py -------------------------------------------------------------------------------- /doc/sphinxext/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/sphinxext/github.py -------------------------------------------------------------------------------- /doc/sphinxext/math_dollar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/sphinxext/math_dollar.py -------------------------------------------------------------------------------- /doc/sphinxext/numpydoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/sphinxext/numpydoc.py -------------------------------------------------------------------------------- /doc/tune_toc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/tune_toc.rst -------------------------------------------------------------------------------- /doc/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/doc/user_guide.rst -------------------------------------------------------------------------------- /doc/whats_new.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CHANGELOG.rst 2 | -------------------------------------------------------------------------------- /long_description.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/long_description.rst -------------------------------------------------------------------------------- /paper/paper.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/paper/paper.bib -------------------------------------------------------------------------------- /paper/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/paper/paper.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/setup.py -------------------------------------------------------------------------------- /src/bids/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/__init__.py -------------------------------------------------------------------------------- /src/bids/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/__main__.py -------------------------------------------------------------------------------- /src/bids/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/_version.py -------------------------------------------------------------------------------- /src/bids/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/cli.py -------------------------------------------------------------------------------- /src/bids/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/config.py -------------------------------------------------------------------------------- /src/bids/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/conftest.py -------------------------------------------------------------------------------- /src/bids/due.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/due.py -------------------------------------------------------------------------------- /src/bids/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/exceptions.py -------------------------------------------------------------------------------- /src/bids/ext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/ext/__init__.py -------------------------------------------------------------------------------- /src/bids/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bids/external/inflect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/external/inflect.py -------------------------------------------------------------------------------- /src/bids/layout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/README.md -------------------------------------------------------------------------------- /src/bids/layout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/__init__.py -------------------------------------------------------------------------------- /src/bids/layout/config/bids.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/config/bids.json -------------------------------------------------------------------------------- /src/bids/layout/config/derivatives.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/config/derivatives.json -------------------------------------------------------------------------------- /src/bids/layout/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/db.py -------------------------------------------------------------------------------- /src/bids/layout/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/index.py -------------------------------------------------------------------------------- /src/bids/layout/layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/layout.py -------------------------------------------------------------------------------- /src/bids/layout/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/models.py -------------------------------------------------------------------------------- /src/bids/layout/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bids/layout/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/conftest.py -------------------------------------------------------------------------------- /src/bids/layout/tests/data/sample_validation_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/data/sample_validation_config.json -------------------------------------------------------------------------------- /src/bids/layout/tests/test_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_db.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_layout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_layout.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_layout_on_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_layout_on_examples.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_models.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_path_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_path_building.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_remote_bids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_remote_bids.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_rootpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_rootpath.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_utils.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_validation.py -------------------------------------------------------------------------------- /src/bids/layout/tests/test_writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/tests/test_writing.py -------------------------------------------------------------------------------- /src/bids/layout/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/utils.py -------------------------------------------------------------------------------- /src/bids/layout/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/validation.py -------------------------------------------------------------------------------- /src/bids/layout/writing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/layout/writing.py -------------------------------------------------------------------------------- /src/bids/modeling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/README.md -------------------------------------------------------------------------------- /src/bids/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/__init__.py -------------------------------------------------------------------------------- /src/bids/modeling/auto_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/auto_model.py -------------------------------------------------------------------------------- /src/bids/modeling/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/hrf.py -------------------------------------------------------------------------------- /src/bids/modeling/model_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/model_spec.py -------------------------------------------------------------------------------- /src/bids/modeling/report/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bids/modeling/report/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/report/base.py -------------------------------------------------------------------------------- /src/bids/modeling/report/report_template.jinja: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/report/report_template.jinja -------------------------------------------------------------------------------- /src/bids/modeling/report/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/report/utils.py -------------------------------------------------------------------------------- /src/bids/modeling/report/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/report/viz.py -------------------------------------------------------------------------------- /src/bids/modeling/statsmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/statsmodels.py -------------------------------------------------------------------------------- /src/bids/modeling/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bids/modeling/tests/test_automodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/tests/test_automodel.py -------------------------------------------------------------------------------- /src/bids/modeling/tests/test_hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/tests/test_hrf.py -------------------------------------------------------------------------------- /src/bids/modeling/tests/test_model_spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/tests/test_model_spec.py -------------------------------------------------------------------------------- /src/bids/modeling/tests/test_statsmodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/tests/test_statsmodels.py -------------------------------------------------------------------------------- /src/bids/modeling/tests/test_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/tests/test_transformations.py -------------------------------------------------------------------------------- /src/bids/modeling/transformations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/transformations/__init__.py -------------------------------------------------------------------------------- /src/bids/modeling/transformations/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/transformations/base.py -------------------------------------------------------------------------------- /src/bids/modeling/transformations/compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/transformations/compute.py -------------------------------------------------------------------------------- /src/bids/modeling/transformations/munge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/modeling/transformations/munge.py -------------------------------------------------------------------------------- /src/bids/reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/README.md -------------------------------------------------------------------------------- /src/bids/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/__init__.py -------------------------------------------------------------------------------- /src/bids/reports/config/converters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/config/converters.json -------------------------------------------------------------------------------- /src/bids/reports/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/conftest.py -------------------------------------------------------------------------------- /src/bids/reports/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/parameters.py -------------------------------------------------------------------------------- /src/bids/reports/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/parsing.py -------------------------------------------------------------------------------- /src/bids/reports/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/report.py -------------------------------------------------------------------------------- /src/bids/reports/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bids/reports/tests/test_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/tests/test_parameters.py -------------------------------------------------------------------------------- /src/bids/reports/tests/test_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/tests/test_parsing.py -------------------------------------------------------------------------------- /src/bids/reports/tests/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/tests/test_report.py -------------------------------------------------------------------------------- /src/bids/reports/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/reports/utils.py -------------------------------------------------------------------------------- /src/bids/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/__init__.py -------------------------------------------------------------------------------- /src/bids/tests/data/images/3d.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/data/images/3d.nii.gz -------------------------------------------------------------------------------- /src/bids/tests/data/images/4d.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/data/images/4d.bval -------------------------------------------------------------------------------- /src/bids/tests/data/images/4d.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/data/images/4d.nii.gz -------------------------------------------------------------------------------- /src/bids/tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/test_cli.py -------------------------------------------------------------------------------- /src/bids/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/test_config.py -------------------------------------------------------------------------------- /src/bids/tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/tests/utils.py -------------------------------------------------------------------------------- /src/bids/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/utils.py -------------------------------------------------------------------------------- /src/bids/variables/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/__init__.py -------------------------------------------------------------------------------- /src/bids/variables/collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/collections.py -------------------------------------------------------------------------------- /src/bids/variables/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/entities.py -------------------------------------------------------------------------------- /src/bids/variables/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/io.py -------------------------------------------------------------------------------- /src/bids/variables/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/bids/variables/tests/test_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/tests/test_collections.py -------------------------------------------------------------------------------- /src/bids/variables/tests/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/tests/test_entities.py -------------------------------------------------------------------------------- /src/bids/variables/tests/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/tests/test_io.py -------------------------------------------------------------------------------- /src/bids/variables/tests/test_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/tests/test_variables.py -------------------------------------------------------------------------------- /src/bids/variables/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/src/bids/variables/variables.py -------------------------------------------------------------------------------- /tests/data/7t_trt/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/dataset_description.json -------------------------------------------------------------------------------- /tests/data/7t_trt/participants.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/participants.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/anat/sub-01_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/anat/sub-01_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/fmap/sub-01_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/func/sub-01_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-1/sub-01_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/ses-1/sub-01_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/fmap/sub-01_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/func/sub-01_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/ses-2/sub-01_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/ses-2/sub-01_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-01/sub-01_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-01/sub-01_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/anat/sub-02_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/anat/sub-02_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/fmap/sub-02_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/func/sub-02_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-1/sub-02_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/ses-1/sub-02_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/fmap/sub-02_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/func/sub-02_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/ses-2/sub-02_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/ses-2/sub-02_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-02/sub-02_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-02/sub-02_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/anat/sub-03_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/anat/sub-03_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/fmap/sub-03_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/func/sub-03_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-1/sub-03_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/ses-1/sub-03_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/fmap/sub-03_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/func/sub-03_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/ses-2/sub-03_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/ses-2/sub-03_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/sub-03-test.bval: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-03/sub-03_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-03/sub-03_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/anat/sub-04_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/anat/sub-04_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/fmap/sub-04_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/func/sub-04_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-1/sub-04_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/ses-1/sub-04_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/fmap/sub-04_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/func/sub-04_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/ses-2/sub-04_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/ses-2/sub-04_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-04/sub-04_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-04/sub-04_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/anat/sub-05_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/anat/sub-05_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/fmap/sub-05_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/func/sub-05_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-1/sub-05_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/ses-1/sub-05_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/fmap/sub-05_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/func/sub-05_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/ses-2/sub-05_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/ses-2/sub-05_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-05/sub-05_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-05/sub-05_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/anat/sub-06_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/anat/sub-06_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/fmap/sub-06_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/func/sub-06_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-1/sub-06_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/ses-1/sub-06_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/fmap/sub-06_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/func/sub-06_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/ses-2/sub-06_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/ses-2/sub-06_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-06/sub-06_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-06/sub-06_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/anat/sub-07_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/anat/sub-07_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/fmap/sub-07_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/func/sub-07_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-1/sub-07_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/ses-1/sub-07_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/fmap/sub-07_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/func/sub-07_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/ses-2/sub-07_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/ses-2/sub-07_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-07/sub-07_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-07/sub-07_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/anat/sub-08_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/anat/sub-08_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/fmap/sub-08_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/func/sub-08_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-1/sub-08_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/ses-1/sub-08_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/fmap/sub-08_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/func/sub-08_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/ses-2/sub-08_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/ses-2/sub-08_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-08/sub-08_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-08/sub-08_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/anat/sub-09_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/anat/sub-09_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/fmap/sub-09_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/func/sub-09_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-1/sub-09_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/ses-1/sub-09_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/fmap/sub-09_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/func/sub-09_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/ses-2/sub-09_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/ses-2/sub-09_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-09/sub-09_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-09/sub-09_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/anat/sub-10_ses-1_T1map.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/anat/sub-10_ses-1_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/fmap/sub-10_ses-1_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/func/sub-10_ses-1_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-1/sub-10_ses-1_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/ses-1/sub-10_ses-1_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-1_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_magnitude1.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_magnitude2.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_phasediff.json -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/fmap/sub-10_ses-2_run-2_phasediff.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-fullbrain_run-1_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-fullbrain_run-1_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-fullbrain_run-2_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-fullbrain_run-2_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-prefrontal_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/func/sub-10_ses-2_task-rest_acq-prefrontal_physio.tsv.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/ses-2/sub-10_ses-2_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/ses-2/sub-10_ses-2_scans.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/sub-10/sub-10_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/sub-10/sub-10_sessions.tsv -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-fullbrain_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/task-rest_acq-fullbrain_bold.json -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-fullbrain_run-1_physio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/task-rest_acq-fullbrain_run-1_physio.json -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-fullbrain_run-2_physio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/task-rest_acq-fullbrain_run-2_physio.json -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-prefrontal_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/task-rest_acq-prefrontal_bold.json -------------------------------------------------------------------------------- /tests/data/7t_trt/task-rest_acq-prefrontal_physio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/7t_trt/task-rest_acq-prefrontal_physio.json -------------------------------------------------------------------------------- /tests/data/7t_trt/test.bval: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/bids_specs_with_oligarchy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/bids_specs_with_oligarchy.json -------------------------------------------------------------------------------- /tests/data/ds000117/.bidsignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/.bidsignore -------------------------------------------------------------------------------- /tests/data/ds000117/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/CHANGES -------------------------------------------------------------------------------- /tests/data/ds000117/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/README -------------------------------------------------------------------------------- /tests/data/ds000117/acq-epi_T1w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/acq-epi_T1w.json -------------------------------------------------------------------------------- /tests/data/ds000117/acq-mprage_T1w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/acq-mprage_T1w.json -------------------------------------------------------------------------------- /tests/data/ds000117/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds000117/participants.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/participants.tsv -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-1_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-1_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-2_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-2_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-3_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-3_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-4_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-4_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-5_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-5_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-6_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-6_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-1_echo-7_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-1_echo-7_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-1_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-1_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-2_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-2_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-3_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-3_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-4_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-4_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-5_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-5_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-6_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-6_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/run-2_echo-7_FLASH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/run-2_echo-7_FLASH.json -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_headshape.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_headshape.pos -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_task-facerecognition_run-01_proc-sss_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_task-facerecognition_run-02_proc-sss_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_task-facerecognition_run-03_proc-sss_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_task-facerecognition_run-04_proc-sss_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_task-facerecognition_run-05_proc-sss_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/meg/sub-01_ses-meg_task-facerecognition_run-06_proc-sss_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-meg/sub-01_ses-meg_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-01/ses-meg/sub-01_ses-meg_scans.tsv -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_acq-mprage_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-1_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/anat/sub-01_ses-mri_run-2_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.bval -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.bvec -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.json -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/dwi/sub-01_ses-mri_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_magnitude1.nii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_magnitude2.nii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_phasediff.json -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/fmap/sub-01_ses-mri_phasediff.nii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-04_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-05_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-06_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-07_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-08_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-01/ses-mri/func/sub-01_ses-mri_task-facerecognition_run-09_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_headshape.pos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_headshape.pos -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_task-facerecognition_run-01_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_task-facerecognition_run-02_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_task-facerecognition_run-03_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_task-facerecognition_run-04_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_task-facerecognition_run-05_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/meg/sub-02_ses-meg_task-facerecognition_run-06_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-meg/sub-02_ses-meg_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-02/ses-meg/sub-02_ses-meg_scans.tsv -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_acq-mprage_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-1_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-1_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-2_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-3_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-4_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-5_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-6_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/anat/sub-02_ses-mri_run-2_echo-7_FLASH.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.bval -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.bvec -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.json -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/dwi/sub-02_ses-mri_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_magnitude1.nii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_magnitude2.nii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_phasediff.json -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/fmap/sub-02_ses-mri_phasediff.nii: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-04_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-05_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-06_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-07_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-08_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-02/ses-mri/func/sub-02_ses-mri_task-facerecognition_run-09_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090409/meg/sub-emptyroom_ses-20090409_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090506/meg/sub-emptyroom_ses-20090506_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090511/meg/sub-emptyroom_ses-20090511_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090515/meg/sub-emptyroom_ses-20090515_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090518/meg/sub-emptyroom_ses-20090518_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20090601/meg/sub-emptyroom_ses-20090601_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20091126/meg/sub-emptyroom_ses-20091126_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/sub-emptyroom/ses-20091208/meg/sub-emptyroom_ses-20091208_task-noise_meg.fif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds000117/task-facerecognition_beh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/task-facerecognition_beh.json -------------------------------------------------------------------------------- /tests/data/ds000117/task-facerecognition_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/task-facerecognition_bold.json -------------------------------------------------------------------------------- /tests/data/ds000117/task-facerecognition_channels.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/task-facerecognition_channels.tsv -------------------------------------------------------------------------------- /tests/data/ds000117/task-facerecognition_meg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds000117/task-facerecognition_meg.json -------------------------------------------------------------------------------- /tests/data/ds000117/task-facerecognition_photo.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/CHANGES: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-01/sub-01_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-02/sub-02_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-03/sub-03_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-04/sub-04_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-05/sub-05_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-06/sub-06_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-07/sub-07_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-08/sub-08_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-09/sub-09_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-10/sub-10_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-11/sub-11_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-12/sub-12_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-13/sub-13_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-14/sub-14_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-15/sub-15_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/mask/_subject_id_sub-16/sub-16_T1w_corrected_brain_mask.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-01/sub-01_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-02/sub-02_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-03/sub-03_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-04/sub-04_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-05/sub-05_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-06/sub-06_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-07/sub-07_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-08/sub-08_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-09/sub-09_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-10/sub-10_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-11/sub-11_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-12/sub-12_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-13/sub-13_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-14/sub-14_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-15/sub-15_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/bet/output/_subject_id_sub-16/sub-16_T1w_corrected_brain.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/events/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/derivatives/events/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/derivatives/fmriprep/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-01/func/sub-01_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-01/func/sub-01_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-01/func/sub-01_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-02/func/sub-02_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-02/func/sub-02_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-02/func/sub-02_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-03/func/sub-03_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-03/func/sub-03_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-03/func/sub-03_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-04/func/sub-04_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-04/func/sub-04_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-04/func/sub-04_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-05/func/sub-05_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-05/func/sub-05_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-05/func/sub-05_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-06/func/sub-06_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-06/func/sub-06_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-06/func/sub-06_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-07/func/sub-07_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-07/func/sub-07_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-07/func/sub-07_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-08/func/sub-08_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-08/func/sub-08_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-08/func/sub-08_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-09/func/sub-09_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-09/func/sub-09_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-09/func/sub-09_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-10/func/sub-10_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-10/func/sub-10_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-10/func/sub-10_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-11/func/sub-11_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-11/func/sub-11_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-11/func/sub-11_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-12/func/sub-12_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-12/func/sub-12_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-12/func/sub-12_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-13/func/sub-13_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-13/func/sub-13_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-13/func/sub-13_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-14/func/sub-14_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-14/func/sub-14_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-14/func/sub-14_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-15/func/sub-15_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-15/func/sub-15_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-15/func/sub-15_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-16/func/sub-16_task-mixedgamblestask_run-01_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-16/func/sub-16_task-mixedgamblestask_run-02_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/derivatives/fmriprep/sub-16/func/sub-16_task-mixedgamblestask_run-03_space-MNI152NLin2009cAsym_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/ds005_onsets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/ds005_onsets.json -------------------------------------------------------------------------------- /tests/data/ds005/dwi.bval: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/dwi.bvec: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/models/ds-005_type-interceptonlyrunlevel_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/models/ds-005_type-interceptonlyrunlevel_model.json -------------------------------------------------------------------------------- /tests/data/ds005/models/ds-005_type-mfx_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/models/ds-005_type-mfx_model.json -------------------------------------------------------------------------------- /tests/data/ds005/models/ds-005_type-test_intercept.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/models/ds-005_type-test_intercept.json -------------------------------------------------------------------------------- /tests/data/ds005/models/ds-005_type-test_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/models/ds-005_type-test_model.json -------------------------------------------------------------------------------- /tests/data/ds005/models/ds-005_type-testnodummy_model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/models/ds-005_type-testnodummy_model.json -------------------------------------------------------------------------------- /tests/data/ds005/models/extras/ds-005_type-test_model.json: -------------------------------------------------------------------------------- 1 | { 2 | "dummy": [] 3 | } -------------------------------------------------------------------------------- /tests/data/ds005/participants.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/participants.tsv -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/anat/sub-01_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/dwi/sub-01_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/func/sub-01_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-01/sub-01_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/sub-01/sub-01_scans.tsv -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/anat/sub-02_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/dwi/sub-02_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/func/sub-02_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-02/sub-02_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/sub-02/sub-02_scans.tsv -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/anat/sub-03_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/dwi/sub-03_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-03/func/sub-03_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/anat/sub-04_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/dwi/sub-04_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-04/func/sub-04_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/anat/sub-05_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/dwi/sub-05_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-05/func/sub-05_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/anat/sub-06_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/dwi/sub-06_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-06/func/sub-06_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/anat/sub-07_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/dwi/sub-07_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-07/func/sub-07_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/anat/sub-08_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/dwi/sub-08_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-08/func/sub-08_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/anat/sub-09_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/dwi/sub-09_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-09/func/sub-09_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/anat/sub-10_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/dwi/sub-10_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-10/func/sub-10_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/anat/sub-11_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/dwi/sub-11: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/dwi/sub-11_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-11/func/sub-11_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/anat/sub-12_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/anat/sub-12_acq-MP2RAGE_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/anat/sub-12_acq-MPRAGE_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/dwi/sub-12_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-12/func/sub-12_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/anat/sub-13_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/dwi/sub-13_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-13/func/sub-13_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/anat/sub-14_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/dwi/sub-14_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-14/func/sub-14_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/anat/sub-15_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/dwi/sub-15_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-15/func/sub-15_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/anat/sub-16_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/dwi/sub-16_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-02_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/sub-16/func/sub-16_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005/task-mixedgamblestask_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005/task-mixedgamblestask_bold.json -------------------------------------------------------------------------------- /tests/data/ds005_conflict/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005_conflict/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/anat/sub-01_T1w.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/dwi/sub-01_dwi.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-01_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_conflict/sub-01/func/sub-01_task-mixedgamblestask_run-03_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy-vx.x.x/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005_derivs/dummy-vx.x.x/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy-vx.x.x/sub-01/func/sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy-vx.x.x/sub-01/func/sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy-vx.x.x/sub-01/func/sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005_derivs/dummy/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy/sub-01/func/sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy/sub-01/func/sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/dummy/sub-01/func/sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_dataset_type/sub-01/func/sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_dataset_type/sub-01/func/sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_dataset_type/sub-01/func/sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_pipeline_description/sub-01/func/sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_pipeline_description/sub-01/func/sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_pipeline_description/sub-01/func/sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_type_or_description/sub-01/func/sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_type_or_description/sub-01/func/sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/format_errs/no_type_or_description/sub-01/func/sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/other/dummy/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/ds005_derivs/other/dummy/dataset_description.json -------------------------------------------------------------------------------- /tests/data/ds005_derivs/other/dummy/sub-01/func/sub-01_task-mixedgamblestask_run-01_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/other/dummy/sub-01/func/sub-01_task-mixedgamblestask_run-02_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/ds005_derivs/other/dummy/sub-01/func/sub-01_task-mixedgamblestask_run-03_desc-preproc_bold.nii.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/synthetic/T1w.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/T1w.json -------------------------------------------------------------------------------- /tests/data/synthetic/code/create_synthetic_ds.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/code/create_synthetic_ds.sh -------------------------------------------------------------------------------- /tests/data/synthetic/code/dwi.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/code/dwi.bval -------------------------------------------------------------------------------- /tests/data/synthetic/code/dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/code/dwi.bvec -------------------------------------------------------------------------------- /tests/data/synthetic/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/dataset_description.json -------------------------------------------------------------------------------- /tests/data/synthetic/derivatives/fmriprep/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/derivatives/fmriprep/dataset_description.json -------------------------------------------------------------------------------- /tests/data/synthetic/derivatives/fmriprep/task-nback_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/derivatives/fmriprep/task-nback_bold.json -------------------------------------------------------------------------------- /tests/data/synthetic/derivatives/fmriprep/task-rest_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/derivatives/fmriprep/task-rest_bold.json -------------------------------------------------------------------------------- /tests/data/synthetic/dwi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/dwi.json -------------------------------------------------------------------------------- /tests/data/synthetic/participants.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/participants.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/anat/sub-01_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/ses-01/dwi/sub-01_ses-01_dwi.bval -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/dwi/sub-01_ses-01_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/ses-01/dwi/sub-01_ses-01_dwi.bvec -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/dwi/sub-01_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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/HEAD/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.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_phasediff.json -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/ses-01/fmap/sub-01_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-01/sub-01_ses-01_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/ses-01/sub-01_ses-01_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/anat/sub-01_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/tests/data/synthetic/sub-01/ses-02/anat/sub-01_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/ses-02/sub-01_ses-02_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/ses-02/sub-01_ses-02_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-01/sub-01_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-01/sub-01_sessions.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/anat/sub-02_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/ses-01/dwi/sub-02_ses-01_dwi.bval -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/dwi/sub-02_ses-01_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/ses-01/dwi/sub-02_ses-01_dwi.bvec -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/dwi/sub-02_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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/HEAD/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.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_phasediff.json -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_phasediff.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/ses-01/fmap/sub-02_ses-01_phasediff.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-01/sub-02_ses-01_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/ses-01/sub-02_ses-01_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/anat/sub-02_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/tests/data/synthetic/sub-02/ses-02/anat/sub-02_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/ses-02/sub-02_ses-02_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/ses-02/sub-02_ses-02_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-02/sub-02_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-02/sub-02_sessions.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/anat/sub-03_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-03/ses-01/dwi/sub-03_ses-01_dwi.bval -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/dwi/sub-03_ses-01_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-03/ses-01/dwi/sub-03_ses-01_dwi.bvec -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/dwi/sub-03_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-03/ses-01/fmap/sub-03_ses-01_phasediff.json -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-01/sub-03_ses-01_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-03/ses-01/sub-03_ses-01_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/anat/sub-03_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/tests/data/synthetic/sub-03/ses-02/anat/sub-03_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/ses-02/sub-03_ses-02_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-03/ses-02/sub-03_ses-02_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-03/sub-03_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-03/sub-03_sessions.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/anat/sub-04_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-04/ses-01/dwi/sub-04_ses-01_dwi.bval -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/dwi/sub-04_ses-01_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-04/ses-01/dwi/sub-04_ses-01_dwi.bvec -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/dwi/sub-04_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-04/ses-01/fmap/sub-04_ses-01_phasediff.json -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-01/sub-04_ses-01_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-04/ses-01/sub-04_ses-01_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/anat/sub-04_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/tests/data/synthetic/sub-04/ses-02/anat/sub-04_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/ses-02/sub-04_ses-02_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-04/ses-02/sub-04_ses-02_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-04/sub-04_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-04/sub-04_sessions.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/anat/sub-05_ses-01_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/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.bval: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-05/ses-01/dwi/sub-05_ses-01_dwi.bval -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/dwi/sub-05_ses-01_dwi.bvec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-05/ses-01/dwi/sub-05_ses-01_dwi.bvec -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/dwi/sub-05_ses-01_dwi.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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_phasediff.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-05/ses-01/fmap/sub-05_ses-01_phasediff.json -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-01/sub-05_ses-01_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-05/ses-01/sub-05_ses-01_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/anat/sub-05_ses-02_T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/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/HEAD/tests/data/synthetic/sub-05/ses-02/anat/sub-05_ses-02_T1w.nii.gz -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/ses-02/sub-05_ses-02_scans.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-05/ses-02/sub-05_ses-02_scans.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/sub-05/sub-05_sessions.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/sub-05/sub-05_sessions.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/task-nback_bold.json -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_events.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/task-nback_events.tsv -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_physio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/task-nback_physio.json -------------------------------------------------------------------------------- /tests/data/synthetic/task-nback_stim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/task-nback_stim.json -------------------------------------------------------------------------------- /tests/data/synthetic/task-rest_bold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/task-rest_bold.json -------------------------------------------------------------------------------- /tests/data/synthetic/task-rest_physio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tests/data/synthetic/task-rest_physio.json -------------------------------------------------------------------------------- /tools/prep_zenodo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tools/prep_zenodo.py -------------------------------------------------------------------------------- /tools/update_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tools/update_changes.sh -------------------------------------------------------------------------------- /tools/update_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tools/update_requirements.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/tox.ini -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bids-standard/pybids/HEAD/uv.lock --------------------------------------------------------------------------------