├── .gitignore ├── LICENSE_and_COPYRIGHT ├── MANIFEST.in ├── README.md ├── data ├── __init__.py ├── colortable_and_gcs │ ├── colortable_desikan_killiany.txt │ ├── my_atlas_gcs │ │ ├── myatlasP17_28_lh.gcs │ │ ├── myatlasP17_28_rh.gcs │ │ ├── myatlasP1_16_lh.gcs │ │ ├── myatlasP1_16_rh.gcs │ │ ├── myatlasP29_36_lh.gcs │ │ ├── myatlasP29_36_rh.gcs │ │ ├── myatlas_125_lh.gcs │ │ ├── myatlas_125_rh.gcs │ │ ├── myatlas_250_lh.gcs │ │ ├── myatlas_250_rh.gcs │ │ ├── myatlas_36_lh.gcs │ │ ├── myatlas_36_rh.gcs │ │ ├── myatlas_60_lh.gcs │ │ └── myatlas_60_rh.gcs │ ├── original_color_125_L.txt │ ├── original_color_125_R.txt │ ├── original_color_250_L.txt │ ├── original_color_250_R.txt │ ├── original_color_36_L.txt │ ├── original_color_36_R.txt │ ├── original_color_60_L.txt │ ├── original_color_60_R.txt │ ├── original_color_P17_28_L.txt │ ├── original_color_P17_28_R.txt │ ├── original_color_P1_16_L.txt │ ├── original_color_P1_16_R.txt │ ├── original_color_P29_36_L.txt │ └── original_color_P29_36_R.txt └── parcellation │ └── lausanne2008 │ ├── ParcellationLausanne2008.xls │ ├── README.txt │ ├── resolution1015 │ └── resolution1015.graphml │ ├── resolution150 │ └── resolution150.graphml │ ├── resolution258 │ └── resolution258.graphml │ ├── resolution500 │ └── resolution500.graphml │ └── resolution83 │ └── resolution83.graphml ├── doc ├── ROIv_scale33.png ├── scale125.region_percentage.png ├── scale125.voxelwise_corr.png ├── scale250.region_percentage.png ├── scale250.voxelwise_corr.png ├── scale33.region_percentage.png ├── scale33.voxelwise_corr.png ├── scale60.region_percentage.png ├── scale60.voxelwise_corr.png └── thick1_scale33.png ├── easy_lausanne ├── __init__.py ├── apply_registration.py ├── command.py ├── maskcreation.py ├── registration.py ├── tmp.log └── tmp.log.error ├── scripts ├── atlas_dilate └── easy_lausanne └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE_and_COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/LICENSE_and_COPYRIGHT -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/colortable_and_gcs/colortable_desikan_killiany.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/colortable_desikan_killiany.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlasP17_28_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlasP17_28_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlasP17_28_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlasP17_28_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlasP1_16_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlasP1_16_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlasP1_16_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlasP1_16_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlasP29_36_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlasP29_36_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlasP29_36_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlasP29_36_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_125_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_125_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_125_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_125_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_250_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_250_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_250_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_250_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_36_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_36_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_36_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_36_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_60_lh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_60_lh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/my_atlas_gcs/myatlas_60_rh.gcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/my_atlas_gcs/myatlas_60_rh.gcs -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_125_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_125_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_125_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_125_R.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_250_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_250_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_250_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_250_R.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_36_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_36_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_36_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_36_R.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_60_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_60_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_60_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_60_R.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_P17_28_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_P17_28_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_P17_28_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_P17_28_R.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_P1_16_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_P1_16_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_P1_16_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_P1_16_R.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_P29_36_L.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_P29_36_L.txt -------------------------------------------------------------------------------- /data/colortable_and_gcs/original_color_P29_36_R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/colortable_and_gcs/original_color_P29_36_R.txt -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/ParcellationLausanne2008.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/ParcellationLausanne2008.xls -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/README.txt -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/resolution1015/resolution1015.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/resolution1015/resolution1015.graphml -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/resolution150/resolution150.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/resolution150/resolution150.graphml -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/resolution258/resolution258.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/resolution258/resolution258.graphml -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/resolution500/resolution500.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/resolution500/resolution500.graphml -------------------------------------------------------------------------------- /data/parcellation/lausanne2008/resolution83/resolution83.graphml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/data/parcellation/lausanne2008/resolution83/resolution83.graphml -------------------------------------------------------------------------------- /doc/ROIv_scale33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/ROIv_scale33.png -------------------------------------------------------------------------------- /doc/scale125.region_percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale125.region_percentage.png -------------------------------------------------------------------------------- /doc/scale125.voxelwise_corr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale125.voxelwise_corr.png -------------------------------------------------------------------------------- /doc/scale250.region_percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale250.region_percentage.png -------------------------------------------------------------------------------- /doc/scale250.voxelwise_corr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale250.voxelwise_corr.png -------------------------------------------------------------------------------- /doc/scale33.region_percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale33.region_percentage.png -------------------------------------------------------------------------------- /doc/scale33.voxelwise_corr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale33.voxelwise_corr.png -------------------------------------------------------------------------------- /doc/scale60.region_percentage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale60.region_percentage.png -------------------------------------------------------------------------------- /doc/scale60.voxelwise_corr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/scale60.voxelwise_corr.png -------------------------------------------------------------------------------- /doc/thick1_scale33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/doc/thick1_scale33.png -------------------------------------------------------------------------------- /easy_lausanne/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easy_lausanne/apply_registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/easy_lausanne/apply_registration.py -------------------------------------------------------------------------------- /easy_lausanne/command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/easy_lausanne/command.py -------------------------------------------------------------------------------- /easy_lausanne/maskcreation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/easy_lausanne/maskcreation.py -------------------------------------------------------------------------------- /easy_lausanne/registration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/easy_lausanne/registration.py -------------------------------------------------------------------------------- /easy_lausanne/tmp.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/easy_lausanne/tmp.log -------------------------------------------------------------------------------- /easy_lausanne/tmp.log.error: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/easy_lausanne/tmp.log.error -------------------------------------------------------------------------------- /scripts/atlas_dilate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/scripts/atlas_dilate -------------------------------------------------------------------------------- /scripts/easy_lausanne: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/scripts/easy_lausanne -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattcieslak/easy_lausanne/HEAD/setup.py --------------------------------------------------------------------------------