We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ecf43 commit 761dcb9Copy full SHA for 761dcb9
1 file changed
wfcommons/wfbench/translator/streamflow.py
@@ -38,6 +38,12 @@ def __init__(self,
38
super().__init__(workflow, logger)
39
40
def translate(self, output_folder: pathlib.Path) -> None:
41
+ """
42
+ Translate a workflow benchmark description (WfFormat) into an actual workflow application.
43
+
44
+ :param output_folder: The path to the folder in which the workflow benchmark will be generated.
45
+ :type output_folder: pathlib.Path
46
47
# Perform the CWL translation (which will create the output folder)
48
from wfcommons.wfbench import CWLTranslator
49
cwl_translator = CWLTranslator(workflow=self.workflow, logger=self.logger)
0 commit comments