Skip to main content

Python functions and classes to build connectivity graphs and datasets from Freesurfer's brain cortical measurements.

Project description

Pre-commit enabled License Code style: black Checked with mypy isort pyright Python Security Status Ruff Pre-commit checks Unittests Publish package

Avicortex - Brain Connectivity Graph Builder

Python functions and classes to build connectivity graphs and datasets from Freesurfer’s brain cortical measurements.

Installation

Avicortex datasets are written in torch-based classes and return torch-geometric Data objects as data samples. Therefore you need to have a compatible torch-geometric installation along with the torch installation.

$ pip install avicortex

Usage

First, you need to have the output stats table from Freesurfer outputs. A collection of commands can be executed from fs_utils/stats2table.sh file. In later versions, we will provide Python utilities to extract these stats tables as well.

One class is provided for HCP Young Adult dataset but the you need to access data from: https://www.humanconnectome.org/study/hcp-young-adult

>>> from avicortex.datasets import HCPYoungAdultDataset

After you have the table, you can point the path to your dataset as following:

>>> freesurfer_stat_path = "path/to/hcp/outputs"
>>> hcp_dataset_tr = HCPYoungAdultDataset(hemisphere="left", mode="train", freesurfer_out_path=freesurfer_stat_path)

Note that you can select a hemisphere; ‘right’ or ‘left’ and a mode for dataloading; ‘train’, ‘validation’, ‘test’ or ‘inference’, where ‘test’ is for loading the unseen data after your training is finished, and use ‘inference’ as an in-production mode when you do not have the labels but you want to have predictions.

Moreover, you can select a feature set for the source and target graphs that will be returned. Consider graphs in shape: Data(x=[batch_size, n_nodes, n_features], edge_attr=[batch_size, n_edges, n_features]). After the selection, you will have: Data(x=[batch_size, n_nodes, selection_idx], edge_attr=[batch_size, n_edges, selection_idx]). You can specify this while initializing:

>>> hcp_dataset_tr = HCPYoungAdultDataset(hemisphere="left", mode="train", freesurfer_out_path=freesurfer_stat_path, in_view_idx=0, out_view_idx=3)

Now you can put into a torch_geometric dataloader:

>>> from torch_geometric.loader import DataLoader as PygDataLoader
>>> hcp_dataloader_tr = PygDataLoader(hcp_dataset_tr)

Let’s take a look at the first sample:

>>> input_graph, target_graph = next(iter(hcp_dataloader_tr))

Output input_graph and target_graph will belong to the same patient. And you can also access their medical condition as a classification label:

>>> cls_label = target_graph.y

This class might represent different conditions, such as different diseases, age groups, or gender. For example, in HCP Young Adult dataset, label represents patient gender.

Contributing

Contributions are welcome and highly appreciated. Feel free to open issues and pull requests.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

avicortex-0.0.6.tar.gz (470.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

avicortex-0.0.6-py3-none-any.whl (469.3 kB view details)

Uploaded Python 3

File details

Details for the file avicortex-0.0.6.tar.gz.

File metadata

  • Download URL: avicortex-0.0.6.tar.gz
  • Upload date:
  • Size: 470.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for avicortex-0.0.6.tar.gz
Algorithm Hash digest
SHA256 28fa54c1901fc43be803694f47d670b663014b2ef3454e580fb0bf71c50d434c
MD5 7781d585032e26785b3b356a78263d17
BLAKE2b-256 d4cbae99ad6a6af7f1daad2a10b14f5fc58494cdf91b8b23d4f822e93f7dc3cb

See more details on using hashes here.

File details

Details for the file avicortex-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: avicortex-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 469.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for avicortex-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ebe6d4d1e7bba6d4572e310ae1860a174dd70470324254eba6081cf555c714e3
MD5 7c53de7415f978462c15a8f7709ba079
BLAKE2b-256 3cfb3c926a04d6cd019053e787472ee0da17b1334f272b37337ebb0f57024d38

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page