Skip to content
Snippets Groups Projects
Commit 7a9380ac authored by Alán Muñoz's avatar Alán Muñoz
Browse files

docs(index): Include pipeline in index

parent 8e2efc00
No related branches found
No related tags found
No related merge requests found
...@@ -11,11 +11,12 @@ End-to-end processing of cell microscopy time-lapses. ALIBY automates segmentati ...@@ -11,11 +11,12 @@ End-to-end processing of cell microscopy time-lapses. ALIBY automates segmentati
## Quickstart Documentation ## 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. 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.
For analysing local data To analyse local data
```bash ```bash
pip install aliby # aliby[network] if you want to access an OMERO server pip install aliby
``` ```
Add any of the optional flags `omero` and `utils` (e.g., `pip install aliby[omero, utils]`). `omero` provides tools to connect with an OMERO server and `utils` provides visualisation, user interface and additional deep learning tools.
See our [installation instructions]( https://aliby.readthedocs.io/en/latest/INSTALL.html ) for more details. See our [installation instructions]( https://aliby.readthedocs.io/en/latest/INSTALL.html ) for more details.
### CLI ### CLI
......
...@@ -4,7 +4,6 @@ ...@@ -4,7 +4,6 @@
contain the root `toctree` directive. contain the root `toctree` directive.
.. toctree:: .. toctree::
:hidden:
Home page <self> Home page <self>
Installation <INSTALL.md> Installation <INSTALL.md>
......
#!/usr/bin/env jupyter """
Command Line Interface utilities.
"""
#!/usr/bin/env jupyter """
Models that link regions of interest, such as mothers and buds.
"""
#!/usr/bin/env jupyter """
Extracted from the baby repository. Bud Tracker algorithm to link
cell outlines as mothers and buds.
"""
# /usr/bin/env jupyter
import pickle import pickle
from os.path import join from os.path import join
......
...@@ -21,7 +21,7 @@ class LineageProcessParameters(ParametersABC): ...@@ -21,7 +21,7 @@ class LineageProcessParameters(ParametersABC):
class LineageProcess(PostProcessABC): class LineageProcess(PostProcessABC):
""" """
Lineage process that must be passed a (N,3) lineage matrix (where the coliumns are trap, mother, daughter respectively) Lineage process that must be passed a (N,3) lineage matrix (where the columns are trap, mother, daughter respectively)
""" """
def __init__(self, parameters: LineageProcessParameters): def __init__(self, parameters: LineageProcessParameters):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment