-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
u/parejkoj/pipeline: improve docs on config overrides #430
Open
parejkoj
wants to merge
3
commits into
main
Choose a base branch
from
u/parejkoj/pipeline-override-docfix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -451,15 +451,11 @@ class name of the python camera object. For instance, for an ``obs_subaru`` | |
|
||
instrument: lsst.obs.subaru.HyperSuprimeCam | ||
|
||
The ``instrument`` key is available to all `Pipeline`\s, but by convention | ||
obs\_* packages typically will contain `Pipeline`\s that are customized for | ||
the instrument they represent, inside a directory named ''pipelines''. This | ||
includes relevant configs, `PipelineTask` (re)declarations, instrument label, | ||
etc. These pipelines can be found inside a directory named `Pipeline`\s that | ||
lives at the root of each obs\_ package. | ||
|
||
These `Pipeline`\ s enable you to run a `Pipeline` that is configured for the | ||
desired camera, or can serve as a base for further `Pipeline`\ s to import. | ||
The ``instrument`` key is available to all `Pipeline`\s, and by convention is | ||
used in instrument-specific ``pipelines`` sub-directories, for example | ||
``ap_pipe/pipelines/HSC`` for the instrument above. These `Pipeline`\ s enable | ||
you to run a `Pipeline` that is configured for the desired camera, or can | ||
serve as a base for further `Pipeline`\ s to import. | ||
|
||
.. _pipeline-running-intro: | ||
|
||
|
@@ -544,8 +540,8 @@ consistency throughout the software stack. | |
named as above. | ||
* `Pipeline`\ s should contain a useful description of what the `Pipeline` is | ||
intended to do. | ||
* `Pipeline`\ s should be placed in a directory called ``Pipelines`` at the top | ||
* `Pipeline`\ s should be placed in a directory called ``pipelines`` at the top | ||
level of a package. | ||
* Instrument packages should provide `Pipeline`\ s that override standard | ||
* High level pipeline packages (e.g. ``ap_pipe``, ``drp_pipe``) should provide `Pipeline`\ s that override standard | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
`Pipeline`\ s and are specifically configured for that instrument (if | ||
applicable). |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't see any documentation of what order config settings are applied in (field defaults,
setDefaults
, general obs overrides, instrument obs overrides, top-level pipelines, included pipelines, and maybe other stuff I'm forgetting). It would be hard for the reader to make informed decisions without that kind of big picture.