biomero

BIOMERO - A python library for easy connecting between OMERO (jobs) and a Slurm cluster

https://github.com/nl-bioimaging/biomero

Science Score: 64.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
    Links to: zenodo.org
  • Committers with academic emails
    1 of 5 committers (20.0%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (13.0%) to scientific vocabulary

Keywords

biaflows bioimaging biomero cytomine fair high-content-screening high-performance-computing high-throughput-screening image-analysis omero python slurm

Keywords from Contributors

mesh sequences interactive hacking network-simulation
Last synced: 6 months ago · JSON representation ·

Repository

BIOMERO - A python library for easy connecting between OMERO (jobs) and a Slurm cluster

Basic Info
Statistics
  • Stars: 19
  • Watchers: 2
  • Forks: 4
  • Open Issues: 4
  • Releases: 35
Topics
biaflows bioimaging biomero cytomine fair high-content-screening high-performance-computing high-throughput-screening image-analysis omero python slurm
Created almost 3 years ago · Last pushed 6 months ago
Metadata Files
Readme License Citation

README.md

BIOMERO - BioImage analysis in OMERO

License DOI PyPI - Version PyPI - Python Versions Slurm OMERO fair-software.eu OpenSSF Best Practices Sphinx build pages-build-deployment python-package build python-publish build Coverage Status

The BIOMERO framework, for BioImage analysis in OMERO, allows you to run (FAIR) bioimage analysis workflows directly from OMERO on a high-performance compute (HPC) cluster, remotely through SSH.

The BIOMERO framework consists of this Python library biomero, together with the BIOMERO scripts that can be run directly from the OMERO web interface.

The package includes the SlurmClient class, which provides SSH-based connectivity and interaction with a Slurm (high-performance compute) cluster. The package enables users to submit jobs, monitor job status, retrieve job output, and perform other Slurm-related tasks. Additionally, the package offers functionality for configuring and managing paths to Slurm data and Singularity images (think Docker containers...), as well as specific FAIR image analysis workflows and their associated repositories.

Overall, the biomero package simplifies the integration of HPC functionality within the OMERO platform for admins and provides an efficient and end-user-friendly interface towards both the HPC and FAIR workflows.

WARNING: Please note that default settings are for short/medium jobs. If you run long workflows (>45min), you will run into 2 lethal issues: - Your Slurm job will timeout after 45 minutes! See Time Limit on Slurm on what configs to change. - Your OMERO script (incl biomero-scripts) will timeout after 60 minutes! Change omero script timeout settings if you expect longer workflows.

BIOMERO 2.0

Get ready for an enhanced BIOMERO!

In 2.0, we add full workflow tracking via a database and dashboard, with the OMERO.biomero plugin providing a nice new User Interface in OMERO.web. Every workflow run will be uniquely identifiable and you can find its resulting assets back in OMERO.

All in all, BIOMERO 2.0 greatly enhances both the user interaction for BIOMERO and the FAIR metadata of all these resulting assets in OMERO.

Overview

In the figure below we show our BIOMERO framework, for BioImage analysis in OMERO.

BIOMERO consists of this Python library (biomero) and the integrations within OMERO, currently through our BIOMERO scripts.

OMERO-Figure1_Overview_v5

Deploy with NL-BIOMERO

For the easiest deployment and integration with other FAIR infrastructure, use the NL-BIOMERO stack:

  • NL-BIOMERO deployment repo: https://github.com/Cellular-Imaging-Amsterdam-UMC/NL-BIOMERO
  • OMERO.biomero OMERO.web plugin: https://github.com/Cellular-Imaging-Amsterdam-UMC/OMERO.biomero
  • Prebuilt BIOMERO processor container: https://hub.docker.com/r/cellularimagingcf/biomero

Quickstart

For a quick overview of what this library can do for you, we can install an example setup locally with Docker:

  1. Setup a local OMERO w/ this library:
    • Follow Quickstart of https://github.com/Cellular-Imaging-Amsterdam-UMC/NL-BIOMERO
  2. Setup a local Slurm w/ SSH access:
    • Follow Quickstart of https://github.com/TorecLuik/slurm-docker-cluster
  3. Upload some data with OMERO.insight to localhost server (... we are working on a web importer ... TBC)
  4. Try out some scripts from https://github.com/NL-BioImaging/biomero-scripts (already installed in step 1!):
    1. Run script slurm/init/SLURM Init environment...
    2. Get a coffee or something. This will take at least 10 min to download all the workflow images. Maybe write a nice review on image.sc of this software, or here on the Discussions tab of Github.
    3. Select your image / dataset and run script slurm/workflows/SLURM Run Workflow...
      • Select at least one of the Select how to import your results, e.g. change Import into NEW Dataset text to hello world
      • Select a fun workflow, e.g. cellpose.
        • Change the nuc channel to the channel to segment (note that 0 is for grey, so 1,2,3 for RGB)
        • Uncheck the use gpu (step 2, our HPC cluster, doesn't come with GPU support built into the containers)
      • Refresh your OMERO Explore tab to see your hello world dataset with a mask image when the workflow is done!

Prerequisites & Getting Started with BIOMERO

Slurm Requirements

Note: This library has only been tested on Slurm versions 21.08.6 and 22.05.09 !

Your Slurm cluster/login node needs to have: 1. SSH access w/ public key (headless) 2. SCP access (generally comes with SSH) 3. 7zip installed 4. Singularity/Apptainer installed 5. (Optional) Git installed, if you want your own job scripts 6. Slurm accounting enabled

OMERO Requirements

Your OMERO processing node needs to have: 1. SSH client and access to the Slurm cluster (w/ private key / headless) 2. SCP access to the Slurm cluster 3. Python3.8+ 4. This library installed - Latest release on PyPI python3 -m pip install biomero - or latest Github version python3 -m pip install 'git+https://github.com/NL-BioImaging/biomero' 5. Configuration setup at /etc/slurm-.ini 6. Requirements for some scripts: python3 -m pip install ezomero==1.1.1 tifffile==2020.9.3 and the OMERO CLI Zarr plugin.

Your OMERO server node needs to have: 1. Some OMERO example scripts installed to interact with this library: - My examples on github: https://github.com/NL-BioImaging/biomero-scripts - Install those at /opt/omero/server/OMERO.server/lib/scripts/slurm/, e.g. git clone https://github.com/NL-BioImaging/biomero-scripts.git <path>/slurm

!!NOTE: Do not install Example Minimal Slurm Script if you do not trust your users with your Slurm cluster. It has literal Command Injection for the SSH user as a FEATURE.

Getting Started

To connect an OMERO processor to a Slurm cluster using the biomero library, users can follow these steps:

  1. Setup passwordless public key authentication between your OMERO processor server and your HPC server. E.g. follow a SSH tutorial or this one.

    • You could use 1 Slurm account for all processor servers, and share the same private key to all of them.
    • Or you could use unique accounts, but give them all the same alias in step 2.
  2. Create a SSH config file named config in the .ssh directory of (all) the OMERO processor servers, within the omero user's home directory (~/.ssh/config). This file should specify the hostname, username, port, and private key path for the Slurm cluster, under some alias. This alias we will provide to the library. We provide an example in the resources directory.

- This will allow a uniform SSH naming, and makes the connection headless; making it easy for the library.

- Test the SSH connection manually! `ssh slurm` (as the omero user) should connect you to the Slurm server (given that you named it `slurm` in the `config`).

- Congratulations! Now the servers are connected. Next, we make sure to setup the connection between OMERO and Slurm.
  1. At this point, ensure that the slurm-config.ini file is correctly configured with the necessary SSH and Slurm settings, including the host, data path, images path, and model details. Customize the configuration according to the specific Slurm cluster setup. We provide an example in the resources section. To read it automatically, place this ini file in one of the following locations (on the OMERO processor server):

    • /etc/slurm-config.ini
    • ~/slurm-config.ini

    Note: Make sure to place the slurm-config.ini in the target folder at build time of your docker container instead of mounting it at runtime. This is because the library reads the config file at import time, and if it is not found, it will not work.

  2. Install OMERO scripts from OMERO Slurm Scripts, e.g.

    • cd /opt/omero/server/OMERO.server/lib/scripts
    • git clone https://github.com/NL-BioImaging/biomero-scripts.git slurm

!!NOTE: Do not install Example Minimal Slurm Script if you do not trust your users with your Slurm cluster. It has literal Command Injection for the SSH user as a FEATURE.

  1. Install BIOMERO Scripts requirements, e.g.

    • python3 -m pip install ezomero==1.1.1 tifffile==2020.9.3
    • the OMERO CLI Zarr plugin, e.g. python3 -m pip install omero-cli-zarr==0.5.3 && yum install -y blosc-devel
    • the bioformats2raw-0.7.0, e.g. unzip -d /opt bioformats2raw-0.7.0.zip && export PATH="$PATH:/opt/bioformats2raw-0.7.0/bin"
  2. To finish setting up your SlurmClient and Slurm server, run it once with init_slurm=True. This is provided in a OMERO script form at init/Slurm Init environment , which you just installed in previous step.

    • Provide the configfile location explicitly if it is not a default one defined earlier, otherwise you can omit that field.
    • Please note the requirements for your Slurm cluster. We do not install Singularity / 7zip on your cluster for you (at the time of writing).
    • This operation will make it create the directories you provided in the slurm-config.ini, pull any described Singularity images to the server (note: might take a while), and generate (or clone from Git) any job scripts for these workflows:

python with SlurmClient.from_config(configfile=configfile, init_slurm=True) as slurmClient: slurmClient.validate(validate_slurm_setup=True)

With the configuration files in place, you can utilize the SlurmClient class from the biomero library to connect to the Slurm cluster over SSH, enabling the submission and management of Slurm jobs from an OMERO processor.

BIOMERO scripts

The easiest interaction from OMERO with this library currently is through our BIOMERO scripts, which are just a set of OMERO scripts using this library for all the steps one needs to run a image analysis workflow from OMERO on Slurm and retrieve the results back into OMERO.

!!NOTE: Do not install Example Minimal Slurm Script if you do not trust your users with your Slurm cluster. It has literal Command Injection for the SSH user as a FEATURE.

We have provided the BIOMERO scripts at https://github.com/NL-BioImaging/biomero-scripts (hopefully installed in a previous step).

For example, workflows/Slurm Run Workflow should provide an easy way to send data to Slurm, run the configured and chosen workflow, poll Slurm until jobs are done (or errors) and retrieve the results when the job is done. This workflow script uses some of the other scripts, like

Other example OMERO scripts are: - data/Slurm Get Update: to run while you are waiting on a job to finish on Slurm; it will try to get a % progress from your job's logfile. Depends on your job/workflow logging a % of course.

  • workflows/Slurm Run Workflow Batched: This will allow you to run several workflows/Slurm Run Workflow in parallel, by batching your input images into smaller chunks (e.g. turn 64 images into 2 batches of 32 images each). It will then poll all these jobs.

  • workflows/Slurm CellPose Segmentation: This is a more primitive script that only runs the actual workflow CellPose (if correctly configured). You will need to manually transfer data first (with Slurm Image Transfer) and manually retrieve data afterward (with Slurm Get Results).

You are encouraged to create your own custom scripts. Do note the copy-left license enforced by OME.

(Docker) containers

We host BIOMERO container dockerfiles at NL-BIOMERO, which publishes container images to our public dockerhub cellularimagingcf. Specifically the cellularimagingcf/biomero image is an OMERO processor container with BIOMERO library installed. When we release a new version of BIOMERO, we will also release a new version of these containers (because we deploy these locally at our Core Facility - Cellular Imaging).

You can mount your specific configurations over those in the container, for example:

```

Run the biomero container

echo "Starting BIOMERO..." podman run -d --rm --name biomero \ -e CONFIGomeromasterhost=omeroserver \ -e OMEROWORKERNAME=biomero \ -e CONFIGomerologginglevel=10 \ --network omero \ --volume /mnt/datadisk/omero:/OMERO \ --volume /mnt/data:/data \ --volume /my/slurm-config.ini:/etc/slurm-config.ini \ --secret ssh-config,target=/tmp/.ssh/config --secret ssh-key,target=/tmp/.ssh/idrsa --secret ssh-pubkey,target=/tmp/.ssh/idrsa.pub --secret ssh-knownhosts,target=/tmp/.ssh/knownhosts \ --userns=keep-id:uid=1000,gid=997 \ cellularimagingcf/biomero:0.2.3 ```

This will spin up the docker container (in Podman) with omero config (-e CONFIG_omero_..), mounting the required data drives (--volume /mnt/...) and adding a new slurm config (--volume /my/slurm-config.ini:/etc/slurm-config.ini) and the required SSH settings (--secret ...,target=/tmp/.ssh/...) to access the remote HPC.

Note: the BIOMERO scripts are installed on the main server, not on the BIOMERO processor.

Note2: We will also update these containers with our own desired changes, so they will likely not be 1:1 copy with basic omero containers. Especially when we start making a nicer UI for BIOMERO. We will keep up-to-date with the OMERO releases when possible.

See the tutorials

I have also provided tutorials on connecting to a Local or Cloud Slurm, and tutorials on how to add your FAIR workflows to this setup. Those can give some more insights as well.

Developer: Eventsourcing and Views

BIOMERO tracks workflow execution with eventsourcing and maintains denormalized SQL views for fast queries.

  • Event side: aggregates in biomero.eventsourcing (WorkflowRun, Task) emit immutable events and are persisted by eventsourcing_sqlalchemy. These tables are library-managed; do not add Alembic migrations for them.
  • View side: biomero.views processes events and updates SQLAlchemy models in biomero.database:
    • biomero_job_view, biomero_job_progress_view, biomero_workflow_progress_view, biomero_task_execution.
  • Migrations: only BIOMERO view tables are migrated via Alembic (biomero/migrations, version table alembic_version_biomero). A startup runner upgrades on boot and uses a Postgres advisory lock. To adopt existing schemas once, set BIOMERO_ALLOW_AUTO_STAMP=1.
  • Changing aggregates: keep backward compatibility by adding upcasters (see comments in biomero.eventsourcing). Rebuild views by reprocessing events if shapes change.

See the full developer guide in the Sphinx docs under “Developer → Eventsourcing and Views”.

SSH

Note: this library is built for SSH-based connections. If you could, it would be a lot easier to just have the OMERO processor server and the slurm client server be (on) the same machine: then you can just directly call sbatch and other slurm commands from OMERO scripts and Slurm would have better access to your data.

This is mainly for those cases where you already have an external HPC cluster and want to connect your OMERO instance.

Theoretically, you could extend the SlurmClient class and change the run commands to not use SSH, but just a subprocess. We might implement this if we need it in the future. But then you could also look at other Python libraries like submitit.

SlurmClient class

The SlurmClient class is the main entrypoint in using this library. It is a Python class that extends the Connection class from the Fabric library. It allows connecting to and interacting with a Slurm cluster over SSH.

It includes attributes for specifying paths to directories for Slurm data and Singularity images, as well as specific paths, repositories, and Dockerhub information for different Singularity image models.

The class provides methods for running commands on the remote Slurm host, submitting jobs, checking job status, retrieving job output, and tailing log files.

It also offers a from_config class method to create a SlurmClient object by reading configuration parameters from a file. Overall, the class provides a convenient way to work with Slurm clusters and manage job execution and monitoring.

slurm-config.ini

The slurm-config.ini file is a configuration file used by the biomero Python package to specify various settings related to SSH and Slurm. Here is a brief description of its contents:

[SSH]: This section contains SSH settings, including the alias for the SLURM SSH connection (host). Additional SSH configuration can be specified in the user's SSH config file or in /etc/fabric.yml.

[SLURM]: This section includes settings specific to Slurm. It defines the paths on the SLURM entrypoint for storing data files (slurmdatapath), container image files (slurmimagespath), and Slurm job scripts (slurmscriptpath). It also specifies the repository (slurmscriptrepo) from which to pull the Slurm scripts.

[MODELS]: This section is used to define different model settings. Each model has a unique key and requires corresponding values for <key>_repo (repository containing the descriptor.json file, which will describe parameters and where to find the image), and <key>_job (jobscript name and location in the slurm_script_repo). The example shows settings for several segmentation models, including Cellpose, Stardist, CellProfiler, DeepCell, and ImageJ.

Note also that you can override the default Slurm job values using this model configuration, like memory, GPU, time limit, etc. All values for sbatch can be applied (see e.g. here) and will be forwarded to the job command.

For example ```

Run CellPose Slurm with 10 GB GPU

cellposejobgres=gpu:1g.10gb:1

Run CellPose Slurm with 15 GB CPU memory

cellposejobmem=15GB ```

The slurm-config.ini file allows users to configure paths, repositories, and other settings specific to their Slurm cluster and the biomero package, providing flexibility and customization options.

Time Limit on Slurm

An important Slurm job config is the time limit: SBATCH --time=00:45:00 is the default in BIOMERO (max 45 minutes per job). The format is d-hh:mm:ss

WARNING: After this time, the job will timeout and this scenario is not handled by BIOMERO (yet)! You will lose your processing progress.

You can change this timeout value:

Note that it might take longer for Slurm to schedule your job if you put the time very high, or possibly even make it wait indefinitely (see --time explanation in https://slurm.schedmd.com/sbatch.html). We will work on smart timing, but for now it is hardcoded and configurable.

How to add an existing workflow

To add an existing (containerized) workflow, add it to the slurm-config.ini file like in our example: ```ini

-------------------------------------

CELLPOSE SEGMENTATION

-------------------------------------

The path to store the container on the slurmimagespath

cellpose=cellpose

The (e.g. github) repository with the descriptor.json file

cellposerepo=https://github.com/TorecLuik/WNucleiSegmentation-Cellpose/tree/v1.2.7

The jobscript in the 'slurmscriptrepo'

cellposejob=jobs/cellpose.sh `` Here, 1. the name referenced for this workflow iscellpose 2. the location of the container on slurm will be<slurmimagespath>/cellpose 3. the code repository ishttps://github.com/TorecLuik/WNucleiSegmentation-Cellpose 4. the specific version we want isv1.2.7 5. the container can be found on bitbucket - under the path given in the metadata file: [descriptor.json](https://github.com/TorecLuik/W_NucleiSegmentation-Cellpose/blob/v1.2.7/descriptor.json) 5. the location of the jobscript on slurm will be/jobs/cellpose.sh`. - This either references a git repo, where it matches this path, - or it will be the location where the library will generate a jobscript (if no repo is given)

Workflow metadata via descriptor.json

A lot of the automation in this library is based on metadata of the workflow, provided in the source code of the workflow, specifically the descriptor.json.

For example, the OMERO script UI can be generated automatically, based on this descriptor. And also, the Slurm job script can be generated automatically, based on this descriptor.

This metadata scheme is (based on) Cytomine / BIAFLOWS, and you can find details of it and how to create one yourself on their website, e.g. this Cytomine dev-guide or this BIAFLOWS dev-guide.

NOTE! We do not require the cytomine_<...> authentication parameters. They are not mandatory. In fact, we ignore them. But it might be beneficial to make your workflow compatible with Cytomine as well.

Schema

At this point, we are using the cytomine-0.1 schema, in the future we will also want to support other schemas, like Boutiques, commonwl or MLFlow.

We will try to stay compatible with all such schemas (perhaps with less functionality because of missing metadata).

At this point, we do not strictly validate the schema, we just read expected fields from the descriptor.json.

Multiple versions

Note that while it is possible to have multiple versions of the same workflow on Slurm (and select the desired one in OMERO), it is not possible to configure this yet. We assume for now you only want one version to start with. You can always update this config to download a new version to Slurm.

I/O

Unless you change the Slurm job, the input is expected to be: - The infolder parameter - pointing to a folder with multiple input files/images - The gtfolder parameter (Optional) - pointing to a ground-truth input files, generally not needed for prediction / processing purposes. - The outfolder parameter - where you write all your output files (to get copied back to OMERO)

Wrapper.py

Note that you can also use the wrapper.py setup from BIAFLOWS to handle the I/O for you:

```python with BiaflowsJob.from_cli(argv) as bj: # Change following to the actual problem class of the workflow ...

    # 1. Prepare data for workflow
    in_imgs, gt_imgs, in_path, gt_path, out_path, tmp_path = prepare_data(problem_cls, bj, is_2d=True, **bj.flags)

    # 2. Run image analysis workflow
    bj.job.update(progress=25, statusComment="Launching workflow...")

    # Add here the code for running the analysis script

    # 3. Upload data to BIAFLOWS
    ...

    # 4. Compute and upload metrics
    ...

    # 5. Pipeline finished
    ...

```

This wrapper handles the input parameters for you, providing the input images as in_imgs, et cetera. Then you add your commandline call between point 2 and 3, and possibly some preprocessing between point 1 and 2: ```python

add here the code for running the analysis script

```

For example, from Cellpose container workflow: ```python ...

2. Run image analysis workflow

bj.job.update(progress=25, statusComment="Launching workflow...")

Add here the code for running the analysis script

probthresh = bj.parameters.probthreshold diameter = bj.parameters.diameter cpmodel = bj.parameters.cpmodel usegpu = bj.parameters.usegpu print(f"Chosen model: {cpmodel} | Channel {nucchannel} | Diameter {diameter} | Cell prob threshold {probthresh} | GPU {usegpu}") cmd = ["python", "-m", "cellpose", "--dir", tmppath, "--pretrainedmodel", f"{cpmodel}", "--savetif", "--nonpy", "--chan", "{:d}".format(nucchannel), "--diameter", "{:f}".format(diameter), "--cellprobthreshold", "{:f}".format(probthresh)] if usegpu: print("Using GPU!") cmd.append("--usegpu") status = subprocess.run(cmd)

if status.returncode != 0: print("Running Cellpose failed, terminate") sys.exit(1)

Crop to original shape

for bimg in inimgs: shape = resized.get(bimg.filename, None) if shape: img = imageio.imread(os.path.join(tmppath,bimg.filenamenoextension+"cpmasks.tif")) img = img[0:shape[0], 0:shape[1]] imageio.imwrite(os.path.join(outpath,bimg.filename), img) else: shutil.copy(os.path.join(tmppath,bimg.filenamenoextension+"cpmasks.tif"), os.path.join(out_path,bimg.filename))

3. Upload data to BIAFLOWS

`` We get the commandline parameters frombj.parameters(biaflows job) and provide that thecmdcommandline string. Then we run it withsubprocess.run(cmd)and check thestatus`.

We use a tmp_path to store both input and output, then move the output to the out_path after the processing is done.

Also note that some preprocessing is done in step 1: ```python

Make sure all images have at least 224x224 dimensions

and that minshape / maxshape * minshape >= 224

0 = Grayscale (if input RGB, convert to grayscale)

1,2,3 = rgb channel

nucchannel = bj.parameters.nucchannel resized = {} for bfimg in inimgs: ... imageio.imwrite(os.path.join(tmppath, bfimg.filename), img) ```

Another example is this imageJ wrapper: ```python ...

3. Call the image analysis workflow using the run script

nj.job.update(progress=25, statusComment="Launching workflow...")

command = "/usr/bin/xvfb-run java -Xmx6000m -cp /fiji/jars/ij.jar ij.ImageJ --headless --console " \ "-macro macro.ijm \"input={}, output={}, radius={}, minthreshold={}\"".format(inpath, outpath, nj.parameters.ijradius, nj.parameters.ijminthreshold) return_code = call(command, shell=True, cwd="/fiji") # waits for the subprocess to return

if returncode != 0: errdesc = "Failed to execute the ImageJ macro (return code: {})".format(returncode) nj.job.update(progress=50, statusComment=errdesc) raise ValueError(err_desc)

`` Once again, just a commandline--headlesscall toImageJ`, wrapped in this Python script and this container.

How to add your new custom workflow

Building workflows like this will make them more FAIR (also for software) and uses best practices like code versioning and containerization!

Also take a look at our in-depth tutorial on adding a Cellprofiler pipeline as a workflow to BIOMERO.

Here is a shorter version: Say you have a script in Python and you want to make it available on OMERO and Slurm.

These are the steps required:

  1. Rewrite your script to be headless / to be executable on the commandline. This requires handling of commandline parameters as input.
  2. Describe these commandline parameters in a descriptor.json (see previous chapter). E.g. like this.
  3. Describe the requirements / environment of your script in a requirements.txt, like this. Make sure to pin your versions for future reproducability!
  4. Package your script in a Docker container. E.g. like this.
  5. Publish your source code, Dockerfile and descriptor.json to a new Github repository (free for public repositories). You can generate a new repository from template, using this template provided by Neubias (BIAFLOWS). Then replace the input of the files with yours.
  6. (Recommended) Publish a new version of your code (e.g. v1.0.0). E.g. like this.
  7. Publish your container on Dockerhub (free for public repositories), using the same versioning as your source code. Like this from Windows Docker or like this from a commandline.
    • (Recommended) Please use a tag that equals your repository version, instead of latest. This improves reproducability!
    • (Optional) this library grabs latest if the code repository is given no version, but the master branch.
  8. Follow the steps from the previous chapter:
    • Add details to slurm-config.ini
    • Run SlurmClient.from_config(init_slurm=True) (e.g. the init environment script.)

Slurm jobs

Generating jobs

By default, biomero will generate basic slurm jobs for each workflow, based on the metadata provided in descriptor.json and a job template. It will replace $PARAMS with the (non-cytomine_) parameters given in descriptor.json. See also the Parameters section below.

How to add your own Slurm job

You could change the job template and generate new jobs, by running SlurmClient.from_config(init_slurm=True) (or slurmClient.update_slurm_scripts(generate_jobs=True))

Or you could add your jobs to a Github repository and reference this in slurm-config.ini, both in the field slurm_script_repo and every <workflow>_job:

```ini

-------------------------------------

REPOSITORIES

-------------------------------------

A (github) repository to pull the slurm scripts from.

Note:

If you provide no repository, we will generate scripts instead!

Based on the job_template and the descriptor.json

slurmscriptrepo=https://github.com/TorecLuik/slurm-scripts

[MODELS]

-------------------------------------

Model settings

-------------------------------------

...

-------------------------------------

CELLPOSE SEGMENTATION

-------------------------------------

The path to store the container on the slurmimagespath

cellpose=cellpose

The (e.g. github) repository with the descriptor.json file

cellposerepo=https://github.com/TorecLuik/WNucleiSegmentation-Cellpose/tree/v1.2.7

The jobscript in the 'slurmscriptrepo'

cellpose_job=jobs/cellpose.sh ```

You can update the jobs by calling slurmClient.update_slurm_scripts(), which will pull the repository('s default branch).

This might be useful, for example if you have other hardware requirements for your workflow(s) than the default job asks for, or if you want to run more than just 1 singularity container.

Parameters

The library will provide the parameters from your descriptor.json as environment variables to the call. E.g. set DIAMETER=0; sbatch ....

Other environment variables provided are: - DATA_PATH - Made of <slurm_data_path>/<input_folder>. The base dir for data folders for this execution. We expect it to contain /data/in, /data/in and /data/in folders in our template and data transfer setup. - IMAGE_PATH - Made of <slurm_images_path>/<model_path>, as described in slurm-config.ini - IMAGE_VERSION - SINGULARITY_IMAGE - Already uses the IMAGE_VERSION above, as <container_name>_<IMAGE_VERSION>.sif

We (potentially) override the following Slurm job settings programmatically: - --mail-user={email} (optional) - --time={time} (optional) - --output=omero-%4j.log (mandatory)

We could add more overrides in the future, and perhaps make them available as global configuration variables in slurm-config.ini.

Batching

We can simply use Slurm for running your workflow 1:1, so 1 job to 1 workflow. This could speed up your workflow already, as Slurm servers are likely equipped with strong CPU and GPU.

However, Slurm is also built for parallel processing on multiple (or the same) servers. We can accomplish this by running multiple jobs for 1 workflow. This is simple for embarrassingly parallel tasks, like segmenting multiple images: just provide each job with a different set of input images. If you have 100 images, you could run 10 jobs on 10 images and (given enough resources available for you on Slurm) that could be 10x faster. In theory, you could run 1 job per image, but at some point you run into the overhead cost of Slurm (and OMERO) and it might actually slow down again (as you incur this cost a 100 times instead of 10 times).

Using the GPU on Slurm

Note, the default Slurm job script will not request any GPU resources.

This is because GPU resources are expensive and some programs do not work with GPU.

We can instead enable the use of GPU by either providing our own Slurm job scripts, or setting an override value in slurm-config.ini:

```ini

-------------------------------------

CELLPOSE SEGMENTATION

-------------------------------------

The path to store the container on the slurmimagespath

cellpose=cellpose

The (e.g. github) repository with the descriptor.json file

cellposerepo=https://github.com/TorecLuik/WNucleiSegmentation-Cellpose/tree/v1.2.7

The jobscript in the 'slurmscriptrepo'

cellpose_job=jobs/cellpose.sh

Override the default job values for this workflow

Or add a job value to this workflow

If you don't want to override, comment out / delete the line.

Run CellPose Slurm with 10 GB GPU

cellposejobgres=gpu:1g.10gb:1 ```

In fact, any ..._job_...=... configuration value will be forwarded to the Slurm commandline.

Slurm commandline parameters override those in the script, so the above one requests 1 10GB gpu for Cellpose.

E.g. you could also set the time limit higher:

```ini

-------------------------------------

CELLPOSE SEGMENTATION

-------------------------------------

The path to store the container on the slurmimagespath

cellpose=cellpose

The (e.g. github) repository with the descriptor.json file

cellposerepo=https://github.com/TorecLuik/WNucleiSegmentation-Cellpose/tree/v1.2.7

The jobscript in the 'slurmscriptrepo'

cellpose_job=jobs/cellpose.sh

Override the default job values for this workflow

Or add a job value to this workflow

If you don't want to override, comment out / delete the line.

Run with longer time limit

cellposejobtime=00:30:00 ```

Now the CellPose job should run for maximum of 30 minutes, instead of the default.

Transfering data

We have added methods to this library to help with transferring data to the Slurm cluster, using the same SSH connection (via SCP or SFTP).

  • slurmClient.transfer_data(...)
    • Transfer data to the Slurm cluster
  • slurmClient.unpack_data(...)
    • Unpack zip file on the Slurm cluster
  • slurmClient.zip_data_on_slurm_server(...)
    • Zip data on the Slurm cluster
  • slurmClient.copy_zip_locally(...)
    • Transfer (zip) data from the Slurm cluster
  • slurmClient.get_logfile_from_slurm(...)
    • Transfer logfile from the Slurm cluster

And more; see the docstring of SlurmClient and example OMERO scripts.

Testing the Python code

You can test the library by installing the extra test dependencies:

  1. Create a venv to isolate the python install: python -m venv venvTest

  2. Install OSC with test dependencies: venvTest/Scripts/python -m pip install .[test]

  3. Run pytest from this venv: venvTest/Scripts/pytest

Logging

Debug logging can be enabled with the standard python logging module, for example with logging.basicConfig():

``` import logging

logging.basicConfig(level='DEBUG') ```

For example in (the __init__ of) a script:

Python if __name__ == '__main__': logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', stream=sys.stdout) runScript()

Owner

  • Name: NL-BioImaging
  • Login: NL-BioImaging
  • Kind: organization

Citation (CITATION.cff)

# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: 'BIOMERO: BioImage analysis in OMERO'
message: >-
  If you use this software, please cite it the article from preferred-citation
type: software
authors:
  - given-names: Torec Tom
    family-names: Luik
    email: t.t.luik@amsterdamumc.nl
    affiliation: Amsterdam UMC
    orcid: 'https://orcid.org/0009-0007-9361-0586'
  - given-names: Rodrigo
    family-names: Rosas-Bertolini
    affiliation: Amsterdam UMC
  - given-names: Eric A.J.
    family-names: Reits
    affiliation: Amsterdam UMC
  - given-names: Ron A.
    family-names: Hoebe
    affiliation: Amsterdam UMC
  - given-names: Przemek M.
    family-names: Krawczyk
    affiliation: Amsterdam UMC
identifiers:
  - type: url
    value: 'https://arxiv.org/abs/2402.00734'
    description: Preprint on arxiv
  - type: doi
    value: 10.5281/zenodo.8108214
    description: ZENODO DOI for all versions
  - type: doi
    value: 10.1016/j.patter.2024.101024
    description: Published paper in Cell Patterns
repository-code: 'https://github.com/NL-BioImaging/biomero'
url: 'https://nl-bioimaging.github.io/biomero/'
repository: 'https://github.com/NL-BioImaging/biomero-scripts'
repository-artifact: 'https://pypi.org/project/biomero/'
abstract: >-
  In the rapidly evolving field of bioimaging, the
  integration and orchestration of Findable, Accessible,
  Interoperable, and Reusable (FAIR) image analysis
  workflows remains a challenge. We introduce BIOMERO, a
  bridge connecting OMERO, a renowned bioimaging data
  management platform, FAIR workflows and high-performance
  computing (HPC) environments. BIOMERO, featuring our
  opensource Python library "OMERO Slurm Client",
  facilitates seamless execution of FAIR workflows,
  particularly for large datasets from High Content or High
  Throughput Screening. BIOMERO empowers researchers by
  eliminating the need for specialized knowledge, enabling
  scalable image processing directly from OMERO. BIOMERO
  notably supports the sharing and utilization of FAIR
  workflows between OMERO, Cytomine/BIAFLOWS, and other
  bioimaging communities. BIOMERO will promote the
  widespread adoption of FAIR workflows, emphasizing
  reusability, across the realm of bioimaging research. Its
  user-friendly interface will empower users, including
  those without technical expertise, to seamlessly apply
  these workflows to their datasets, democratizing the
  utilization of AI by the broader research community.
keywords:
  - python
  - omero
  - slurm
  - high-performance-computing
  - fair
  - image-analysis
  - bioimaging
  - cytomine
  - biomero
  - biaflows
  - high-throughput-screening
  - high-content-screening
license: Apache-2.0
preferred-citation:
  type: article
  authors:
    - family-names: "Luik"
      given-names: "Torec T."
      orcid: "https://orcid.org/0009-0007-9361-0586"
    - family-names: "Rosas-Bertolini"
      given-names: "Rodrigo"
    - family-names: "Reits"
      given-names: "Eric A.J."
    - family-names: "Hoebe"
      given-names: "Ron A."
    - family-names: "Krawczyk"
      given-names: "Przemek M."
  title: "BIOMERO: A scalable and extensible image analysis framework"
  journal: "Patterns"
  volume: "5"
  issue: "8"
  year: 2024
  month: 8
  doi: "10.1016/j.patter.2024.101024"
  url: "https://doi.org/10.1016/j.patter.2024.101024"
  publisher:
    name: "Cell Press"

GitHub Events

Total
  • Create event: 7
  • Issues event: 1
  • Release event: 8
  • Watch event: 4
  • Delete event: 1
  • Issue comment event: 2
  • Push event: 32
  • Pull request review comment event: 5
  • Pull request review event: 8
  • Pull request event: 3
  • Fork event: 2
Last Year
  • Create event: 7
  • Issues event: 1
  • Release event: 8
  • Watch event: 4
  • Delete event: 1
  • Issue comment event: 2
  • Push event: 32
  • Pull request review comment event: 5
  • Pull request review event: 8
  • Pull request event: 3
  • Fork event: 2

Committers

Last synced: about 1 year ago

All Time
  • Total Commits: 223
  • Total Committers: 5
  • Avg Commits per committer: 44.6
  • Development Distribution Score (DDS): 0.43
Past Year
  • Commits: 127
  • Committers: 4
  • Avg Commits per committer: 31.75
  • Development Distribution Score (DDS): 0.031
Top Committers
Name Email Commits
Luik t****k@a****l 127
Torec Luik t****k@a****l 91
dependabot[bot] 4****] 2
Johannes Müller 3****r 2
Core Facility Cellular Imaging c****g@a****l 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 8
  • Total pull requests: 4
  • Average time to close issues: 7 days
  • Average time to close pull requests: 9 days
  • Total issue authors: 2
  • Total pull request authors: 3
  • Average comments per issue: 1.13
  • Average comments per pull request: 0.0
  • Merged pull requests: 4
  • Bot issues: 0
  • Bot pull requests: 1
Past Year
  • Issues: 4
  • Pull requests: 2
  • Average time to close issues: N/A
  • Average time to close pull requests: 12 days
  • Issue authors: 2
  • Pull request authors: 1
  • Average comments per issue: 0.25
  • Average comments per pull request: 0.0
  • Merged pull requests: 2
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • TorecLuik (6)
  • maartenpaul (2)
Pull Request Authors
  • maartenpaul (4)
  • jo-mueller (2)
  • dependabot[bot] (2)
Top Labels
Issue Labels
bug (5) enhancement (3)
Pull Request Labels
dependencies (2)

Packages

  • Total packages: 2
  • Total downloads:
    • pypi 242 last-month
  • Total dependent packages: 0
    (may contain duplicates)
  • Total dependent repositories: 0
    (may contain duplicates)
  • Total versions: 34
  • Total maintainers: 2
pypi.org: biomero

A python library for easy connecting between OMERO (jobs) and a Slurm cluster

  • Homepage: https://github.com/NL-BioImaging/biomero
  • Documentation: https://nl-bioimaging.github.io/biomero/
  • License: Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
  • Latest release: 1.14.0
    published over 1 year ago
  • Versions: 30
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 234 Last month
Rankings
Dependent packages count: 9.9%
Average: 37.8%
Dependent repos count: 65.6%
Maintainers (1)
Last synced: 6 months ago
pypi.org: omero-slurm-client

deprecated omero_slurm_client package, use biomero instead

  • Versions: 4
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 8 Last month
Rankings
Dependent packages count: 7.3%
Average: 37.9%
Dependent repos count: 68.6%
Maintainers (1)
Last synced: 6 months ago