This is the repository for storing the CHIME Pipeline.
Development should be done along the lines of Github
Flow. This is the same model we
use for ch_util
.
Important notes:
virtualenv
with mkchimeenv
, located here.The idea behind this repository is to keep track of the CHIME pipeline development, such that the union of the input data and this repository always gives the same output. This requires that we keep track of not only the code and scripts in this repository, but also any dependencies (discussed below).
As far as possible the pipeline code should be using Kiyo's pipeline task module caput.pipeline
(doc).
Tasks should go into the appropriate subdirectory of ch_pipeline/
. Ask for clarification if not clear.
Code should adhere to the CHIME contribution guidelines. If you haven't looked at it please do so.
Code should be well documented, with a docstring expected for each public function, class or method. These should be done according to Numpy docstring style (guide).
Code should also be well commented (not the same as well documented). Try and put in comments that explain logically what each section of code is trying to achieve, with specifics about any non-obvious parts.
As mentioned above, this should be done a la Github Flow. Development should
generally be done around reasonably small, self contained, features, and should
be tracked in specific feature branches. These should not be long lived, as soon
as the feature is finished and tested, file a Pull Request, get it reviewed by
someone else, and when given the okay, merge the code and delete the branch. Any
new development should be branched off from master
again.
Please don't use long lived, person specific branches e.g. richard-dev
.
Dependencies should be python packages installable with pip
. The list of
dependencies is kept in the pyproject.toml
file. This dependency list can
contain references to exact versions of dependencies, using both version tags,
and commit hashes. An example dependency list that you might find in
pyproject.toml
is given below:
dependencies = [
"caput-master @ git+https://github.com/radiocosmology/caput.git@ee1c55ea4cf8cb7857af2ef3adcb2439d876768d",
"ch_util @ git+https://github.com/chime-experiment/ch_util.git@e33b174696509b158c15cf0bfc27f4cb2b0c6406#egg=ch_util",
"cora @ git+https://github.com/radiocosmology/cora.git@v1.0.0",
"driftscan @ git+https://github.com/radiocosmology/driftscan.git@v1.0.0"
]
Here, the first two requirements specify an exact git hash, whereas the second two use git tags as a shorthand.
These dependencies can be installed using:
pip install .
This is automatically done by the mkchimeenv
script.
Additional, optional dependencies can also be specified in pyproject.toml
, in the
[project.optional-dependencies]
section. Each list of optional dependencies needs a tag
and should be specified using syntax similar to this:
[project.optional-dependencies]
my_tag = [
"my_optional_dependency",
"another_optional_dependency"
]
These optional dependencies may be installed with pip by using the tag, e.g.:
pip install .[my_tag]
The script mkchimeenv
, located here, will automatically install a
virtualenv containing all the pipeline
dependencies from the requirements.txt
file. This gives a fresh, self-contained installation of the pipeline to work with. Before use, you should activate it using:
$ source VENV_NAME/venv/bin/activate
where VENV_NAME
was the name you specified when invoking mkchimeenv
.