├── .circleci └── config.yml ├── .gitignore ├── .travis.yml ├── Makefile ├── README.rst ├── continuous_integration ├── clean_output.sh ├── install.sh ├── install_spm.sh ├── install_spm12.sh └── setup_spm.sh ├── examples ├── README.md ├── easy_start │ ├── nipype_preproc_spm_auditory.py │ ├── nipype_preproc_spm_haxby.py │ ├── segmentation_demos.py │ └── spm_auditory_preproc.ini ├── pipelining │ ├── multimodal_faces_preproc.ini │ ├── nipype_preproc_spm_multimodal_faces.py │ ├── nistats_glm_fsl_feeds_fmri.py │ └── openfmri_preproc.py └── pure_python │ ├── coreg_demos.py │ ├── pure_python_preproc_demo.py │ ├── realign_demos.py │ └── slice_timing_demos.py ├── pypreprocess.py ├── pypreprocess ├── __init__.py ├── affine_transformations.py ├── cluster_level_analysis.py ├── conf_parser.py ├── configure_spm.py ├── coreg.py ├── datasets.py ├── external │ ├── __init__.py │ ├── nistats │ │ ├── __init__.py │ │ ├── design_matrix.py │ │ ├── experimental_paradigm.py │ │ ├── glm.py │ │ ├── hemodynamic_models.py │ │ ├── model.py │ │ ├── regression.py │ │ └── utils.py │ └── tempita │ │ ├── __init__.py │ │ ├── _looper.py │ │ ├── _tempita.py │ │ └── compat3.py ├── fsl_to_nistats.py ├── histograms.py ├── io_utils.py ├── kernel_smooth.py ├── nipype_preproc_fsl_utils.py ├── nipype_preproc_spm_utils.py ├── openfmri.py ├── purepython_preproc_utils.py ├── realign.py ├── reporting │ ├── README.md │ ├── __init__.py │ ├── check_preprocessing.py │ ├── pypreproc_reporter.py │ └── template_reports │ │ ├── log_link_template.html │ │ ├── log_sub_template.html │ │ ├── log_template.html │ │ ├── report_sub_template.html │ │ └── report_template.html ├── reslice.py ├── slice_timing.py ├── spm_loader │ ├── __init__.py │ ├── spm.py │ └── utils.py ├── subject_data.py ├── tests │ ├── __init__.py │ ├── _test_utils.py │ ├── test_affine_transformations.py │ ├── test_cluster_level_analysis.py │ ├── test_conf_parser.py │ ├── test_configure_spm.py │ ├── test_coreg.py │ ├── test_data │ │ ├── some_anat.mat │ │ ├── spm_hist2_args_1.mat │ │ ├── spm_hist2_args_2.mat │ │ └── spmmmfmri.mat │ ├── test_histograms.py │ ├── test_io_utils.py │ ├── test_kernel_smooth.py │ ├── test_realign.py │ ├── test_reslice.py │ ├── test_slice_timing.py │ ├── test_subject_data.py │ ├── test_tsdiffana.py │ └── test_version.py ├── time_diff.py └── version.py ├── scripts ├── HCP.ini ├── HCP_tfMRI_MOTOR_preproc.ini ├── abide_preproc.py └── hcp_preproc_and_analysis.py ├── setup.cfg ├── setup.py └── spike ├── glm_utils.py └── sprint.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/README.rst -------------------------------------------------------------------------------- /continuous_integration/clean_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/continuous_integration/clean_output.sh -------------------------------------------------------------------------------- /continuous_integration/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/continuous_integration/install.sh -------------------------------------------------------------------------------- /continuous_integration/install_spm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/continuous_integration/install_spm.sh -------------------------------------------------------------------------------- /continuous_integration/install_spm12.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/continuous_integration/install_spm12.sh -------------------------------------------------------------------------------- /continuous_integration/setup_spm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/continuous_integration/setup_spm.sh -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- 1 | This directory contains example scripts. 2 | -------------------------------------------------------------------------------- /examples/easy_start/nipype_preproc_spm_auditory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/easy_start/nipype_preproc_spm_auditory.py -------------------------------------------------------------------------------- /examples/easy_start/nipype_preproc_spm_haxby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/easy_start/nipype_preproc_spm_haxby.py -------------------------------------------------------------------------------- /examples/easy_start/segmentation_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/easy_start/segmentation_demos.py -------------------------------------------------------------------------------- /examples/easy_start/spm_auditory_preproc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/easy_start/spm_auditory_preproc.ini -------------------------------------------------------------------------------- /examples/pipelining/multimodal_faces_preproc.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pipelining/multimodal_faces_preproc.ini -------------------------------------------------------------------------------- /examples/pipelining/nipype_preproc_spm_multimodal_faces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pipelining/nipype_preproc_spm_multimodal_faces.py -------------------------------------------------------------------------------- /examples/pipelining/nistats_glm_fsl_feeds_fmri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pipelining/nistats_glm_fsl_feeds_fmri.py -------------------------------------------------------------------------------- /examples/pipelining/openfmri_preproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pipelining/openfmri_preproc.py -------------------------------------------------------------------------------- /examples/pure_python/coreg_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pure_python/coreg_demos.py -------------------------------------------------------------------------------- /examples/pure_python/pure_python_preproc_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pure_python/pure_python_preproc_demo.py -------------------------------------------------------------------------------- /examples/pure_python/realign_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pure_python/realign_demos.py -------------------------------------------------------------------------------- /examples/pure_python/slice_timing_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/examples/pure_python/slice_timing_demos.py -------------------------------------------------------------------------------- /pypreprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess.py -------------------------------------------------------------------------------- /pypreprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/__init__.py -------------------------------------------------------------------------------- /pypreprocess/affine_transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/affine_transformations.py -------------------------------------------------------------------------------- /pypreprocess/cluster_level_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/cluster_level_analysis.py -------------------------------------------------------------------------------- /pypreprocess/conf_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/conf_parser.py -------------------------------------------------------------------------------- /pypreprocess/configure_spm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/configure_spm.py -------------------------------------------------------------------------------- /pypreprocess/coreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/coreg.py -------------------------------------------------------------------------------- /pypreprocess/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/datasets.py -------------------------------------------------------------------------------- /pypreprocess/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypreprocess/external/nistats/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pypreprocess/external/nistats/design_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/design_matrix.py -------------------------------------------------------------------------------- /pypreprocess/external/nistats/experimental_paradigm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/experimental_paradigm.py -------------------------------------------------------------------------------- /pypreprocess/external/nistats/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/glm.py -------------------------------------------------------------------------------- /pypreprocess/external/nistats/hemodynamic_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/hemodynamic_models.py -------------------------------------------------------------------------------- /pypreprocess/external/nistats/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/model.py -------------------------------------------------------------------------------- /pypreprocess/external/nistats/regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/regression.py -------------------------------------------------------------------------------- /pypreprocess/external/nistats/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/nistats/utils.py -------------------------------------------------------------------------------- /pypreprocess/external/tempita/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/tempita/__init__.py -------------------------------------------------------------------------------- /pypreprocess/external/tempita/_looper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/tempita/_looper.py -------------------------------------------------------------------------------- /pypreprocess/external/tempita/_tempita.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/tempita/_tempita.py -------------------------------------------------------------------------------- /pypreprocess/external/tempita/compat3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/external/tempita/compat3.py -------------------------------------------------------------------------------- /pypreprocess/fsl_to_nistats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/fsl_to_nistats.py -------------------------------------------------------------------------------- /pypreprocess/histograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/histograms.py -------------------------------------------------------------------------------- /pypreprocess/io_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/io_utils.py -------------------------------------------------------------------------------- /pypreprocess/kernel_smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/kernel_smooth.py -------------------------------------------------------------------------------- /pypreprocess/nipype_preproc_fsl_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/nipype_preproc_fsl_utils.py -------------------------------------------------------------------------------- /pypreprocess/nipype_preproc_spm_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/nipype_preproc_spm_utils.py -------------------------------------------------------------------------------- /pypreprocess/openfmri.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/openfmri.py -------------------------------------------------------------------------------- /pypreprocess/purepython_preproc_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/purepython_preproc_utils.py -------------------------------------------------------------------------------- /pypreprocess/realign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/realign.py -------------------------------------------------------------------------------- /pypreprocess/reporting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/reporting/README.md -------------------------------------------------------------------------------- /pypreprocess/reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/reporting/__init__.py -------------------------------------------------------------------------------- /pypreprocess/reporting/check_preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/reporting/check_preprocessing.py -------------------------------------------------------------------------------- /pypreprocess/reporting/pypreproc_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurospin/pypreprocess/HEAD/pypreprocess/reporting/pypreproc_reporter.py -------------------------------------------------------------------------------- /pypreprocess/reporting/template_reports/log_link_template.html: -------------------------------------------------------------------------------- 1 | (see log) -------------------------------------------------------------------------------- /pypreprocess/reporting/template_reports/log_sub_template.html: -------------------------------------------------------------------------------- 1 |