├── .gitignore ├── OASIS_CHANGELOG.md ├── README.md ├── download_freesurfer ├── download_oasis_freesurfer.sh ├── download_oasis_freesurfer_tar.sh ├── download_oasis_freesurfer_wget.sh └── fs_download_example.csv ├── download_pup ├── download_oasis_pup.sh ├── download_oasis_pup_files_by_partial_filename_match.sh ├── download_oasis_pup_tar.sh ├── download_oasis_pup_wget.sh └── pup_download_example.csv ├── download_scans ├── download_oasis_scans.sh ├── download_oasis_scans_bids.sh ├── download_oasis_scans_tar.sh ├── download_oasis_scans_wget.sh └── oasis_scan_download_example.csv └── session_matchup ├── oasis_data_matchup.R └── oasis_data_matchup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /OASIS_CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/OASIS_CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/README.md -------------------------------------------------------------------------------- /download_freesurfer/download_oasis_freesurfer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_freesurfer/download_oasis_freesurfer.sh -------------------------------------------------------------------------------- /download_freesurfer/download_oasis_freesurfer_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_freesurfer/download_oasis_freesurfer_tar.sh -------------------------------------------------------------------------------- /download_freesurfer/download_oasis_freesurfer_wget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_freesurfer/download_oasis_freesurfer_wget.sh -------------------------------------------------------------------------------- /download_freesurfer/fs_download_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_freesurfer/fs_download_example.csv -------------------------------------------------------------------------------- /download_pup/download_oasis_pup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_pup/download_oasis_pup.sh -------------------------------------------------------------------------------- /download_pup/download_oasis_pup_files_by_partial_filename_match.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_pup/download_oasis_pup_files_by_partial_filename_match.sh -------------------------------------------------------------------------------- /download_pup/download_oasis_pup_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_pup/download_oasis_pup_tar.sh -------------------------------------------------------------------------------- /download_pup/download_oasis_pup_wget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_pup/download_oasis_pup_wget.sh -------------------------------------------------------------------------------- /download_pup/pup_download_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_pup/pup_download_example.csv -------------------------------------------------------------------------------- /download_scans/download_oasis_scans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_scans/download_oasis_scans.sh -------------------------------------------------------------------------------- /download_scans/download_oasis_scans_bids.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_scans/download_oasis_scans_bids.sh -------------------------------------------------------------------------------- /download_scans/download_oasis_scans_tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_scans/download_oasis_scans_tar.sh -------------------------------------------------------------------------------- /download_scans/download_oasis_scans_wget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_scans/download_oasis_scans_wget.sh -------------------------------------------------------------------------------- /download_scans/oasis_scan_download_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/download_scans/oasis_scan_download_example.csv -------------------------------------------------------------------------------- /session_matchup/oasis_data_matchup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/session_matchup/oasis_data_matchup.R -------------------------------------------------------------------------------- /session_matchup/oasis_data_matchup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NrgXnat/oasis-scripts/HEAD/session_matchup/oasis_data_matchup.py --------------------------------------------------------------------------------