Skip to main content

An ORM and toolkit that builds on top of Benchling's platform to keep your schemas and downstream code dependencies in sync.

Project description

Liminal ORM

PyPI version License CI Downloads

Liminal ORM1 is an open-source Python package that builds on Benchling's LIMS2 platform and provides a simple, code-first approach for synchronizing and managing your Benchling schemas. Check out the full documentation here and join our Slack community here!

Liminal provides an ORM framework using SQLAlchemy along with a schema migration service inspired by Alembic. This allows you to define your Benchling schemas in code and create a single source of truth that synchronizes between your upstream Benchling tenant(s) and downstream dependencies. By creating a standard interface and through using one-line CLI3 commands, Liminal enables a code-first approach for managing Benchling tenants and accessing Benchling data. With the schemas defined in code, you can also take advantage of the additional capabilities that the Liminal toolkit provides. This includes:

  • The ability to run migrations to your Benchling tenant(s) through an easy to use CLI.
  • Easy to implement validation rules to reflect business logic for all of your Benchling entities.
  • Strongly typed queries for all your Benchling entities.
  • CI/CD integration with GitHub Actions to ensure that your Benchling schemas and code are always in sync.
  • And more based on community contributions/feedback :)

If you are a Benchling user, try out Liminal by following the Quick Start Guide! Reach out in the Slack community (preferred method) with any questions or to simply introduce yourself! If there is something blocking you from using Liminal or you're having trouble setting Liminal up, please share in Issues or reach out directly (info below).

Benchling is an industry standard cloud platform for life sciences R&D. Liminal builds on top of Benchling's platform and assumes that you already have a Benchling tenant set up and have (or have access to) an admin user account. If not, learn more about getting started with Benchling here!

Nirmit Damania is the creator and current maintainer of Liminal (I post Liminal updates to Discussions and my LinkedIn). Most importantly, you have the ability to influence the future of Liminal! Any feedback, positive or negative, is highly encouraged and will be used to steer the direction of Liminal. Refer to the Contributing guide to learn more about how you can contribute to Liminal.

⭐️ Leave a star on the repo to spread the word! If you or your organization use Liminal, please consider adding yourself or your organization to the Users list.

liminal_simple_graph

Table of Contents

Getting Started

Note: Liminal requires you to have (or have access to) an admin user account for your Benchling tenant. If you run into any issues, please reach out to us on the Discussions forum and we'll be happy to help!

Check out this Quick Start Guide to get you setup with Liminal!

Toolkit

With your schemas defined in code, you can now take advantage of the additional capabilities that the Liminal toolkit provides.

  1. Entity validation: Easily create custom validation rules for your Benchling entities.

    from liminal.validation import ValidationSeverity, liminal_validator
    
    class Pizza(BaseModel, CustomEntityMixin):
        ...
    
        @liminal_validator
        def cook_time_and_temp_validator(self) -> None:
            if self.cook_time is not None and self.cook_temp is None:
                raise ValueError("Cook temp is required if cook time is set")
            if self.cook_time is None and self.cook_temp is not None:
                raise ValueError("Cook time is required if cook temp is set")
    
    validation_reports = Pizza.validate(session)
    
  2. Strongly typed queries: Write type-safe queries using SQLAlchemy to access your Benchling entities.

    with BenchlingSession(benchling_connection, with_db=True) as session:
        pizza = session.query(Pizza).filter(Pizza.name == "Margherita").first()
    
  3. CI/CD integration: Use Liminal to automatically generate and apply your revision files to your Benchling tenant(s) as part of your CI/CD pipeline.

  4. And more to come!

Mission

The democratization of software in Biotech is crucial. By building a community around complex, yet common, problems and creating open-source solutions, we can work together to tackle these challenges together and enable faster innovation in the industry. By breaking down the silos between private platforms, we can enable a more dynamic and open ecosystem. This was the motivation for Liminal's creation. Liminal's goal is to create an open-source software product that enables a standard, code-first approach to configuration and change management for LIMS systems. We started with Benchling, but the goal is to make Liminal the go-to solution for any LIMS system.

Community

We're excited to hear from you! Feel free to introduce yourself on the Liminal GitHub Discussions page

Please refer to CODE_OF_CONDUCT.md to learn more about how to interact with the community.

Please refer to GOVERNANCE.md to learn more about the project's governance structure.

Contributing

Contributions of any kind are welcome and encouraged! This ranges from feedback and feature requests all the way to code contributions. Please refer to CONTRIBUTING.md to learn how to contribute to Liminal!

License

Liminal ORM is distributed under the Apache License, Version 2.0.

Direct Contact

Acknowledgements

This project could not have been started without the support of Dyno Therapeutics and the help of the following people.

  • Steve Northup: For being an incredibly supportive manager and mentor, making key technical contributions, and providing guidance on the project's direction.
  • Joyce Samson: For being Liminal's first power user at Dyno Therapeutics, providing valuable feedback that informed the project's direction, and coming up with Liminal's name.
  • David Levy-Booth: For providing leadership and guidance on releasing this as an open source software.
  • The rest of the Dyno team...

Footnotes

ORM1: Object-Relational Mapper. An ORM is a piece of software designed to translate between the data representations used by databases and those used in object-oriented programming. In this case, Liminal provides an ORM layer built specifically for Benchling that allows for users to quickly and easily define Benchling entities in code. SQLAlchemy is the underlying ORM that Liminal uses to interact with your Benchling tenant(s) and is an open-source software that is an industry standard software.

LIMS2: Laboratory Information Management System. A LIMS is a piece of software that allows you to effectively manage samples and associated data. Benchling is an industry-leading LIMS software.

CLI3: Command Line Interface. A CLI is a piece of software that allows you to interact with a software program via the command line. Liminal provides a CLI that allows you to interact with your Liminal environment. This project uses Typer to construct the CLI

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

liminal_orm-4.4.6.tar.gz (83.5 kB view details)

Uploaded Source

Built Distribution

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

liminal_orm-4.4.6-py3-none-any.whl (113.9 kB view details)

Uploaded Python 3

File details

Details for the file liminal_orm-4.4.6.tar.gz.

File metadata

  • Download URL: liminal_orm-4.4.6.tar.gz
  • Upload date:
  • Size: 83.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.8.15

File hashes

Hashes for liminal_orm-4.4.6.tar.gz
Algorithm Hash digest
SHA256 0b3280a3dad23ed7526ec636630cada2a220ed7487cddc868aa33826198d4ff1
MD5 c532d4742e669070ac27bd8728715976
BLAKE2b-256 0ed32c467cad320b902a64e60da36933261abfdb7db68e2b3681133568e80c92

See more details on using hashes here.

File details

Details for the file liminal_orm-4.4.6-py3-none-any.whl.

File metadata

File hashes

Hashes for liminal_orm-4.4.6-py3-none-any.whl
Algorithm Hash digest
SHA256 52728b80b0857592be693152070b6a0316321e7f59f8889c8af8198b84b7a2d0
MD5 2e64e3f69cb4726f4f5e4a42a4268087
BLAKE2b-256 ef08999ac73fd5a9a38607cc4b167ec78842651203bbe904b8f2a05731400803

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