├── .binder ├── apt.txt ├── environment.yml ├── postBuild └── start ├── LICENSE ├── README.md ├── data ├── T1w.nii └── bold.nii ├── index.ipynb └── index.mlx /.binder/apt.txt: -------------------------------------------------------------------------------- 1 | libgl1-mesa-dev 2 | xvfb 3 | -------------------------------------------------------------------------------- /.binder/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/.binder/environment.yml -------------------------------------------------------------------------------- /.binder/postBuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/.binder/postBuild -------------------------------------------------------------------------------- /.binder/start: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | xvfb-run exec "$@" 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/README.md -------------------------------------------------------------------------------- /data/T1w.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/data/T1w.nii -------------------------------------------------------------------------------- /data/bold.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/data/bold.nii -------------------------------------------------------------------------------- /index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/index.ipynb -------------------------------------------------------------------------------- /index.mlx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spm/spm-notebooks/HEAD/index.mlx --------------------------------------------------------------------------------