├── .editorconfig ├── .github └── workflows │ ├── README.md │ ├── notebook.yml │ ├── pr-close-signal.yaml │ ├── pr-comment.yaml │ ├── pr-post-remove-branch.yaml │ ├── pr-preflight.yaml │ ├── pr-receive.yaml │ ├── sandpaper-main.yaml │ ├── sandpaper-version.txt │ ├── update-cache.yaml │ └── update-workflows.yaml ├── .gitignore ├── .mailmap ├── AUTHORS ├── CITATION ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── binder ├── environment.yml └── postBuild ├── code ├── 00-before-we-start.ipynb ├── 01-scanner-to-computer.ipynb ├── 02-anatomy-of-nifti.ipynb ├── 02-anatomy-of-nifti_solutions.ipynb ├── 03-data-organization-bids.ipynb ├── 03-data-organization-bids_solutions.ipynb ├── 04-open-mri-datasets.ipynb ├── 04-open-mri-datasets_solutions.ipynb └── 05-bids-derivatives.ipynb ├── config.yaml ├── episodes ├── anatomy-of-nifti.md ├── before-we-start.md ├── bids-derivatives.md ├── data-organization-bids.md ├── fig │ ├── T1w.gif │ ├── T2w.gif │ ├── anaconda-navigator-first-launch.png │ ├── anaconda-navigator-notebook-launch.png │ ├── bids_app.png │ ├── bids_structure.jpg │ ├── bold.gif │ ├── coordinate_systems.png │ ├── dicom_to_nifti.png │ ├── dwi.gif │ ├── dwi_tracts.png │ ├── fmri_timeseries.png │ ├── jupyter-notebook-data-directory.png │ ├── jupyter-notebook-launch-notebook.png │ ├── jupyter-notebook-launch-notebook2.png │ ├── mri_slices.jpg │ ├── numpy_arrays.png │ └── t1t2flairbrain.jpg ├── files │ └── neuroimaging_analysis_at_scale.pptx ├── open-mri-datasets.md └── scanner-to-computer.md ├── index.md ├── instructors └── instructor-notes.md ├── learners ├── discuss.md ├── reference.md └── setup.md ├── profiles └── learner-profiles.md ├── requirements.txt └── site └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/README.md -------------------------------------------------------------------------------- /.github/workflows/notebook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/notebook.yml -------------------------------------------------------------------------------- /.github/workflows/pr-close-signal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/pr-close-signal.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-comment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/pr-comment.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-post-remove-branch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/pr-post-remove-branch.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-preflight.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/pr-preflight.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-receive.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/pr-receive.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/sandpaper-main.yaml -------------------------------------------------------------------------------- /.github/workflows/sandpaper-version.txt: -------------------------------------------------------------------------------- 1 | 0.16.12 2 | -------------------------------------------------------------------------------- /.github/workflows/update-cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/update-cache.yaml -------------------------------------------------------------------------------- /.github/workflows/update-workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.github/workflows/update-workflows.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/.mailmap -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- 1 | Michael Joseph 2 | Jerrold Jeyachandra 3 | Erin Dickie 4 | Ariel Rokem 5 | -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/CITATION -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/README.md -------------------------------------------------------------------------------- /binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/binder/environment.yml -------------------------------------------------------------------------------- /binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/binder/postBuild -------------------------------------------------------------------------------- /code/00-before-we-start.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/00-before-we-start.ipynb -------------------------------------------------------------------------------- /code/01-scanner-to-computer.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/01-scanner-to-computer.ipynb -------------------------------------------------------------------------------- /code/02-anatomy-of-nifti.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/02-anatomy-of-nifti.ipynb -------------------------------------------------------------------------------- /code/02-anatomy-of-nifti_solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/02-anatomy-of-nifti_solutions.ipynb -------------------------------------------------------------------------------- /code/03-data-organization-bids.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/03-data-organization-bids.ipynb -------------------------------------------------------------------------------- /code/03-data-organization-bids_solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/03-data-organization-bids_solutions.ipynb -------------------------------------------------------------------------------- /code/04-open-mri-datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/04-open-mri-datasets.ipynb -------------------------------------------------------------------------------- /code/04-open-mri-datasets_solutions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/04-open-mri-datasets_solutions.ipynb -------------------------------------------------------------------------------- /code/05-bids-derivatives.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/code/05-bids-derivatives.ipynb -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/config.yaml -------------------------------------------------------------------------------- /episodes/anatomy-of-nifti.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/anatomy-of-nifti.md -------------------------------------------------------------------------------- /episodes/before-we-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/before-we-start.md -------------------------------------------------------------------------------- /episodes/bids-derivatives.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/bids-derivatives.md -------------------------------------------------------------------------------- /episodes/data-organization-bids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/data-organization-bids.md -------------------------------------------------------------------------------- /episodes/fig/T1w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/T1w.gif -------------------------------------------------------------------------------- /episodes/fig/T2w.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/T2w.gif -------------------------------------------------------------------------------- /episodes/fig/anaconda-navigator-first-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/anaconda-navigator-first-launch.png -------------------------------------------------------------------------------- /episodes/fig/anaconda-navigator-notebook-launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/anaconda-navigator-notebook-launch.png -------------------------------------------------------------------------------- /episodes/fig/bids_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/bids_app.png -------------------------------------------------------------------------------- /episodes/fig/bids_structure.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/bids_structure.jpg -------------------------------------------------------------------------------- /episodes/fig/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/bold.gif -------------------------------------------------------------------------------- /episodes/fig/coordinate_systems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/coordinate_systems.png -------------------------------------------------------------------------------- /episodes/fig/dicom_to_nifti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/dicom_to_nifti.png -------------------------------------------------------------------------------- /episodes/fig/dwi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/dwi.gif -------------------------------------------------------------------------------- /episodes/fig/dwi_tracts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/dwi_tracts.png -------------------------------------------------------------------------------- /episodes/fig/fmri_timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/fmri_timeseries.png -------------------------------------------------------------------------------- /episodes/fig/jupyter-notebook-data-directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/jupyter-notebook-data-directory.png -------------------------------------------------------------------------------- /episodes/fig/jupyter-notebook-launch-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/jupyter-notebook-launch-notebook.png -------------------------------------------------------------------------------- /episodes/fig/jupyter-notebook-launch-notebook2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/jupyter-notebook-launch-notebook2.png -------------------------------------------------------------------------------- /episodes/fig/mri_slices.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/mri_slices.jpg -------------------------------------------------------------------------------- /episodes/fig/numpy_arrays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/numpy_arrays.png -------------------------------------------------------------------------------- /episodes/fig/t1t2flairbrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/fig/t1t2flairbrain.jpg -------------------------------------------------------------------------------- /episodes/files/neuroimaging_analysis_at_scale.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/files/neuroimaging_analysis_at_scale.pptx -------------------------------------------------------------------------------- /episodes/open-mri-datasets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/open-mri-datasets.md -------------------------------------------------------------------------------- /episodes/scanner-to-computer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/episodes/scanner-to-computer.md -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/index.md -------------------------------------------------------------------------------- /instructors/instructor-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/instructors/instructor-notes.md -------------------------------------------------------------------------------- /learners/discuss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/learners/discuss.md -------------------------------------------------------------------------------- /learners/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/learners/reference.md -------------------------------------------------------------------------------- /learners/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/learners/setup.md -------------------------------------------------------------------------------- /profiles/learner-profiles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/profiles/learner-profiles.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/requirements.txt -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carpentries-incubator/SDC-BIDS-IntroMRI/HEAD/site/README.md --------------------------------------------------------------------------------