Skip to content

itellaetxe/compneuro_tools

Repository files navigation

CompNeuro Tools

PyPI version

My personal collection of simple yet useful "brain gardening tools" for my PhD works in CompNeuroBilbaoLab!

Requirements

Use Linux or MacOS. I work with WSL2 in Windows with a Debian distro, and it works fine.

  • Python 3.11 or higher
  • FSL 6.0 or higher
  • AFNI 25.0.09 'Severus Alexander' or higher. I recommend putting it in an apptainer image as it is a bit tricky to install in some systems. You can get it running this command, (assuming you have apptainer installed):
    apptainer build AFNI.sif docker://afni/afni_make_build:AFNI_25.0.09
    Then set you environment variable $AFNI_IMAGE_PATH to the path of the image.

Tools

Each CLI tool has a --help option that will show you how to use it. You can also check the code for more details.

  • fit_glm --> Since I do not trust how FSL fits GLMs and sometimes the documentation is a bit lacking, here you go. I use it for fitting my GLMs. Works with design matrices and contrast matrices in .txt format (not in FSL's format!). This code is largely based on Ibai Diez's MATLAB code (thank you Ibai for letting me write my own Python version c:). The list of output files, for each contrast:

    • residuals.nii.gz --> Residuals of the fitting
    • betas.nii.gz --> Beta coefficients of the fitting
    • Tstat.nii.gz --> T-statistic of the specific contrast
    • Zstat.nii.gz --> Z-statistic of the specific contrast
    • uncorr_pvals_negative.nii.gz --> Uncorrected p-values of the specific contrast (negative)
    • uncorr_pvals_positive.nii.gz --> Uncorrected p-values of the specific contrast (positive)
  • cluster_correction_mc --> Correct the clusters in your statistical maps using Monte Carlo simulations. I use it for correcting clusters in my statistical maps after running fit_glm. Uses AFNI for:

    1. estimating the smoothness of your residuals.
    2. running the Monte Carlo simulations based on the smoothness to estimate the critical cluster sizes according to a set of p-values.
    3. correcting the clusters in your statistical maps using the critical cluster sizes.
  • match_groups_in_table --> (WIP) If you have two groups (in the same dataframe) and want to match them based on a continuous variable. I use it for age matching. It makes an initial match taking participants from the majority group until it arrives to the number of participants in the minority group. Then, it keeps adding the closest participants from the majority group and making statistical tests until it arrives to statistical significance. It returns a dataframe with the matched participants.

  • atlas_overlap --> Informs about the overlap between a binary mask and a given atlas. I use it for checking the overlap between my statistically significant cluster masks and atlases of interest. It returns a dataframe with the overlap between the binary mask and each region in the atlas in percentage and in number of voxels.

Installation (User)

You can install the package using pip, as it is available on PyPI:

pip install compneuro-tools

We like to use uv for managing our Python environments. If you want to install the package using uv, you can do it like this:

uv pip install compneuro-tools

Installation (Developer)

  1. Clone this repo.
  2. Install uv (see how to install it in the uv documentation)
  3. Create a virtual environment in the repo folder with uv: uv venv .venv (minimum python version is 3.11)
  4. Activate the virtual environment: source .venv/bin/activate
  5. Install the dependencies: uv sync (or if you prefer uv pip install -e <path_to_this_repo>)
  6. Done :)

How to use the package

You can find a comprehensive tutorial here

About

My tools for neuroimaging

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages