88# the Free Software Foundation, either version 3 of the License, or
99# (at your option) any later version.
1010
11- from typing import Dict , List , Optional
11+ from typing import Dict , Optional
1212
1313from .abstract_recipe import WorkflowRecipe
1414from ...common .file import FileLink
1717
1818
1919class SRASearchRecipe (WorkflowRecipe ):
20- """A SRA Search workflow recipe class for creating synthetic workflow traces.
20+ """An SRA Search workflow recipe class for creating synthetic workflow traces.
2121
2222 :param num_accession: The number of NCBI accession numbers.
2323 :type num_accession: int
@@ -105,7 +105,7 @@ def from_num_accession(cls,
105105 :param output_file_size_factor: The factor of which tasks output files size will be increased/decreased.
106106 :type output_file_size_factor: float
107107
108- :return: A SRA Search workflow recipe object that will generate synthetic workflows
108+ :return: An SRA Search workflow recipe object that will generate synthetic workflows
109109 using the defined number of pairs.
110110 :rtype: SRASearchRecipe
111111 """
@@ -121,7 +121,7 @@ def from_num_accession(cls,
121121
122122 def build_workflow (self , workflow_name : Optional [str ] = None ) -> Workflow :
123123 """
124- Generate a synthetic workflow trace of a SRA Search workflow.
124+ Generate a synthetic workflow trace of an SRA Search workflow.
125125
126126 :param workflow_name: The workflow name
127127 :type workflow_name: int
0 commit comments