1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
|
.. include:: ../global.inc
.. role:: raw-html(raw)
:format: html
:raw-html:`<style> .highlight-blue {color:blue} </style>`
:raw-html:`<style> .highlight-red {color:red} </style>`
.. role:: highlight-red
.. role:: highlight-blue
.. :highlight-red:`Test.`
.. _new_syntax.worked_example:
################################################################################
Worked Example for New Object orientated syntax for Ruffus in Version 2.6
################################################################################
Ruffus Pipelines can now be created and manipulated directly using :highlight-red:`Pipeline` and :highlight-red:`Task` objects instead of via decorators.
For clarity, we use named parameters in this example. You can just as easily pass all parameters by position.
==============================================================================
Worked example
==============================================================================
.. note::
Remember to look at the example code:
* :ref:`new_syntax.worked_example.code`
This example pipeline is a composite of three separately subpipelines each created by a python
function ``make_pipeline1()`` which is joined to another subpipeline created by ``make_pipeline2()``
.. image:: ../images/subpipeline_example.png
:scale: 50
Although there are 13 different stages to this pipeline, we are using the same three python functions
(but supplying them with different data).
.. <<python
.. code-block:: python
def task_originate(o):
# Makes new files
...
def task_m_to_1(i, o):
# Merges files together
...
def task_1_to_1(i, o):
# One input per output
...
..
python
______________________________________________________________________________
Pipeline factory
______________________________________________________________________________
Let us start with a python function which makes a full formed sub pipeline useable as a modular building block
.. <<python
.. code-block:: python
:emphasize-lines: 1
# Pipelines need to have a unique name
def make_pipeline1(pipeline_name,
starting_file_names):
pass
..
python
Note that we are passing the pipeline name as the first parameter.
All pipelines must have unique names
.. <<python
.. code-block:: python
test_pipeline = Pipeline(pipeline_name)
new_task = test_pipeline.originate(task_func = task_originate,
output = starting_file_names)\
.follows(mkdir(tempdir), mkdir(tempdir + "testdir", tempdir + "testdir2"))\
.posttask(touch_file(tempdir + "testdir/whatever.txt"))
..
python
A new task is returned from ``test_pipeline.originate(...)`` which is then modified via ``.follows(...)``
and ``.posttask(...)``. This is familiar Ruffus syntax only slightly rearranged.
We can change the ``output=starting_file_names`` later using ``set_output()`` but sometimes it
is just more convenient to pass this as a parameter to the pipeline factory function.
.. note::
The first, mandatory parameter is ``task_func = task_originate`` which is the python function for this task
______________________________________________________________________________
Three different ways of referring to input Tasks
______________________________________________________________________________
Just as in traditional Ruffus, Pipelines are created by setting the **input** of one task to (the **output** of) its predecessor.
.. <<python
.. code-block:: python
:emphasize-lines: 3,11,12,18
test_pipeline.transform(task_func = task_m_to_1,
name = "add_input",
# Lookup Task from function task_originate()
# Needs to be unique in the pipeline
input = task_originate,
filter = regex(r"(.*)"),
add_inputs = add_inputs(tempdir + "testdir/whatever.txt"),
output = r"\1.22")
test_pipeline.transform(task_func = task_1_to_1,
name = "22_to_33",
# Lookup Task from unique Task name = "add_input"
# Function name is not unique in the pipeline
input = output_from("add_input"),
filter = suffix(".22"),
output = ".33")
tail_task = test_pipeline.transform(task_func = task_1_to_1,
name = "33_to_44",
# Ask test_pipeline to lookup Task name = "22_to_33"
input = test_pipeline["22_to_33"],
filter = suffix(".33"),
output = ".44")
..
python
______________________________________________________________________________
Head and Tail Tasks
______________________________________________________________________________
.. <<python
.. code-block:: python
:emphasize-lines: 1,7
# Set the tail task: test_pipeline can be used as an input
# without knowing the details of task names
#
# Use Task object=tail_task directly
test_pipeline.set_tail_tasks([tail_task])
# Set the head task: we can feed input into test_pipeline
# without knowing the details of task names
test_pipeline.set_head_tasks([test_pipeline[task_originate]])
return test_pipeline
..
python
By calling ``set_tail_tasks`` and ``set_head_tasks`` to assign the first and last stages of
``test_pipeline``, we can later use ``test_pipeline`` without knowing its component Tasks.
The last step is to return the fully formed pipeline instance
______________________________________________________________________________
Another Pipeline factory
______________________________________________________________________________
.. <<python
.. code-block:: python
:emphasize-lines: 9
#
# Returns a fully formed sub pipeline useable as a building block
#
def make_pipeline2( pipeline_name = "pipeline2", do_not_define_head_task = False):
test_pipeline2 = Pipeline(pipeline_name)
test_pipeline2.transform(task_func = task_1_to_1,
# task name
name = "44_to_55",
# placeholder: will be replaced later with set_input()
input = None,
filter = suffix(".44"),
output = ".55")
test_pipeline2.merge( task_func = task_m_to_1,
input = test_pipeline2["44_to_55"],
output = tempdir + "final.output",)
# Lookup task using function name
# This is unique within pipeline2
test_pipeline2.set_tail_tasks([test_pipeline2[task_m_to_1]])
# Lookup task using task name
test_pipeline2.set_head_tasks([test_pipeline2["44_to_55"]])
return test_pipeline2
..
python
make_pipeline2() looks very similar to make_pipeline1 except that the input for the **head** task
is left blank for assigning later
Note that we can use ``task_m_to_1`` to look up a Task (``test_pipeline2[task_m_to_1]``) even
though this function is also used by test_pipeline. There is no ambiguity so long as only one
task in ``test_pipeline2`` uses this python function.
______________________________________________________________________________
Creating multiple copies of a pipeline
______________________________________________________________________________
Let us call ``make_pipeline1()`` to make two completely independent pipelines (``"pipeline1a"`` and ``"pipeline1b"``)
.. <<python
.. code-block:: python
:emphasize-lines: 1
# First two pipelines are created as separate instances by make_pipeline1()
pipeline1a = make_pipeline1(pipeline_name = "pipeline1a", starting_file_names = [tempdir + ss for ss in ("a.1", "b.1")])
pipeline1b = make_pipeline1(pipeline_name = "pipeline1b", starting_file_names = [tempdir + ss for ss in ("c.1", "d.1")])
..
python
We can also create a new instance of a pipeline by **"cloning"** an existing pipeline
.. <<python
.. code-block:: python
:emphasize-lines: 1
# pipeline1c is a clone of pipeline1b
pipeline1c = pipeline1b.clone(new_name = "pipeline1c")
..
python
Because ``"pipeline1c"`` is a clone of ``"pipeline1b"``, it shares exactly the same parameters.
Let us change this by giving ``"pipeline1c"`` its own starting files.
We can do this for normal (e.g. **transform**, **split**, **merge** etc) tasks by calling
.. <<python
.. code-block:: python
transform_task.set_input(input = xxx)
..
python
@originate doesn't take **input** but creates results specified in the **output** parameter.
To finish setting up ``pipeline1c``:
.. <<python
.. code-block:: python
:emphasize-lines: 1-2
# Set the "originate" files for pipeline1c to ("e.1" and "f.1")
# Otherwise they would use the original ("c.1", "d.1")
pipeline1c.set_output(output = [tempdir + ss for ss in ("e.1", "f.1")])
..
python
We only create one copy of ``pipeline2``
.. <<python
.. code-block:: python
pipeline2 = make_pipeline2()
..
python
______________________________________________________________________________
Connecting pipelines together
______________________________________________________________________________
Because we have previously assigned **head** and **tail** tasks, we can easily join the pipelines together:
.. <<python
.. code-block:: python
:emphasize-lines: 3,5
# Join all pipeline1a-c to pipeline2
pipeline2.set_input(input = [pipeline1a, pipeline1b, pipeline1c])
..
python
______________________________________________________________________________
Running a composite pipeline
______________________________________________________________________________
Ruffus automatically follows the antecedent dependencies of each task even if they are from another
pipeline.
This means that you can run composite pipelines seamlessly, without any effort:
.. <<python
.. code-block:: python
:emphasize-lines: 1,4
# Only runs pipeline1a
pipeline1a.run()
# Runs pipeline1a,b,c -> pipeline2
pipeline2.run(multiprocess = 10, verbose = 0)
..
python
.. note::
Remember to look at the example code:
* :ref:`new_syntax.worked_example.code`
|