├── LICENSE ├── README.md ├── code ├── brain_masks.py ├── compile_metadata.py ├── event_meta.json ├── exclude_scans.py ├── extract_confounds.py ├── fs-license.txt ├── get_demog.py ├── get_fwhm.py ├── get_tsnr.py ├── get_words.py ├── gifti_io.py ├── plot_isc.py ├── plot_qc.py ├── plot_stim.py ├── roi_average.py ├── roi_isc.py ├── roi_lags.py ├── roi_masks.py ├── roi_regression.py ├── run_fmriprep.sh ├── run_isc.py ├── run_mriqc.sh ├── run_mriqc_group.sh ├── run_pydeface.py ├── run_regression.py ├── run_smoothing.py ├── scan_exclude.json ├── slurm_fmriprep.sh ├── slurm_fwhm.sh ├── slurm_mriqc.sh ├── slurm_regression.sh ├── slurm_smoothing.sh ├── subject_meta.json └── task_meta.json └── staging ├── CHANGES ├── README ├── compile_data.py ├── compile_events.py ├── compile_participants.py ├── create_description.py ├── dataset_description.json ├── environment-flexible.yml ├── environment.yml ├── mint_new_ids.py ├── participants_meta.json ├── replace_anats.py ├── soundcheck_presentation.py ├── story_presentation.py └── summarize_meta.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/README.md -------------------------------------------------------------------------------- /code/brain_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/brain_masks.py -------------------------------------------------------------------------------- /code/compile_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/compile_metadata.py -------------------------------------------------------------------------------- /code/event_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/event_meta.json -------------------------------------------------------------------------------- /code/exclude_scans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/exclude_scans.py -------------------------------------------------------------------------------- /code/extract_confounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/extract_confounds.py -------------------------------------------------------------------------------- /code/fs-license.txt: -------------------------------------------------------------------------------- 1 | sam.nastase@gmail.com 2 | 16982 3 | *CVdPPFbZu/9s 4 | FS0Zs5Yk2s4jg 5 | -------------------------------------------------------------------------------- /code/get_demog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/get_demog.py -------------------------------------------------------------------------------- /code/get_fwhm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/get_fwhm.py -------------------------------------------------------------------------------- /code/get_tsnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/get_tsnr.py -------------------------------------------------------------------------------- /code/get_words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/get_words.py -------------------------------------------------------------------------------- /code/gifti_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/gifti_io.py -------------------------------------------------------------------------------- /code/plot_isc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/plot_isc.py -------------------------------------------------------------------------------- /code/plot_qc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/plot_qc.py -------------------------------------------------------------------------------- /code/plot_stim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/plot_stim.py -------------------------------------------------------------------------------- /code/roi_average.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/roi_average.py -------------------------------------------------------------------------------- /code/roi_isc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/roi_isc.py -------------------------------------------------------------------------------- /code/roi_lags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/roi_lags.py -------------------------------------------------------------------------------- /code/roi_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/roi_masks.py -------------------------------------------------------------------------------- /code/roi_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/roi_regression.py -------------------------------------------------------------------------------- /code/run_fmriprep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_fmriprep.sh -------------------------------------------------------------------------------- /code/run_isc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_isc.py -------------------------------------------------------------------------------- /code/run_mriqc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_mriqc.sh -------------------------------------------------------------------------------- /code/run_mriqc_group.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_mriqc_group.sh -------------------------------------------------------------------------------- /code/run_pydeface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_pydeface.py -------------------------------------------------------------------------------- /code/run_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_regression.py -------------------------------------------------------------------------------- /code/run_smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/run_smoothing.py -------------------------------------------------------------------------------- /code/scan_exclude.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/scan_exclude.json -------------------------------------------------------------------------------- /code/slurm_fmriprep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/slurm_fmriprep.sh -------------------------------------------------------------------------------- /code/slurm_fwhm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/slurm_fwhm.sh -------------------------------------------------------------------------------- /code/slurm_mriqc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/slurm_mriqc.sh -------------------------------------------------------------------------------- /code/slurm_regression.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/slurm_regression.sh -------------------------------------------------------------------------------- /code/slurm_smoothing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/slurm_smoothing.sh -------------------------------------------------------------------------------- /code/subject_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/subject_meta.json -------------------------------------------------------------------------------- /code/task_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/code/task_meta.json -------------------------------------------------------------------------------- /staging/CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/CHANGES -------------------------------------------------------------------------------- /staging/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/README -------------------------------------------------------------------------------- /staging/compile_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/compile_data.py -------------------------------------------------------------------------------- /staging/compile_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/compile_events.py -------------------------------------------------------------------------------- /staging/compile_participants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/compile_participants.py -------------------------------------------------------------------------------- /staging/create_description.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/create_description.py -------------------------------------------------------------------------------- /staging/dataset_description.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/dataset_description.json -------------------------------------------------------------------------------- /staging/environment-flexible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/environment-flexible.yml -------------------------------------------------------------------------------- /staging/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/environment.yml -------------------------------------------------------------------------------- /staging/mint_new_ids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/mint_new_ids.py -------------------------------------------------------------------------------- /staging/participants_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/participants_meta.json -------------------------------------------------------------------------------- /staging/replace_anats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/replace_anats.py -------------------------------------------------------------------------------- /staging/soundcheck_presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/soundcheck_presentation.py -------------------------------------------------------------------------------- /staging/story_presentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/story_presentation.py -------------------------------------------------------------------------------- /staging/summarize_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snastase/narratives/HEAD/staging/summarize_meta.py --------------------------------------------------------------------------------