pipeline2dot¶
- lsst.ctrl.mpexec.pipeline2dot(pipeline: Pipeline | Iterable[TaskDef], file: Any) None¶
- Convert - Pipelineinto GraphViz digraph.- This method is mostly for documentation/presentation purposes. Unlike other methods this method does not validate graph consistency. - Parameters:
- pipelinelsst.pipe.base.Pipeline
- Pipeline description. 
- filestror file object
- File where GraphViz graph (DOT language) is written, can be a file name or file object. 
 
- pipeline
- Raises:
- OSErroris raised when output file cannot be open.
- ImportErroris raised when task class cannot be imported.
- MissingTaskFactoryErroris raised when TaskFactory is needed but not
- provided.