Skip to main content

Python bindings for ORCA (ORbit Counting Algorithm) - graphlet counting

Project description

ORCA Python Package

A Python wrapper for the ORCA (ORbit Counting Algorithm) library for graphlet analysis in networks.

Original ORCA Algorithm: Tomaz Hocevar
Python Bindings: Ole Petersen (peteole2707@gmail.com)

ORCA is an efficient algorithm for counting graphlets in networks. It computes node- and edge-orbits (of 4- and 5-node graphlets) for each node in the network.

Installation

pip install orca-graphlets

Note: This package provides pre-built wheels for Linux (x86_64), macOS (x86_64, arm64), and Windows (x64) for Python 3.8+. No compilation required!

Usage

import numpy as np
import orca

# Define a simple graph as edge list
edges = np.array([
    [0, 1],
    [1, 2], 
    [2, 0],
    [0, 3]
], dtype=np.int32)

n_nodes = 4

# Count 4-node graphlet orbits for each node
node_orbits = orca.count_node_orbits(edges, n_nodes, graphlet_size=4)
print("Node orbits shape:", node_orbits.shape)  # (4, 15) for 4 nodes, 15 orbits

# Count 4-node graphlet orbits for each edge  
edge_orbits = orca.count_edge_orbits(edges, n_nodes, graphlet_size=4)
print("Edge orbits shape:", edge_orbits.shape)  # (4, 11) for 4 edges, 11 orbits

# You can also use the general function
node_orbits_alt = orca.count_orbits("node", 4, edges, n_nodes)

API Reference

count_node_orbits(edges, n_nodes, graphlet_size=4)

Count node orbits in a graph.

Parameters:

  • edges: numpy array of shape (n_edges, 2) with node indices
  • n_nodes: number of nodes in the graph
  • graphlet_size: size of graphlets to count (4 or 5)

Returns:

  • numpy array of shape (n_nodes, n_orbits) with orbit counts

count_edge_orbits(edges, n_nodes, graphlet_size=4)

Count edge orbits in a graph.

Parameters:

  • edges: numpy array of shape (n_edges, 2) with node indices
  • n_nodes: number of nodes in the graph
  • graphlet_size: size of graphlets to count (4 or 5)

Returns:

  • numpy array of shape (n_edges, n_orbits) with orbit counts

count_orbits(orbit_type, graphlet_size, edges, n_nodes)

General function to count orbits.

Parameters:

  • orbit_type: "node" or "edge"
  • graphlet_size: 4 or 5
  • edges: numpy array of shape (n_edges, 2)
  • n_nodes: number of nodes

Returns:

  • numpy array with orbit counts

About ORCA

ORCA (ORbit Counting Algorithm) is a tool for counting graphlets and their orbits in networks. Graphlets are small connected subgraphs, and orbits represent different structural roles that nodes or edges can have within these graphlets.

This is useful for:

  • Network analysis and comparison
  • Node importance ranking
  • Graph classification
  • Biological network analysis

Original Implementation

This package provides Python bindings for the original ORCA implementation by Tomaz Hocevar: https://github.com/thocevar/orca

License

This package is licensed under GPL-3.0, maintaining compatibility with the original ORCA implementation.

Requirements

  • Python 3.8+
  • NumPy

Development

This package uses uv for package management and development.

Quick Start

# Install uv if you don't have it
curl -LsSf https://astral.sh/uv/install.sh | sh

# Clone the repository
git clone https://github.com/peteole/orca-python
cd orca-python

# Create virtual environment and install dependencies
uv venv --python 3.11
source .venv/bin/activate
uv pip install -r requirements-dev.txt

# Build the package
make build

# Run tests
make test

# Run example
make example

Available Commands

make help          # Show all available commands
make dev           # Install development dependencies  
make build         # Build package for development
make test          # Run tests
make wheel         # Build wheel
make clean         # Clean build artifacts
make ci-wheels     # Build wheels for all platforms (Linux, macOS, Windows)

Building Cross-Platform Wheels

This package uses cibuildwheel to build wheels for multiple platforms:

# Build wheels for all platforms (requires Docker for Linux builds)
make ci-wheels

# Or run cibuildwheel directly
uv run python -m cibuildwheel --output-dir wheelhouse

The wheels are automatically built for:

  • Linux: manylinux_2_28_x86_64 (Python 3.8-3.12)
  • macOS: x86_64 and arm64 (Python 3.8-3.12)
  • Windows: x64 (Python 3.8-3.12)

Citation

If you use this software in your research, please cite the original ORCA paper:

Tomaz Hocevar and Janez Demsar. A combinatorial approach to graphlet counting. Bioinformatics, 2014. DOI: 10.1093/bioinformatics/btu245

Credits

  • Original ORCA Algorithm: Tomaz Hocevar - GitHub
  • Python Bindings: Ole Petersen (peteole2707@gmail.com) - Created modern pybind11-based Python bindings with NumPy integration

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

orca_graphlets-0.1.1.tar.gz (215.5 kB view details)

