Skip to content

romi/plantdb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ROMI_logo / plantdb

Licence Python Version GitHub branch check runs

Package PyPI Conda
plantdb.commons PyPI - Version Conda - Version
plantdb.server PyPI - Version Conda - Version
plantdb.client PyPI - Version Conda - Version

Overview

PlantDB is a library for the ROMI (Robotics for Microfarms) plant database ecosystem. It is designed for plant and agricultural research facilities and robotics labs that require lightweight plant data management infrastructure.

It consists of three components:

  1. plantdb.commons: provides a Python API for interacting with plant data
  2. plantdb.server: provides the server-side REST API to interact with plant data
  3. plantdb.client: provides the client-side REST API to interact with plant data

For comprehensive documentation of the PlantImager project, visit: https://docs.romi-project.eu/plant_imager/

API documentation for the plantdb library is available at: https://romi.github.io/plantdb/

plantdb.commons

Core shared library for the ROMI plant database ecosystem.

This package provides common utilities and base functionality used by both server and client components.

Features include:

  • Data management
  • Common data models and schemas
  • File system operations and validation
  • Logging and debugging tools
  • Data format specifications and validators

plantdb.server

Server-side component of the ROMI plant database system.

Provides a robust REST API server implementation for managing plant phenotyping data.

Features include:

  • File system database management
  • Data synchronization services
  • Command-line tools for database management

plantdb.client

Client-side database library for the ROMI plant database ecosystem.

This package provides a Python interface for interacting with ROMI's plant database system, enabling efficient storage, retrieval, and management of plant-related data.

Features include:

  • REST API integration
  • Data validation
  • Streamlined access to plant phenotyping data.

Environment Setup

We strongly recommend using isolated environments to install ROMI libraries. This documentation uses conda as both an environment and package manager. If you don't haveminiconda3 installed, please refer to the official documentation.

The plantdb packages are available through:

To create a new conda environment for PlantDB:

conda create -n plantdb 'python=3.10' ipython

Installation

For Users

Activate your environment and install the packages using either pip or conda:

Using pip:

conda activate plantdb  # activate your environment first!
pip install plantdb.commons plantdb.server plantdb.client

Using conda:

conda activate plantdb  # activate your environment first!
conda install -c romi-eu plantdb plantdb.server plantdb.client

For Developers

To install the library for development:

  1. Clone the repository:

    git clone https://github.com/romi/plantdb.git -b dev  # clone the 'dev' branch
    cd plantdb
    conda activate plantdb  # activate your environment first!
  2. Install components:

Core library:

python -m pip install -e src/commons/.

Client-side library:

python -m pip install -e src/client/.

Server-side library:

python -m pip install -e src/server/.

Info:

The -e flag installs the source in "developer mode," allowing code changes to take effect without re-installation.

Running Tests

Install testing tools:

python -m pip install -e .[test]

Run tests:

  • All tests with verbose output:

    nose2 -s tests/ -v
  • Tests with coverage report:

    nose2 -s tests/ --with-coverage

Getting started

Set up a local database

  1. You need to create a directory where to put the data, e.g. /data/ROMI_DB and add a file called romidb:
    mkdir -p /data/ROMI_DB
    touch /data/ROMI_DB/romidb
  2. Then define its location in an environment variable ROMI_DB:
    export ROMI_DB=/data/ROMI_DB

Info:

To make this setting permanent, add the export command to your ~/.bashrc or ~/.profile file.

Example datasets

To populate your database with example datasets, you may use the shared_fsdb CLI as follows:

shared_fsdb $ROMI_DB --dataset all

Docker image

A docker image, named roboticsmicrofarms/plantdb, is distributed by the ROMI group. If you want to use it, simply do:

docker run -p 5000:5000 -v $ROMI_DB:/myapp/db -it roboticsmicrofarms/plantdb

Obviously you have to install docker first!

Usage

Python API

Here is a minimal example how to use the plantdb library in Python:

# Get the environment variable $ROMI_DB
import os

db_path = os.environ['ROMI_DB']
# Use it to connect to DB:
from plantdb.commons.fsdb import FSDB

db = FSDB(db_path)
db.connect()
# Access to a dataset named `real_plant` (from the example database)
dataset = db.get_scan("real_plant")
# Get the 'images' fileset contained in this dataset
img_fs = dataset.get_fileset('images')

A detailed documentation of the Python API is available here: https://romi.github.io/plantdb/reference.html

Serve the REST API

Then you can start the REST API with fsdb_rest_api:

fsdb_rest_api -db $ROMI_DB

You should see something like:

n scans = 5
 * Serving Flask app "fsdb_rest_api" (lazy loading)
 * Environment: production
   WARNING: This is a development server. Do not use it in a production deployment.
   Use a production WSGI server instead.
 * Debug mode: off
 * Running on http://0.0.0.0:5000/ (Press CTRL+C to quit)

Open your favorite browser here:

A detailed documentation of the REST API is available here: https://romi.github.io/plantdb/webapi.html

Developers & contributors

Unitary tests

Some tests are defined in the tests directory. We use nose2 to call them as follows:

nose2 -v -C

Notes:

  • the configuration file used by nose2 is unittests.cfg
  • the -C option generate a coverage report, as defined by the .coveragerc file.
  • this requires the nose2 & coverage packages listed in the requirements.txt file.

You first have to install the library from sources as explained here.

Conda packaging

Start by installing the required conda-build & anaconda-client conda packages in the base environment as follows:

conda install -n base conda-build anaconda-client

Build a conda package

To build the plantdb conda packages, from the root directory of the repository and the base conda environment, run:

  1. Build the packages locally without uploading

    for pkg in commons server client; do
      echo "Building plantdb-$pkg package..."
      export PLANTDB_SUBPACKAGE=$pkg
      conda build conda/recipe/ --no-anaconda-upload
    done
  2. Test installing the built packages After building, conda will show the path to the built package. You can install it to verify it works:

    # Create a test environment
    conda create -n plantdb_test python=3.10 -y
    conda activate plantdb_test
    
    # Install the locally built package
    # Replace with actual path from conda build output
    conda install --use-local plantdb-commons
    conda install --use-local plantdb-server
    conda install --use-local plantdb-client
    
    # Test importing the packages
    python -c "import plantdb.commons; print('Successfully imported plantdb.commons')"
    python -c "import plantdb.server; print('Successfully imported plantdb.server')"
    python -c "import plantdb.client; print('Successfully imported plantdb.client')"
    
    # Clean up
    conda deactivate
    conda env remove -n plantdb_test

Note: If you encounter issues, you can use the --debug flag for more verbose output when building the package.

conda build conda/recipe/commons --debug --no-anaconda-upload

Render the recipe

If you are struggling with some of the modifications you made to the recipe, notably when using environment variables or Jinja2 stuffs, you can always render the recipe with:

conda render conda/recipe/

The official documentation for conda-render can be found here.

Upload a conda package

To upload the built packages, you need a valid account (here romi-eu) on anaconda.org & to log ONCE with anaconda login, then:

anaconda upload ~/miniconda3/conda-bld/linux-64/plantdb*.tar.bz2 --user romi-eu

Clean builds

To clean the source and build intermediates:

conda build purge

To clean ALL the built packages & build environments:

conda build purge-all

Docker build.sh & run.sh scripts

To facilitate the use of docker, we created two scripts, build.sh & run.sh, located in the docker folder in the sources.

To build a new roboticsmicrofarms/plantdb image, from the root folder, simply do:

./docker/build.sh

To run the latest roboticsmicrofarms/plantdb image, from the root folder, simply do:

./docker/run.sh

Use the -h option to get help on using the scripts.