# emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*-# vi: set ft=python sts=4 ts=4 sw=4 et:## Copyright 2021 The NiPreps Developers <nipreps@gmail.com>## Licensed under the Apache License, Version 2.0 (the "License");# you may not use this file except in compliance with the License.# You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.## We support and encourage derived works from this project, please read# about our expectations at## https://www.nipreps.org/community/licensing/#"""Supercharging Nipype's workflow engine.Add special features to the Nipype's vanilla workflows"""fromnipype.pipelineimportengineaspe
[docs]classLiterateWorkflow(pe.Workflow):"""Controls the setup and execution of a pipeline of processes."""def__init__(self,name,base_dir=None):""" Create a workflow object. Parameters ---------- name : alphanumeric :obj:`str` unique identifier for the workflow base_dir : :obj:`str`, optional path to workflow storage """super().__init__(name,base_dir)self.__desc__=Noneself.__postdesc__=None
[docs]defvisit_desc(self):"""Build a citation boilerplate by visiting all workflows."""desc=[]ifself.__desc__:desc+=[self.__desc__]fornodeinpe.utils.topological_sort(self._graph)[0]:ifisinstance(node,LiterateWorkflow):add_desc=node.visit_desc()ifadd_descnotindesc:desc.append(add_desc)ifself.__postdesc__:desc+=[self.__postdesc__]return''.join(desc)