Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

copick

License: MIT PyPI version Python Tests codecov Docs DOI

copick is a cross-platform, storage-agnostic and server-less dataset API for cryoET datasets. Access to the data is provided through an object-oriented API that abstracts away the underlying storage using the fsspec-family of libraries.

Why copick?

  • storage-agnostic: Access data on local or shared filesystems, via SSH or on the cloud with the same API. No need for your own boilerplate!
  • cloud-ready: Access image data quickly and in parallel thanks to multiscale OME-Zarr!
  • server-less: No need for a dedicated server or database to access your data, just point copick to your data and go!
  • cross-platform: copick works on any platform that supports Python. Compute on Linux, visualize on Windows or Mac, all with the same dataset API!
  • ecosystem: Using the copick API allows visualizing and curating data in ChimeraX and Napari right away!

Documentation

For more information, see the documentation.

Installation

copick can be installed using pip. Using the all extra installs necessary requirements for all tested filesystem implementations from the fsspec family (local, s3fs, smb, sshfs). A separate smb extra is available.

pip install "copick[all]"

[!NOTE] copick>=1.2.0 will fail to install with pip~=25.1.0. We recommend using pip>=25.2 or uv pip when installing copick.

[!IMPORTANT] copick 2.0 creates and rebuilds image pyramids as OME-Zarr 0.5 backed by Zarr v3. Existing Zarr v2 projects remain readable, and whole-store copy operations preserve their original format and layout.

Example dataset

An example dataset can be obtained from Zenodo. The migration-test archive contains both the legacy Zarr v2 project and its Zarr v3 twin, so it is larger than the earlier single-format example.

To test with the example dataset:

  1. Download and unpack the example dataset

  2. Add the location of the sample_project-directory in the unpacked dataset to filesystem_overlay_only.json

    {
        "name": "test",
        "description": "A test project.",
        "version": "1.0.0",
    
        "pickable_objects": [
            {
                "name": "proteasome",
                "is_particle": true,
                "pdb_id": "3J9I",
                "label": 1,
                "color": [255, 0, 0, 255],
                "radius": 60,
                "map_threshold": 0.0418
            },
            {
                "name": "ribosome",
                "is_particle": true,
                "pdb_id": "7P6Z",
                "label": 2,
                "color": [0, 255, 0, 255],
                "radius": 150,
                "map_threshold": 0.037
    
            },
            {
                "name": "membrane",
                "is_particle": false,
                "label": 3,
                "color": [0, 0, 0, 255]
            }
        ],
    
        // Change this path to the location of sample_project
        "overlay_root": "local:///PATH/TO/EXTRACTED/PROJECT/",
    
        "overlay_fs_args": {
            "auto_mkdir": true
        }
    }
    
  3. Start copick with the configuration file

    from copick.impl.filesystem import CopickRootFSSpec
    root = CopickRootFSSpec.from_file('path/to/filesystem_overlay_only.json')
    
  4. Access the data using the copick API

    import zarr
    
    from copick.impl.filesystem import CopickRootFSSpec
    from copick.util.ome import get_level_path
    root = CopickRootFSSpec.from_file('path/to/filesystem_overlay_only.json')
    
    # Get a run by name
    run = root.get_run("TS_001")
    
     # Get a tomogram by name
    tomogram = run.get_voxel_spacing(10).get_tomogram("wbp")
    
    # Access the data
    group = zarr.open(tomogram.zarr(), mode="r")
    
    # Inspect every stored array without assuming numeric names or iteration order
    for path, candidate in group.arrays():
        print(path, candidate.shape)
    
    # Select OME pyramid levels from metadata
    array = group[get_level_path(group, 0)]
    

Contributing

We welcome contributions to copick! Here's how to get started:

Development Setup

  1. Clone the repository and install with development dependencies:

    git clone https://github.com/copick/copick.git
    cd copick
    pip install -e ".[dev,test]"
    
  2. Install pre-commit hooks:

    pre-commit install
    
  3. Run tests to ensure everything is working:

    pytest
    

Code Quality

We use several tools to maintain code quality:

  • Black for code formatting
  • Ruff for linting and import sorting
  • Pre-commit hooks to enforce standards

Before submitting a PR, ensure your code passes all checks:

black src/ tests/
ruff check --fix src/ tests/
pytest

Conventional Commits

All pull requests must use Conventional Commits for commit messages. This helps us automatically generate changelogs and determine version bumps.

Examples:

  • feat: add support for new tomogram format
  • fix: resolve memory leak in zarr loading
  • docs: update installation instructions
  • test: add unit tests for mesh operations

Plugin System

Copick supports a plugin system that allows external Python packages to register CLI commands. Commands can be added to the main CLI or organized into groups like inference, training, evaluation, process, and convert.

See the CLI documentation for detailed plugin development instructions and the copick-plugin-demo repository for a complete example.

Code of Conduct

This project adheres to the Contributor Covenant code of conduct. By participating, you are expected to uphold this code. Please report unacceptable behavior to opensource@chanzuckerberg.com.

Reporting Security Issues

If you believe you have found a security issue, please responsibly disclose by contacting us at security@chanzuckerberg.com.

Download files

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

Source Distribution

copick-2.0.0a1.tar.gz (47.8 MB view details)

Uploaded Source

Built Distribution

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

copick-2.0.0a1-py3-none-any.whl (235.5 kB view details)

Uploaded Python 3

File details

Details for the file copick-2.0.0a1.tar.gz.

File metadata

  • Download URL: copick-2.0.0a1.tar.gz
  • Upload date:
  • Size: 47.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for copick-2.0.0a1.tar.gz
Algorithm Hash digest
SHA256 39256a1671d82088e8a3aebd237b322e498d5b38e2f5ff008ba9f586bf87c101
MD5 c0ce46a33861ebe2f329b3db5ccee199
BLAKE2b-256 804065bd5bb0c774b964e489683fa541d8fda09b3c2bbe51b0fa9ec73011ff97

See more details on using hashes here.

Provenance

The following attestation bundles were made for copick-2.0.0a1.tar.gz:

Publisher: release-please.yml on copick/copick

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

File details

Details for the file copick-2.0.0a1-py3-none-any.whl.

File metadata

  • Download URL: copick-2.0.0a1-py3-none-any.whl
  • Upload date:
  • Size: 235.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for copick-2.0.0a1-py3-none-any.whl
Algorithm Hash digest
SHA256 6c8002976c2e485d4e1d8814ee8aa096f76be8f82531ff3559e11e2469285ed9
MD5 734e3136e1c60e026cbb14ce696840ba
BLAKE2b-256 cbd7a44a4a97bebd025b484e5c49f59627ba7ba67136d16d0f83f50a392864c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for copick-2.0.0a1-py3-none-any.whl:

Publisher: release-please.yml on copick/copick

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 Sentry Error logging StatusPage Status page