Brainhack project on exploring the use of connectivity gradients to study cortical hierarchies in autism
Most of the theoretical foundations on the use of gradient can be found [here] (http://www.pnas.org/content/113/44/12574)
In short, Margulies et al. show how the primary connectivity gradient very closely resembles the topology of the default mode network and that there appears to be some hierarchy in this gradient that follows the hierarchy of complexity in cognitive processing (ranging from low-level sensory processing to higher order cognition).
In Autism research there are numerous theories regarding alterations in functional connectivity. Ranging from a global theory suggesting short-range over connectivity and long-range underconnectivity (Belmonte et al. 2004) and more specific examples of specific connection mainly in anterior-posterior connections (Courchesne et al.). From a more cognitive perspective it might be interesting to see if some of this is also represented in some for of disruption in cortical hierarchy. If for example individuals with autism have a strong talent for very detailed functions, but possibly less capacity to intergrate information from different sources/modalities one could hypothesize that the cortical hierarchy might be disrupted.
Thus, in the present project we would like to investigate these cortical hierarchy by looking at the steepness of the connectivity gradient.
Make sure you have anaconda or miniconda installed. This provides you with a good way to manage your python repositories, and allows you to simply install all dependencies for this project by using the provided environment.yml file.
Find it here:
https://conda.io/miniconda.html
You should also have git
installed, since some packages used in this project are only available from github.
If you have both git and miniconda or anaconda installed, start by cloning this repository:
git clone https://github.com/rb643/Autism-Gradients
To manage all the required packages, we’ll create a new conda environment. These environments simply clone your root environment (so they will have everything you normally have installed) and then install packages listed in the environment file only for that environment. If you stop working on this project, you’ll be able to simply delete the environment, and all the packages will be uninstalled.
- Open a terminal or a cmd prompt.
- Change directory (cd) to the repository folder. If you ran
git clone …
(above) in your home folder, the repository should be reachable by typingcd ~/Autism-Gradients
on OSX or Linux. - Create a conda environment from the environment.yml file using the following command:
conda env create -n rbbrainhack -f environment.yml
.- It will ask you if you want to go ahead and install all the packages - simply press
enter
.
- It will ask you if you want to go ahead and install all the packages - simply press
- Then activate this environment:
source activate rbbrainhack
on Linux/OSX,activate rbbrainhack
on Windows.- Whenever you stop working on this, you can type
source deactivate rbbrainhack
to return to your normal python installation, or simply close your terminal and open a new one.
- Whenever you stop working on this, you can type
- Type
jupyter notebook
. This will open a browser window that displays the content of your home directory. Click on the files ending in.ipynb
to open them and run the code!- If you want to run the matlab-based notebooks, you also need to install the MATLAB python engine. Do this by:
- Follow the setup instructions on the matlab docs. This makes matlab commands available to python.
- Type
python -m matlab_kernel install
at the command line. This registers the matlab kernel with jupyter.
- If you want to run the matlab-based notebooks, you also need to install the MATLAB python engine. Do this by:
If you have any issues with the above, simply open an issue on this github repository!