├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── docs ├── _config.yml ├── images │ ├── ca_network.png │ ├── ca_parcels.png │ ├── image.png │ ├── mmp.png │ ├── out1.png │ ├── out2.png │ ├── out3.png │ ├── out3a.png │ ├── out3b.png │ ├── out4.png │ ├── out5.png │ ├── out6.png │ ├── out7.png │ ├── out8.png │ ├── standard.png │ ├── yeo17.png │ └── yeo7.png ├── index.md └── parcellation_labels.md ├── hcp_utils ├── __init__.py ├── data │ ├── S1200.L.flat.32k_fs_LR.surf.gii │ ├── S1200.L.inflated_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.L.midthickness_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.L.pial_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.L.sphere.32k_fs_LR.surf.gii │ ├── S1200.L.very_inflated_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.L.white_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.R.flat.32k_fs_LR.surf.gii │ ├── S1200.R.inflated_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.R.midthickness_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.R.pial_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.R.sphere.32k_fs_LR.surf.gii │ ├── S1200.R.very_inflated_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.R.white_MSMAll.32k_fs_LR.surf.gii │ ├── S1200.sulc_MSMAll.32k_fs_LR.dscalar.nii │ ├── ca_network_1.1.npz │ ├── ca_parcels_1.1.npz │ ├── cortical_adjacency.npz │ ├── fMRI_vertex_info_32k.npz │ ├── mmp_1.0.npz │ ├── standard.npz │ ├── yeo17.npz │ └── yeo7.npz └── hcp_utils.py ├── images └── image.png ├── prepare ├── README.md ├── prepare_adjacency.py ├── prepare_ca.py ├── prepare_mmp.py ├── prepare_standard.py └── prepare_yeo.py ├── setup.py └── source_data ├── CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_netassignments_LR.dlabel.nii ├── CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_parcels_LR.dlabel.nii ├── Q1-Q6_RelatedValidation210.CorticalAreas_dil_Final_Final_Areas_Group_Colors.32k_fs_LR.dlabel.nii ├── README.md ├── RSN-networks.32k_fs_LR.dlabel.nii └── RSN.dlabel.nii /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | notebooks 3 | build 4 | dist 5 | hcp_utils.egg-info 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/images/ca_network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/ca_network.png -------------------------------------------------------------------------------- /docs/images/ca_parcels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/ca_parcels.png -------------------------------------------------------------------------------- /docs/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/image.png -------------------------------------------------------------------------------- /docs/images/mmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/mmp.png -------------------------------------------------------------------------------- /docs/images/out1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out1.png -------------------------------------------------------------------------------- /docs/images/out2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out2.png -------------------------------------------------------------------------------- /docs/images/out3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out3.png -------------------------------------------------------------------------------- /docs/images/out3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out3a.png -------------------------------------------------------------------------------- /docs/images/out3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out3b.png -------------------------------------------------------------------------------- /docs/images/out4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out4.png -------------------------------------------------------------------------------- /docs/images/out5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out5.png -------------------------------------------------------------------------------- /docs/images/out6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out6.png -------------------------------------------------------------------------------- /docs/images/out7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out7.png -------------------------------------------------------------------------------- /docs/images/out8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/out8.png -------------------------------------------------------------------------------- /docs/images/standard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/standard.png -------------------------------------------------------------------------------- /docs/images/yeo17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/yeo17.png -------------------------------------------------------------------------------- /docs/images/yeo7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/images/yeo7.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/parcellation_labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/docs/parcellation_labels.md -------------------------------------------------------------------------------- /hcp_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/__init__.py -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.flat.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.flat.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.inflated_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.inflated_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.midthickness_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.midthickness_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.pial_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.pial_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.sphere.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.sphere.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.very_inflated_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.very_inflated_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.L.white_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.L.white_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.flat.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.flat.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.inflated_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.inflated_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.midthickness_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.midthickness_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.pial_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.pial_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.sphere.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.sphere.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.very_inflated_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.very_inflated_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.R.white_MSMAll.32k_fs_LR.surf.gii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.R.white_MSMAll.32k_fs_LR.surf.gii -------------------------------------------------------------------------------- /hcp_utils/data/S1200.sulc_MSMAll.32k_fs_LR.dscalar.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/S1200.sulc_MSMAll.32k_fs_LR.dscalar.nii -------------------------------------------------------------------------------- /hcp_utils/data/ca_network_1.1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/ca_network_1.1.npz -------------------------------------------------------------------------------- /hcp_utils/data/ca_parcels_1.1.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/ca_parcels_1.1.npz -------------------------------------------------------------------------------- /hcp_utils/data/cortical_adjacency.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/cortical_adjacency.npz -------------------------------------------------------------------------------- /hcp_utils/data/fMRI_vertex_info_32k.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/fMRI_vertex_info_32k.npz -------------------------------------------------------------------------------- /hcp_utils/data/mmp_1.0.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/mmp_1.0.npz -------------------------------------------------------------------------------- /hcp_utils/data/standard.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/standard.npz -------------------------------------------------------------------------------- /hcp_utils/data/yeo17.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/yeo17.npz -------------------------------------------------------------------------------- /hcp_utils/data/yeo7.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/data/yeo7.npz -------------------------------------------------------------------------------- /hcp_utils/hcp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/hcp_utils/hcp_utils.py -------------------------------------------------------------------------------- /images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/images/image.png -------------------------------------------------------------------------------- /prepare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/prepare/README.md -------------------------------------------------------------------------------- /prepare/prepare_adjacency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/prepare/prepare_adjacency.py -------------------------------------------------------------------------------- /prepare/prepare_ca.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/prepare/prepare_ca.py -------------------------------------------------------------------------------- /prepare/prepare_mmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/prepare/prepare_mmp.py -------------------------------------------------------------------------------- /prepare/prepare_standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/prepare/prepare_standard.py -------------------------------------------------------------------------------- /prepare/prepare_yeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/prepare/prepare_yeo.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/setup.py -------------------------------------------------------------------------------- /source_data/CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_netassignments_LR.dlabel.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/source_data/CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_netassignments_LR.dlabel.nii -------------------------------------------------------------------------------- /source_data/CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_parcels_LR.dlabel.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/source_data/CortexSubcortex_ColeAnticevic_NetPartition_wSubcorGSR_parcels_LR.dlabel.nii -------------------------------------------------------------------------------- /source_data/Q1-Q6_RelatedValidation210.CorticalAreas_dil_Final_Final_Areas_Group_Colors.32k_fs_LR.dlabel.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/source_data/Q1-Q6_RelatedValidation210.CorticalAreas_dil_Final_Final_Areas_Group_Colors.32k_fs_LR.dlabel.nii -------------------------------------------------------------------------------- /source_data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/source_data/README.md -------------------------------------------------------------------------------- /source_data/RSN-networks.32k_fs_LR.dlabel.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/source_data/RSN-networks.32k_fs_LR.dlabel.nii -------------------------------------------------------------------------------- /source_data/RSN.dlabel.nii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rmldj/hcp-utils/HEAD/source_data/RSN.dlabel.nii --------------------------------------------------------------------------------