Lightweight pipeline engine for LSST DESC
Project description
Ceci Pipeline Software
“Ceci n'est pas une pipeline.”
A lightweight parsl-based framework for running DESC pipelines.
This is now beta status.
Install
pip install ceci
This installs the simplest version of ceci, if you want to be able
to use the parsl backend, install instead ceci[parsl]
.
You can then run an example pipeline from the ceci_lib directory using:
export PYTHONPATH=$PYTHONPATH:$PWD
ceci test/test.yml
Adding Pipeline Stages
To make new pipeline stages, you must:
- make a new python package somewhere else, to contain your stages.
- the package must have an
__init__.py
file that should import from.
all the stages you want to use. - it must also have a file
__main__.py
with the same contents as the example inceci_example
. - each stage is its own class inheriting from
ceci.PipelineStage
. Each must define its name, inputs, and outputs, and a run method. - the run method should use the parent methods from
PipelineStage
to get its inputs and outputs etc.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
ceci-0.0.0.tar.gz
(46.0 kB
view details)
File details
Details for the file ceci-0.0.0.tar.gz
.
File metadata
- Download URL: ceci-0.0.0.tar.gz
- Upload date:
- Size: 46.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eb8af1c3d7e5f40416fb49e24d448e7b19f3693e4f74fe8499bff76f21d71d92 |
|
MD5 | b341687eca476cfc28535ea867ece8f5 |
|
BLAKE2b-256 | 13f944fe16eb5476458906fa5e9dfc24a6beba296e9c22f745ae63b128226574 |