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 indicesn_nodes: number of nodes in the graphgraphlet_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 indicesn_nodes: number of nodes in the graphgraphlet_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 5edges: 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
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 Distributions
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 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
069ea283c2bd7bb1b5d3f7c324467e9b6405949d7fd9b069579a9b91c13da5c6
|
|
| MD5 |
84765cdbd562c49e1c09945140f4bb21
|
|
| BLAKE2b-256 |
1ac263b8947b9eff81b5671b8e52902909cbddeb8e6cdfa2c8700b128ff3d006
|
File details
Details for the file orca_graphlets-0.1.1-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 110.5 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3750f519a695578bb710fc2092d045309eb534f1ea60b32af7b1ecdf86f14fb6
|
|
| MD5 |
1019b38aa6fc6672023537b8d2ec862f
|
|
| BLAKE2b-256 |
a87a00b9f124f1093a6b6b16717f72b25b84dbb844ec6aed345aadf5bf5e754e
|
File details
Details for the file orca_graphlets-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a0cd9b604b974e2be245c415ce2418d60bb71eaf41dfda4f0e079157a20614c
|
|
| MD5 |
019a3c927c08fd77199f07c65306c55b
|
|
| BLAKE2b-256 |
6352adbf39d95faeaeb59a998af8e4ce9d527f3fc2e26e3885517b3565048089
|
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
- Download URL: orca_graphlets-0.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 128.4 kB
- Tags: CPython 3.12, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
65a3ec0bef1317d5dc485adb9e490663db6a78aa8bceb181bb0f60aeb6069e01
|
|
| MD5 |
a250cd7557fac8c22b62ee77f0c618ea
|
|
| BLAKE2b-256 |
15159204aa0eccce4ba362caef9ced292bac71b7b3e2cdcfa5f3d7ba47858b47
|
File details
Details for the file orca_graphlets-0.1.1-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 113.9 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7f2bd5104d1707d3e21fbcc6896613ea16e558c83f0de4066a27c4323586633
|
|
| MD5 |
80b03e21122031aa4152f4420ae2312f
|
|
| BLAKE2b-256 |
68a6fade9746e35e20b0438da2b91f1923edee6bc5c9ae9a3b9cdc4570cd7ad5
|
File details
Details for the file orca_graphlets-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 123.0 kB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8ff185a20e0bef7a9b8a07093c97687e4a9f7dab386f7717bcaf6b8947eb4c81
|
|
| MD5 |
6142c539dd98667d1dc44565efe507ea
|
|
| BLAKE2b-256 |
729080feb228d16106b2b4c1e5bf0b5c02601a2c9f88435b1eb668b8c6bba040
|
File details
Details for the file orca_graphlets-0.1.1-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 109.2 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82d4c26c7f2332ee34d4eec4da5eed1a5f28111044e753f33e3ad9de1764129f
|
|
| MD5 |
c8f3593363b806aa44588aa752c36ca7
|
|
| BLAKE2b-256 |
cc168d8e60517a6487995d59d0a2d1033a68fad82ade4b17ef91c17bb12862fa
|
File details
Details for the file orca_graphlets-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
adf7a31e1fb07c69f24724da3f930d3f3ab907acfd063553c5aa2e4c57d0bcef
|
|
| MD5 |
414e9207553735fa9a43184f1cf3b773
|
|
| BLAKE2b-256 |
c67a7c1cc6b32c18ee0c93f6521f99b1f4a99189c24750373340c48bc150491b
|
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
- Download URL: orca_graphlets-0.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 126.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4053644f88095bae2f402f98fc32401b3be7d11ebfb9cd3517cc9ef93515b45a
|
|
| MD5 |
99060282deae1052c1f2319c5c524766
|
|
| BLAKE2b-256 |
64800fe650049f10023290ddd1ce54b91ae61471bbf73dc4a4c3146d079bd4d2
|
File details
Details for the file orca_graphlets-0.1.1-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 112.7 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
57b4be7fefb95d6859d1978a8d39036b2120a4d6179588ff562e1c260c8857f8
|
|
| MD5 |
9cbc7c284797fbca2551adf2ba7dacb6
|
|
| BLAKE2b-256 |
c85b6e9b0034523ec3039ca69b2d8cb27cb7c5316d2b4218eafb19c492faf257
|
File details
Details for the file orca_graphlets-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 121.8 kB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be8479c0db35d4a96b00f8c1db72e280b0aa903e8012c920cf747c0736606850
|
|
| MD5 |
dd553523dab509fc07e88764e7d07240
|
|
| BLAKE2b-256 |
17027a0bc9430e9bb0f9b07277c00365bca969fb86fdf7d0636e6cbc6b2c9469
|
File details
Details for the file orca_graphlets-0.1.1-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 108.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c6fbd1f4e5630efb4ec318817abc1952893a4d62f31da36586ffcab12ad21dd
|
|
| MD5 |
b3504ade907e0844ea6530891e306c0e
|
|
| BLAKE2b-256 |
5a666e7024d58a86fce882c3629c843aba8c35567ddf05635467725027dd5143
|
File details
Details for the file orca_graphlets-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2da7ee3ef0de0e704c08538ffe7464dba4e33b0e841b273242c2bee24c3a8025
|
|
| MD5 |
6e3d475e6cf08e623f4a23827a4b4803
|
|
| BLAKE2b-256 |
7e8974c013e84a440a844350216447ad61cf610beaf5a7860cd7951c0787964e
|
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
- Download URL: orca_graphlets-0.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 125.1 kB
- Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31864cb131e710ba57a961c49d5851f66440a6951d67f27d8f25c0bc25cb3374
|
|
| MD5 |
235ebd676a592ed8fd5daee3d374880e
|
|
| BLAKE2b-256 |
7491b1b15cb77a09506b5087907688e3b748551a670e4f3240c9cb30dfd79c21
|
File details
Details for the file orca_graphlets-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 111.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95c4df1276d7b2a75ea37754ff59af2addf07d71290c3f72d87225b41060efd7
|
|
| MD5 |
47da10c13f8efee0805941c01fb4405f
|
|
| BLAKE2b-256 |
01ef951b994eca4ae18f22bf49eb7790d781abd774f3bc25290df499b4bbd0dd
|
File details
Details for the file orca_graphlets-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 120.0 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cd8983549e2f436801ca0dd8b5aefe5d310e147b4d7bbc7a674b2d6c83f1358b
|
|
| MD5 |
3463468d9269728e150f9cfe7c00d554
|
|
| BLAKE2b-256 |
4c95a07ce871c8be4e82a736592345afb2f78d73641bc5ad0bae11ca0bbd5c35
|
File details
Details for the file orca_graphlets-0.1.1-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 108.6 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
835620e628a196eaef9f7f839194ad62ac51e059ca30d6496ae50cdc71d4f776
|
|
| MD5 |
f4df43bc05e90c0a43572b705045b83c
|
|
| BLAKE2b-256 |
904e0daef9eea9ae2467855595401f8435890bbe54d17a9f902565791c13105d
|
File details
Details for the file orca_graphlets-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9dc9edcf32f22971ba2d86f05d8478a7e0bd708d1b4dcdcd3afd23fab3bdb87b
|
|
| MD5 |
130551469f05d274c68d54f9616f1a9f
|
|
| BLAKE2b-256 |
a25c45800d2dbaa8a49e8bab3a1a587f7dc4cf82a99d4a4715c81a798f16f30a
|
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
- Download URL: orca_graphlets-0.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 125.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8384839072739d1e6bdaf94c4ce419948299ddf7dd3d51c8aea45df0435ea49f
|
|
| MD5 |
8cc9b88b7bfb3ab78d2cf42cb91fb523
|
|
| BLAKE2b-256 |
4fe08bc4f47e963cd18276fd13b61f04753f40a6f77b24ec62e06bf8d6abe180
|
File details
Details for the file orca_graphlets-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 111.3 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e8effe11e41f7f508711f0938dac670d6d5d0dab5d6e35b43ea035e2fd32ca4
|
|
| MD5 |
344a688b6002d44b74a04b2e02abbaf8
|
|
| BLAKE2b-256 |
0d4726f0e8a36e8c8056b35e96f0a0edc8cef257a21bb5830d3a813b67cb379d
|
File details
Details for the file orca_graphlets-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 120.2 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fa8b65a70a4ea5177e9c0bf1bce0c742a428db5e5993450da61499475720ed5
|
|
| MD5 |
b7954ff0ccdaf45d31dfc174699108e2
|
|
| BLAKE2b-256 |
e7766374b5c590b8d8f556648a824d45651669b50a6b9b585048f705f54e307d
|
File details
Details for the file orca_graphlets-0.1.1-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 108.4 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
727a0209edc6e88283ec8d10613c0844109008afbedeb368a07383415debe04a
|
|
| MD5 |
eec4205c3f0a0b3d5487a57743d164ce
|
|
| BLAKE2b-256 |
2ceccd969d9890ce2d7a5db371e90fcc5964ce4b13edb4cb61a6abaa231ee5a8
|
File details
Details for the file orca_graphlets-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c22ad6a3044dec77760659035778eef5de6ac726e3b6471ac838608499c323f
|
|
| MD5 |
e7eb35178aa62aae93ebb4d6d2128eda
|
|
| BLAKE2b-256 |
662b2cd88cc067f6aacc128f23fc371d704eebd4e4b2951d087cdf474aa86c4a
|
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
- Download URL: orca_graphlets-0.1.1-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 124.7 kB
- Tags: CPython 3.8, manylinux: glibc 2.24+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51f6647a597c502c8594f2de83f9cc4710cd5b70f8d474db5476e2a7a4955df3
|
|
| MD5 |
45ffe545c1d0693f93bb2e1a75867d10
|
|
| BLAKE2b-256 |
1c078a2bdcd3b8e02b79a826b7a0eb2f1d214d2b7ed27d94021d2b5c044cee9a
|
File details
Details for the file orca_graphlets-0.1.1-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 110.8 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
91b9bfdfc2c3875e18a962466146a492c9e72af4f8838c35a95c43ddb77a3c68
|
|
| MD5 |
462cf26591e932ba4ee716791e936490
|
|
| BLAKE2b-256 |
24d56a015a04a287e777046aa92636bbdc3e3537792d95fee4e4a35cf8ac73ca
|
File details
Details for the file orca_graphlets-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl.
File metadata
- Download URL: orca_graphlets-0.1.1-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 119.7 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3afa57e336b6db49f13f211ba3e941b8d15ea33ad3b05cf4cb0caef4e231970c
|
|
| MD5 |
f37ca0283045dfbda17b49237b2199d8
|
|
| BLAKE2b-256 |
06870ec3233f9a2582dc6a8be044dcb9f9c69a1f608d61138d2344bbcb89fcd9
|