Skip to content

Toolbox for normative modelling and spatial inference of neuroimaging data. https://pcntoolkit.readthedocs.io/en/latest/

License

Notifications You must be signed in to change notification settings

wwu-mmll/PCNtoolkit

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Predictive Clinical Neuroscience Toolkit

Gitter Documentation Status DOI

Predictive Clinical Neuroscience software toolkit (formerly nispat).

Methods for normative modelling, spatial statistics and pattern recognition. Documentation, including tutorials can be found on readthedocs. Click on the docs button above to visit the site.

Basic installation (on a local machine)

i) install anaconda3 ii) create enviornment with "conda create --name <env_name>" iii) activate environment by "source activate <env_name>" iv) install required conda packages

conda install pip pandas scipy

v) install PCNtoolkit (plus dependencies)

pip install pcntoolkit

Alternative installation (on a shared resource)

Make sure conda is available on the system. Otherwise install it first from https://www.anaconda.com/

conda --version

Create a conda environment in a shared location

conda create -y python==3.8.3 numpy mkl blas --prefix=/shared/conda/<env_name>

Activate the conda environment

conda activate /shared/conda/<env_name>

Install other dependencies

conda install -y pandas scipy 

Install pip dependencies

pip --no-cache-dir install nibabel sklearn torch glob3 

Clone the repo

git clone https://github.com/amarquand/PCNtoolkit.git

install in the conda environment

cd PCNtoolkit/
python3 setup.py install

Test

python -c "import pcntoolkit as pk;print(pk.__file__)"

Quickstart usage

For normative modelling, functionality is handled by the normative.py script, which can be run from the command line, e.g.

# python normative.py -c /path/to/training/covariates -t /path/to/test/covariates -r /path/to/test/response/variables /path/to/my/training/response/variables

For more information, please see the following resources:

About

Toolbox for normative modelling and spatial inference of neuroimaging data. https://pcntoolkit.readthedocs.io/en/latest/

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.6%
  • MATLAB 0.4%