PipelineIR¶
- class lsst.pipe.base.pipelineIR.PipelineIR(loaded_yaml)¶
Bases:
objectIntermediate representation of a pipeline definition
- Parameters:
- loaded_yaml
dict A dictionary which matches the structure that would be produced by a yaml reader which parses a pipeline definition document
- loaded_yaml
- Raises:
- ValueError
If a pipeline is declared without a description
If no tasks are declared in a pipeline, and no pipelines are to be inherited
If more than one instrument is specified
If more than one inherited pipeline share a label
Methods Summary
from_file(filename)Create a
PipelineIRobject from the document specified by thefrom_string(pipeline_string)Create a
PipelineIRobject from a string formatted like a pipeline documentfrom_uri(uri)Create a
PipelineIRobject from the document specified by the input uri.subset_from_labels(labelSpecifier)Subset a pipelineIR to contain only labels specified in labelSpecifier.
to_file(filename)Serialize this
PipelineIRobject into a yaml formatted string andConvert to a representation used in yaml serialization
write_to_uri(uri)Serialize this
PipelineIRobject into a yaml formatted string and write the output to a file at the specified uri.Methods Documentation
- classmethod from_file(filename: str) PipelineIR¶
- Create a
PipelineIRobject from the document specified by the input path.
- Parameters:
- filename
str Location of document to use in creating a
PipelineIRobject.
- filename
- Returns:
- pipelineIR
PipelineIR The loaded pipeline
- pipelineIR
- Create a
- classmethod from_string(pipeline_string: str)¶
Create a
PipelineIRobject from a string formatted like a pipeline document- Parameters:
- pipeline_string
str A string that is formatted according like a pipeline document
- pipeline_string
- classmethod from_uri(uri: Union[str, ButlerURI]) PipelineIR¶
Create a
PipelineIRobject from the document specified by the input uri.- Parameters:
- uri: `str` or `ButlerURI`
Location of document to use in creating a
PipelineIRobject.
- Returns:
- pipelineIR
PipelineIR The loaded pipeline
- pipelineIR
- subset_from_labels(labelSpecifier: Set[str]) PipelineIR¶
Subset a pipelineIR to contain only labels specified in labelSpecifier.
- Parameters:
- Returns:
- pipeline
PipelineIR A new pipelineIR object that is a subset of the old pipelineIR
- pipeline
- Raises:
- ValueError
Raised if there is an issue with specified labels
Notes
This method attempts to prune any contracts that contain labels which are not in the declared subset of labels. This pruning is done using a string based matching due to the nature of contracts and may prune more than it should. Any labeled subsets defined that no longer have all members of the subset present in the pipeline will be removed from the resulting pipeline.
- to_file(filename: str)¶
- Serialize this
PipelineIRobject into a yaml formatted string and write the output to a file at the specified path.
- Parameters:
- filename
str Location of document to write a
PipelineIRobject.- .. deprecated:: v21.0,
This has been replaced with
write_to_uri. will be removed after v23
- filename
- Serialize this
- write_to_uri(uri: Union[ButlerURI, str])¶
Serialize this
PipelineIRobject into a yaml formatted string and write the output to a file at the specified uri.- Parameters:
- uri: `str` or `ButlerURI`
Location of document to write a
PipelineIRobject.