Aan Open-Source Software for Spatio-Temporal Graph Analysis of fMRI data.
Project description
fSTG Toolkit: an Open-Source Software for Spatio-Temporal Graph Analysis of fMRI data
Overview
fSTG Toolkit is an open-source software dedicated to longitudinal analysis of brain connectivity, modeling data as spatio-temporal graphs. It enables the study of dynamics and reorganization of brain regions, primarily using functional MRI (fMRI) data, but is also compatible with any type of connectivity data.
Current main features:
- Building of spatio-temporal graphs from correlation matrices and region definitions.
- Advanced graph metrics computation.
- Interactive visualization of results via a web dashboard.
- Simulation of connectivity patterns and sequences.
- Frequent subgraph pattern mining via SPMiner integration.
Installation
Installation from PyPI
The easiest way to get started is to install the package from PyPI. Make sure you have a Python environment ready with a supported version (see the badge above), then run:
pip install fSTG-Toolkit
To install optional feature sets:
pip install "fSTG-Toolkit[dashboard]" # web dashboard
pip install "fSTG-Toolkit[plot]" # matplotlib plots
pip install "fSTG-Toolkit[frequent]" # frequent pattern mining (requires Docker)
pip install "fSTG-Toolkit[dashboard,plot,frequent]" # everything
Installation from Source
To install from source, create a new environment with the required Python and Poetry binaries. Using conda:
conda env create -n <env_name> -f environment.yml
conda activate <env_name>
Then in the project's root folder, install the dependencies:
poetry install
To install optional feature sets:
poetry install --extras dashboard # web dashboard
poetry install --extras plot # matplotlib plots
poetry install --extras frequent # frequent pattern mining (requires Docker)
poetry install --all-extras # everything
Usage
The CLI tool provides several command groups: graph, plot and dashboard. To see the complete list of commands, run:
python -m fstg_toolkit --help
Use the --help option with any command to get specific help. Some examples and explanations are provided in the next section.
Examples
Build one or multiple graphs
Assume the timeseries of correlation matrices are stored in a numpy pickle file (matrices.npz or matrices.npy) and the definitions of the areas and regions are in a CSV file (areas.csv).
The areas/regions definition must be formatted as follows:
| Id_Area | Name_Area | Name_Region |
|---|---|---|
| 1 | Area1 | Region1 |
| 2 | Area2 | Region1 |
| 3 | Area3 | Region2 |
| 4 | Area4 | Region3 |
Accordingly, the CSV file should look like this:
Id_Area,Name_Area,Name_Region
1,Area1,Region1
2,Area2,Region1
3,Area3,Region2
4,Area4,Region3
To build a spatio-temporal graph from the inputs and save the graph to the archive file my_graph.zip, use the command:
python -m fstg_toolkit graph build -o my_graph.zip areas.csv matrices.npz
The build command also works with multiple sequences of matrices. All sequences stored in a single .npz or .npy will be read. To build sequences from multiple files, input them all:
python -m fstg_toolkit graph build -o my_graphs.zip areas.csv matrices-1.npz matrices-2.npz matrices-3.npz
A correlation threshold can be set with -t (default 0.4):
python -m fstg_toolkit graph build -o my_graph.zip -t 0.5 areas.csv matrices.npz
Calculate metrics
Metrics can be calculated using the metrics command. From a dataset of built spatio-temporal graphs, run:
python -m fstg_toolkit graph metrics my_graphs.zip
The calculated metrics will be inserted in the dataset archive.
Frequent Pattern Mining
Frequent subgraph pattern mining requires Docker and the [frequent] extra. To run the analysis on a dataset:
python -m fstg_toolkit graph frequent my_graphs.zip
The detected frequent patterns will be inserted in the dataset archive and can be explored interactively in the dashboard.
View the results
To visualize a dashboard to explore the processed data from a dataset with the show command, run:
python -m fstg_toolkit dashboard show my_graphs.zip
It will start a local server and open a web browser containing the dashboard, that includes the content of the dataset, the raw matrices, a visualization of the spatio-temporal graphs, etc. An illustration of the dashboard is shown below.
To run a persistent multi-dataset server, use the serve command:
python -m fstg_toolkit dashboard serve <data_path> <upload_path>
Factors and Subjects Detection
If the names of the matrices are formatted, factors and subjects will be automatically detected and can be used to filter the data and choose the display of the plots. The parts of the names must be separated either by underscores (_) or by slashes (/) or a combination of both. For instance, the following names will be correctly parsed:
control_time1_T21;control/time2_T22;group1_time2/T31;group1_time1_T11.
The subjects will be matched to the part that has different values between the names, and the factors will be the parts that are common to multiple names. If a part is similar in all names, it will not be considered. In this case, the subjects are T21, T22, T31, and T11, and the factors are control and group1 for first factor, time1 and time2 for the second factor.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fstg_toolkit-1.1.0.tar.gz.
File metadata
- Download URL: fstg_toolkit-1.1.0.tar.gz
- Upload date:
- Size: 106.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a89e4e02ab6ee8858fda4e851a209e2b4d77cdb823e9a438dae2fda994803b67
|
|
| MD5 |
9025e092e5c2a8e45e801d970d942ada
|
|
| BLAKE2b-256 |
71d1d6d7ceb4397916d64714bd97a346aae5f0df601bfde2b804b2e905320891
|
Provenance
The following attestation bundles were made for fstg_toolkit-1.1.0.tar.gz:
Publisher:
publish.yml on julienpontabry/fstg_toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fstg_toolkit-1.1.0.tar.gz -
Subject digest:
a89e4e02ab6ee8858fda4e851a209e2b4d77cdb823e9a438dae2fda994803b67 - Sigstore transparency entry: 1188983961
- Sigstore integration time:
-
Permalink:
julienpontabry/fstg_toolkit@ced5fbf55129fb6c3569fc581a1dff08de68806a -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/julienpontabry
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ced5fbf55129fb6c3569fc581a1dff08de68806a -
Trigger Event:
release
-
Statement type:
File details
Details for the file fstg_toolkit-1.1.0-py3-none-any.whl.
File metadata
- Download URL: fstg_toolkit-1.1.0-py3-none-any.whl
- Upload date:
- Size: 151.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5c5f3fde11d675cfed870d8d5fa09447d405ff96a94c581f8344603a2bef08a1
|
|
| MD5 |
188bcba2d6451d99b0939fcc0d94d211
|
|
| BLAKE2b-256 |
433d7c7ce1487fc03fcf18952fe7e1bef9d027a73cbd62877267b8c9c4b9ce74
|
Provenance
The following attestation bundles were made for fstg_toolkit-1.1.0-py3-none-any.whl:
Publisher:
publish.yml on julienpontabry/fstg_toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
fstg_toolkit-1.1.0-py3-none-any.whl -
Subject digest:
5c5f3fde11d675cfed870d8d5fa09447d405ff96a94c581f8344603a2bef08a1 - Sigstore transparency entry: 1188983962
- Sigstore integration time:
-
Permalink:
julienpontabry/fstg_toolkit@ced5fbf55129fb6c3569fc581a1dff08de68806a -
Branch / Tag:
refs/tags/v1.1.0 - Owner: https://github.com/julienpontabry
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@ced5fbf55129fb6c3569fc581a1dff08de68806a -
Trigger Event:
release
-
Statement type: