Skip to main content

A Serverless-Ready Metadata Validator for GA4GH Genomic Standards

Project description

OmicsGuard

Python application PyPI version License: MIT Lines of Code

OmicsGuard is a lightweight, serverless-ready metadata validator designed for modern bioinformatics workflows. It ensures "Schema-on-Write" integrity for GA4GH standards (like Phenopackets) while allowing flexible organizational extensions and custom business logic.

Key Features

  • Serverless Ready: Designed to run in AWS Lambda, Google Cloud Functions, or lightweight containers.
  • GA4GH Standard Support: Built-in registry for official schemas (e.g., ga4gh-phenopacket-v2).
  • Plugin System: Inject custom business logic with simple Python functions.
  • Schema Extensions: Layer organization-specific fields (e.g., hospital_id) on top of standard schemas.
  • Human-Readable Reports: Generate HTML or Markdown reports for biologists and clinicians.
  • Smart Caching: Automatically caches remote schemas to minimize network latency.

Installation

You can install OmicsGuard from PyPI or directly from the source.

1. From PyPI (Recommended)

pip install omicsguard

2. From Source

Useful for development or using the latest unreleased features.

git clone https://github.com/your-org/omicsguard.git
cd omicsguard
pip install .

Usage

1. Basic Validation

Validate a JSON or YAML file against the default bundled standard (Phenopackets v2).

omicsguard validate --data patient_data.json

Output:

true

2. Pulling Schemas

Download and cache official schemas from the registry to avoid repeated network calls.

omicsguard pull --standard ga4gh-phenopacket-v2

3. Custom Business Rules (Plugins)

Sometimes, structural validation isn't enough. Use Python plugins to enforce complex rules (e.g., "ID must start with PROBAND-").

Create a plugin (my_plugin.py):

def validate(data):
    errors = []
    if not data.get("id", "").startswith("PROBAND-"):
        errors.append("ID must start with 'PROBAND-'")
    return errors

Run with plugin:

omicsguard validate --data patient.json --plugin my_plugin.py

4. Schema Extensions

Add custom fields to a standard schema without forking it.

Extension Schema (hospital_fields.json):

{
  "properties": {
    "hospital_id": { "type": "string" }
  },
  "required": ["hospital_id"]
}

Merge and Validate:

omicsguard validate --data patient.json --extend hospital_fields.json

5. Generating Reports

Generate detailed reports for non-technical stakeholders.

# HTML Report
omicsguard validate --data patient.json --output report.html

# Markdown Report (great for CI/CD comments)
omicsguard validate --data patient.json --output report.md

Configuration

OmicsGuard is 12-factor app compliant and can be configured via Environment Variables:

  • OMICSGUARD_SCHEMA_CACHE: Directory to store cached schemas (Default: ~/.omicsguard/schemas).

Development

  1. Clone the repo

    git clone https://github.com/your-org/omicsguard.git
    cd omicsguard
    
  2. Install dependencies

    pip install -e .
    
  3. Run Tests

    python -m unittest discover tests
    

License

MIT License. See LICENSE for details.

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

omicsguard-0.1.1.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

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

omicsguard-0.1.1-py3-none-any.whl (13.1 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for omicsguard-0.1.1.tar.gz
Algorithm Hash digest
SHA256 9a74d7045055dde40ff91728349842ccbb04fcc655e984afccaa43b296bb4a57
MD5 e3b21cf5aea079f127d316233d9dc981
BLAKE2b-256 5db8e537dbf0a4d26260036d1e554b90e2af48990e5a3532d9727069b39c740f

See more details on using hashes here.

File details

Details for the file omicsguard-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: omicsguard-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 13.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for omicsguard-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 dc32282e3c96a2a6e85f69e35095991de40eb4f5161acaa440927582b52aa2ac
MD5 47e23c0fbdb37f94afe242ac6afcb55a
BLAKE2b-256 f2c44431d17e44c7a2eb79ae102d8d3807f7f13f5282e62546471784e07ac0a9

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