Skip to main content

A Python library for brain connectivity analysis and visualization

Project description

CoBRA: Connectivity Brain Regional Analysis

A comprehensive Python library for analyzing cortical brain region connectivity using correlation matrices, hierarchical clustering, and network visualization.

Features

  • Connectivity Matrix Analysis: Process and analyze correlation matrices between brain regions
  • Hierarchical Clustering: Identify clusters of functionally related brain regions
  • Network Visualization: Create publication-ready network graphs with flexible customization
  • Statistical Analysis: Comprehensive cluster statistics and connectivity metrics

Installation

pip install cobra-brain

Quick Start

import numpy as np
from cobra import clustering, visualization, network

# Load your connectivity matrix and region names
connectivity_matrix = np.load('your_connectivity_matrix.npy')
regions = ['region1', 'region2', ...]  # List of region names

# Perform clustering analysis
cluster_labels, reordered_matrix, reordered_regions = clustering.create_main_clustering_visualization(
    connectivity_matrix, regions, n_clusters=8
)

# Create network visualization
G, pos = network.make_network_graph(
    connectivity_matrix, regions, cluster_labels,
    threshold=0.5, layout_type='spring'
)

# Generate cluster summary
clustering.plot_cluster_summary(regions, cluster_labels)

Core Components

Clustering (cobra.clustering)

  • prepare_clustering_data(): Prepare correlation matrices for hierarchical clustering
  • create_clustered_correlation_matrix(): Generate clustered heatmaps
  • analyze_clusters(): Statistical analysis of identified clusters
  • plot_cluster_summary(): Visual cluster assignments

Network Analysis (cobra.network)

  • make_network_graph(): Create network graphs with customizable layouts
  • Multiple layout algorithms: spring, circular, force-atlas, kamada-kawai
  • Flexible node coloring: by cluster, degree, betweenness centrality
  • Adjustable edge filtering and styling

Advanced Usage

Custom Clustering

# Custom number of clusters with color coding
region_colors = clustering.generate_example_colors(regions, 'network')
cluster_labels = clustering.create_main_clustering_visualization(
    connectivity_matrix, regions, 
    n_clusters=6, 
    region_colors=region_colors,
    label_interval=10
)

Network Graph Customization

# Create a clean, minimal network
G, pos = network.make_network_graph(
    connectivity_matrix, regions, cluster_labels,
    threshold=0.6,
    cleanliness='minimal',
    color_by='degree',
    layout_type='spring'
)

# Publication-ready labeled version
G, pos = network.make_network_graph(
    connectivity_matrix, regions, cluster_labels,
    cleanliness='labeled',
    save_path='brain_network.png'
)

Statistical Analysis

# Detailed cluster analysis
clustering.analyze_clusters(connectivity_matrix, regions, cluster_labels)

# Original vs clustered matrix comparison
visualization.plot_original_correlation_matrix(
    connectivity_matrix, regions, 
    region_colors=region_colors
)

Requirements

  • Python >= 3.7
  • NumPy >= 1.19.0
  • SciPy >= 1.5.0
  • Matplotlib >= 3.3.0
  • NetworkX >= 2.5
  • scikit-learn >= 0.23.0

Data Format

CoBRA expects:

  • Connectivity Matrix: Square correlation matrix (n_regions × n_regions)
  • Region Names: List of strings identifying each brain region
  • Values: Correlation coefficients typically range from -1 to 1

Examples

The examples/ directory contains:

  • basic_usage.py: Simple workflow demonstration
  • sample_data.py: Generate synthetic brain connectivity data for testing

License

This project is licensed under the MIT License - see the LICENSE file for details.

Citation

If you use CoBRA in your research, please cite:

@software{cobra,
  title={CoBRA: Cortical Brain Region Analysis},
  author={Sidd Lokray},
  year={2025},
  url={https://github.com/siddlokray/cobra}
}

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Support

For questions and issues, please open an issue on GitHub or contact [siddharthlokray@dgmail.com].

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

cobra_brain-1.0.1.tar.gz (20.8 kB view details)

Uploaded Source

Built Distribution

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

cobra_brain-1.0.1-py3-none-any.whl (12.3 kB view details)

Uploaded Python 3

File details

Details for the file cobra_brain-1.0.1.tar.gz.

File metadata

  • Download URL: cobra_brain-1.0.1.tar.gz
  • Upload date:
  • Size: 20.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cobra_brain-1.0.1.tar.gz
Algorithm Hash digest
SHA256 7fcd9e91b4239993f6a35eaec85c2d9e443347add1d71684b5f2cc275db538da
MD5 260b63368db164f61d6036a40754a8f3
BLAKE2b-256 a38316ae55c9532500603e421b4d88549b6a61865a647c9ba70b43aa8d5cc017

See more details on using hashes here.

Provenance

The following attestation bundles were made for cobra_brain-1.0.1.tar.gz:

Publisher: workflow.yml on siddlokray/cobra

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cobra_brain-1.0.1-py3-none-any.whl.

File metadata

  • Download URL: cobra_brain-1.0.1-py3-none-any.whl
  • Upload date:
  • Size: 12.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for cobra_brain-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 80bbd3618606345f035ef4b365f87ce897ab50860fa7e0140624a3338baacc86
MD5 d659648944de73ca8c28ff224aaea325
BLAKE2b-256 eee869f2c4898648a150b9bea37518c01f55ba1d78b175f1d3dd8acdc5b7cfd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cobra_brain-1.0.1-py3-none-any.whl:

Publisher: workflow.yml on siddlokray/cobra

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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