From 521c25c3a132795847c81cc98ca0835b16581d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Al=C3=A1n=20Mu=C3=B1oz?= <alan.munoz@ed.ac.uk> Date: Tue, 24 Jan 2023 14:06:59 +0000 Subject: [PATCH] add cli info --- README.md | 45 ++++++++++++++++++--------------------------- 1 file changed, 18 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index b6a9f36e..95380969 100644 --- a/README.md +++ b/README.md @@ -9,39 +9,30 @@ End-to-end processing of cell microscopy time-lapses. ALIBY automates segmentation, tracking, lineage predictions, post-processing and report production. It leverages the existing Python ecosystem and open-source scientific software available to produce seamless and standardised pipelines. ## Quickstart Documentation +Installation of [VS Studio](https://visualstudio.microsoft.com/downloads/#microsoft-visual-c-redistributable-for-visual-studio-2022) Native MacOS support for is under work, but you can use containers (e.g., Docker, Podman) in the meantime. -We use (and recommend) [OMERO](https://www.openmicroscopy.org/omero/) to manage our microscopy database, but ALIBY can process both locally-stored experiments and remote ones hosted on a server. - -### Setting up a server -For testing and development, the easiest way to set up an OMERO server is by -using Docker images. -[The software carpentry](https://software-carpentry.org/) and the [Open - Microscopy Environment](https://www.openmicroscopy.org), have provided -[instructions](https://ome.github.io/training-docker/) to do this. - -The `docker-compose.yml` file can be used to create an OMERO server with an -accompanying PostgreSQL database, and an OMERO web server. -It is described in detail -[here](https://ome.github.io/training-docker/12-dockercompose/). +For analysing local data + ```python +pip install aliby + ``` -Our version of the `docker-compose.yml` has been adapted from the above to -use version 5.6 of OMERO. +and if you want to use an OMERO server: + ```python +pip install aliby[network] + ``` -To start these containers (in background): -```shell script -cd pipeline-core -docker-compose up -d -``` -Omit the `-d` to run in foreground. +See our [installation instructions]( https://aliby.readthedocs.io/en/latest/INSTALL.html ) for more details. -To stop them, in the same directory, run: -```shell script -docker-compose stop -``` +### CLI -### Installation + ```bash +aliby-run --expt_id EXPT_PATH --distributed 4 --tps None + ``` -See our [installation instructions]( https://aliby.readthedocs.io/en/latest/INSTALL.html ) for more details. +And to run Omero servers, the basic arguments are shown: + ```bash + aliby-run --expt_id XXX --host SERVER.ADDRESS --user USER --password PASSWORD + ``` ### Raw data access -- GitLab