Uploaded Source

Built Distributions

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

orca_graphlets-0.1.1-cp312-cp312-win_amd64.whl (110.5 kB view details)

Uploaded CPython 3.12Windows x86-64

orca_graphlets-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

orca_graphlets-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (128.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

orca_graphlets-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (113.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

orca_graphlets-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl (123.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

orca_graphlets-0.1.1-cp311-cp311-win_amd64.whl (109.2 kB view details)

Uploaded CPython 3.11Windows x86-64

orca_graphlets-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

orca_graphlets-0.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (126.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

orca_graphlets-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (112.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

orca_graphlets-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl (121.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

orca_graphlets-0.1.1-cp310-cp310-win_amd64.whl (108.6 kB view details)

Uploaded CPython 3.10Windows x86-64

orca_graphlets-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

orca_graphlets-0.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (125.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

orca_graphlets-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (111.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

orca_graphlets-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl (120.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

orca_graphlets-0.1.1-cp39-cp39-win_amd64.whl (108.6 kB view details)

Uploaded CPython 3.9Windows x86-64

orca_graphlets-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

orca_graphlets-0.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (125.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

orca_graphlets-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (111.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

orca_graphlets-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl (120.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

orca_graphlets-0.1.1-cp38-cp38-win_amd64.whl (108.4 kB view details)

Uploaded CPython 3.8Windows x86-64

orca_graphlets-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

orca_graphlets-0.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (124.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

orca_graphlets-0.1.1-cp38-cp38-macosx_11_0_arm64.whl (110.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

orca_graphlets-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl (119.7 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file orca_graphlets-0.1.1.tar.gz.

File metadata

  • Download URL: orca_graphlets-0.1.1.tar.gz
  • Upload date:
  • Size: 215.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.13

File hashes

Hashes for orca_graphlets-0.1.1.tar.gz
Algorithm Hash digest
SHA256 069ea283c2bd7bb1b5d3f7c324467e9b6405949d7fd9b069579a9b91c13da5c6
MD5 84765cdbd562c49e1c09945140f4bb21
BLAKE2b-256 1ac263b8947b9eff81b5671b8e52902909cbddeb8e6cdfa2c8700b128ff3d006

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3750f519a695578bb710fc2092d045309eb534f1ea60b32af7b1ecdf86f14fb6
MD5 1019b38aa6fc6672023537b8d2ec862f
BLAKE2b-256 a87a00b9f124f1093a6b6b16717f72b25b84dbb844ec6aed345aadf5bf5e754e

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a0cd9b604b974e2be245c415ce2418d60bb71eaf41dfda4f0e079157a20614c
MD5 019a3c927c08fd77199f07c65306c55b
BLAKE2b-256 6352adbf39d95faeaeb59a998af8e4ce9d527f3fc2e26e3885517b3565048089

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65a3ec0bef1317d5dc485adb9e490663db6a78aa8bceb181bb0f60aeb6069e01
MD5 a250cd7557fac8c22b62ee77f0c618ea
BLAKE2b-256 15159204aa0eccce4ba362caef9ced292bac71b7b3e2cdcfa5f3d7ba47858b47

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7f2bd5104d1707d3e21fbcc6896613ea16e558c83f0de4066a27c4323586633
MD5 80b03e21122031aa4152f4420ae2312f
BLAKE2b-256 68a6fade9746e35e20b0438da2b91f1923edee6bc5c9ae9a3b9cdc4570cd7ad5

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8ff185a20e0bef7a9b8a07093c97687e4a9f7dab386f7717bcaf6b8947eb4c81
MD5 6142c539dd98667d1dc44565efe507ea
BLAKE2b-256 729080feb228d16106b2b4c1e5bf0b5c02601a2c9f88435b1eb668b8c6bba040

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 82d4c26c7f2332ee34d4eec4da5eed1a5f28111044e753f33e3ad9de1764129f
MD5 c8f3593363b806aa44588aa752c36ca7
BLAKE2b-256 cc168d8e60517a6487995d59d0a2d1033a68fad82ade4b17ef91c17bb12862fa

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 adf7a31e1fb07c69f24724da3f930d3f3ab907acfd063553c5aa2e4c57d0bcef
MD5 414e9207553735fa9a43184f1cf3b773
BLAKE2b-256 c67a7c1cc6b32c18ee0c93f6521f99b1f4a99189c24750373340c48bc150491b

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4053644f88095bae2f402f98fc32401b3be7d11ebfb9cd3517cc9ef93515b45a
MD5 99060282deae1052c1f2319c5c524766
BLAKE2b-256 64800fe650049f10023290ddd1ce54b91ae61471bbf73dc4a4c3146d079bd4d2

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b4be7fefb95d6859d1978a8d39036b2120a4d6179588ff562e1c260c8857f8
MD5 9cbc7c284797fbca2551adf2ba7dacb6
BLAKE2b-256 c85b6e9b0034523ec3039ca69b2d8cb27cb7c5316d2b4218eafb19c492faf257

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be8479c0db35d4a96b00f8c1db72e280b0aa903e8012c920cf747c0736606850
MD5 dd553523dab509fc07e88764e7d07240
BLAKE2b-256 17027a0bc9430e9bb0f9b07277c00365bca969fb86fdf7d0636e6cbc6b2c9469

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3c6fbd1f4e5630efb4ec318817abc1952893a4d62f31da36586ffcab12ad21dd
MD5 b3504ade907e0844ea6530891e306c0e
BLAKE2b-256 5a666e7024d58a86fce882c3629c843aba8c35567ddf05635467725027dd5143

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2da7ee3ef0de0e704c08538ffe7464dba4e33b0e841b273242c2bee24c3a8025
MD5 6e3d475e6cf08e623f4a23827a4b4803
BLAKE2b-256 7e8974c013e84a440a844350216447ad61cf610beaf5a7860cd7951c0787964e

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31864cb131e710ba57a961c49d5851f66440a6951d67f27d8f25c0bc25cb3374
MD5 235ebd676a592ed8fd5daee3d374880e
BLAKE2b-256 7491b1b15cb77a09506b5087907688e3b748551a670e4f3240c9cb30dfd79c21

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95c4df1276d7b2a75ea37754ff59af2addf07d71290c3f72d87225b41060efd7
MD5 47da10c13f8efee0805941c01fb4405f
BLAKE2b-256 01ef951b994eca4ae18f22bf49eb7790d781abd774f3bc25290df499b4bbd0dd

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd8983549e2f436801ca0dd8b5aefe5d310e147b4d7bbc7a674b2d6c83f1358b
MD5 3463468d9269728e150f9cfe7c00d554
BLAKE2b-256 4c95a07ce871c8be4e82a736592345afb2f78d73641bc5ad0bae11ca0bbd5c35

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 835620e628a196eaef9f7f839194ad62ac51e059ca30d6496ae50cdc71d4f776
MD5 f4df43bc05e90c0a43572b705045b83c
BLAKE2b-256 904e0daef9eea9ae2467855595401f8435890bbe54d17a9f902565791c13105d

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9dc9edcf32f22971ba2d86f05d8478a7e0bd708d1b4dcdcd3afd23fab3bdb87b
MD5 130551469f05d274c68d54f9616f1a9f
BLAKE2b-256 a25c45800d2dbaa8a49e8bab3a1a587f7dc4cf82a99d4a4715c81a798f16f30a

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8384839072739d1e6bdaf94c4ce419948299ddf7dd3d51c8aea45df0435ea49f
MD5 8cc9b88b7bfb3ab78d2cf42cb91fb523
BLAKE2b-256 4fe08bc4f47e963cd18276fd13b61f04753f40a6f77b24ec62e06bf8d6abe180

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e8effe11e41f7f508711f0938dac670d6d5d0dab5d6e35b43ea035e2fd32ca4
MD5 344a688b6002d44b74a04b2e02abbaf8
BLAKE2b-256 0d4726f0e8a36e8c8056b35e96f0a0edc8cef257a21bb5830d3a813b67cb379d

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9fa8b65a70a4ea5177e9c0bf1bce0c742a428db5e5993450da61499475720ed5
MD5 b7954ff0ccdaf45d31dfc174699108e2
BLAKE2b-256 e7766374b5c590b8d8f556648a824d45651669b50a6b9b585048f705f54e307d

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 727a0209edc6e88283ec8d10613c0844109008afbedeb368a07383415debe04a
MD5 eec4205c3f0a0b3d5487a57743d164ce
BLAKE2b-256 2ceccd969d9890ce2d7a5db371e90fcc5964ce4b13edb4cb61a6abaa231ee5a8

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c22ad6a3044dec77760659035778eef5de6ac726e3b6471ac838608499c323f
MD5 e7eb35178aa62aae93ebb4d6d2128eda
BLAKE2b-256 662b2cd88cc067f6aacc128f23fc371d704eebd4e4b2951d087cdf474aa86c4a

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 51f6647a597c502c8594f2de83f9cc4710cd5b70f8d474db5476e2a7a4955df3
MD5 45ffe545c1d0693f93bb2e1a75867d10
BLAKE2b-256 1c078a2bdcd3b8e02b79a826b7a0eb2f1d214d2b7ed27d94021d2b5c044cee9a

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91b9bfdfc2c3875e18a962466146a492c9e72af4f8838c35a95c43ddb77a3c68
MD5 462cf26591e932ba4ee716791e936490
BLAKE2b-256 24d56a015a04a287e777046aa92636bbdc3e3537792d95fee4e4a35cf8ac73ca

See more details on using hashes here.

File details

Details for the file orca_graphlets-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for orca_graphlets-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3afa57e336b6db49f13f211ba3e941b8d15ea33ad3b05cf4cb0caef4e231970c
MD5 f37ca0283045dfbda17b49237b2199d8
BLAKE2b-256 06870ec3233f9a2582dc6a8be044dcb9f9c69a1f608d61138d2344bbcb89fcd9

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