.. include:: global.inc .. role:: raw-html(raw) :format: html :raw-html:`` .. role:: red ######################################## Latest Changes ######################################## Major Features added to Ruffus .. note:: See :ref:`To do list ` for future enhancements to Ruffus ******************************************************************** version 2.6.3 ******************************************************************** 21st April 2015 ===================================================================================================================== Bug fixes and minor enhancements ===================================================================================================================== * `@transform(..., suffix("xxx"),` :red:`output_dir` `= "/new/output/path")` works even when the ouput has more than one file `(github) `__ * `@subdivide( ..., suffix("xxx"),` :red:`output_dir` `= "/new/output/path")` works in exactly the same way as `@transform(..., outputdir="xxx")` `(github) `__ * `ruffus.drmaa_wrapper.run_job()` works with python3 `(github) `__ Fixed issue with byte and text streams. * `ruffus.drmaa.wrapper.run_job()` allows env (environment) to be set for jobs run locally as well as those on the cluster `(github) `__ * New object-orientated style syntax works seamlessly with Ruffus command line support `ruffus.cmdline.run` `(github) `__. ******************************************************************** version 2.6.2 ******************************************************************** 12th March 2015 ===================================================================================================================== 1) Bug fixes ===================================================================================================================== * ``pipeline_printout_graph()`` incompatibility with python3 fixed * checkpointing did not work correctly with :ref:`@split(...) ` and :ref:`@subdivide(...) ` ===================================================================================================================== 2) `@transform `(..., suffix("xxx"),` :red:`output_dir` `= "/new/output/path")` ===================================================================================================================== Thanks to the suggestion of Milan Simonovic. :ref:`@transform(..., suffix(...) ) ` has easy to understand syntax and takes care of all the common use cases of Ruffus. However, when we need to place the output in a different directories, we suddenly have to plunge into the deep end and parse file paths using :ref:`regex() ` or :ref:`formatter() `. Now, :ref:`@transform ` takes an optional ``output_dir`` named parameter so that we can continue to use :ref:`suffix() ` even when the output needs to go into a new directory. .. < output/a.sam # input/b.fasta -> output/b.sam # starting_files = ["input/a.fasta","input/b.fasta"] @transform(starting_files, suffix('.fasta'), '.sam', output_dir = "output") def map_dna_sequence(input_file, output_file) : pass .. Python See example ``test\test_suffix_output_dir.py`` ===================================================================================================================== 2) Named parameters ===================================================================================================================== Decorators can take named parameters. These are self documenting, and improve clarity. Note that the usual Python rules for function parameters apply: * Positional arguments must precede named arguments * Named arguments cannot be used to fill in for "missing" positional arguments For example the following two functions are identical: **Positional parameters:** .. <` and :ref:`@merge(...) ` * *input* * *output* * [*extras*\ ] * :ref:`@transform(...) ` and :ref:`@mkdir(...) ` * *input* * *filter* * [*replace_inputs* or *add_inputs*\ ] * *output* * [*extras*\ ] * [*output_dir*\ ] * :ref:`@collate(...) ` and :ref:`@subdivide(...) ` * *input* * *filter* * *output* * [*extras*\ ] * :ref:`@originate(...) ` * *output* * [*extras*\ ] * :ref:`@product(...) `, :ref:`@permutations(...) `, :ref:`@combinations(...) `, and :ref:`@combinations_with_replacement(...) ` * *input* * *filter* * [*input2...NNN*\ ] (only for ``product``) * [*filter2...NNN*\ ] (only for ``product``) where NNN is an incrementing number * *tuple_size* (except for ``product``) * [*replace_inputs* or *add_inputs*\ ] * *output* * [*extras*\ ] ============================================= 3) New object orientated syntax for Ruffus ============================================= Ruffus Pipelines can now be created directly using the new ``Pipeline`` and ``Task`` objects instead of via decorators. .. <`. ******************************************************************** version 2.5 ******************************************************************** 6th August 2014 ============================================================================================================================================================ 1) Python3 compatability (but at least python 2.6 is now required) ============================================================================================================================================================ Ruffus v2.5 is now python3 compatible. This has required surprisingly many changes to the codebase. Please report any bugs to me. .. note:: **Ruffus now requires at least python 2.6** It proved to be impossible to support python 2.5 and python 3.x at the same time. ============================================================================================================================================================ 2) Ctrl-C interrupts ============================================================================================================================================================ Ruffus now mostly(!) terminates gracefully when interrupted by Ctrl-C . Please send me bug reports for when this doesn't work with a minimally reproducible case. This means that, in general, if an ``Exception`` is thrown during your pipeline but you don't want to wait for the rest of the jobs to complete, you can still press Ctrl-C at any point. Note that you may still need to clean up spawned processes, for example, using ``qdel`` if you are using ``Ruffus.drmaa_wrapper`` ============================================================================================================================================================ 3) Customising flowcharts in pipeline_printout_graph() with ``@graphviz`` ============================================================================================================================================================ *Contributed by Sean Davis, with improved syntax via Jake Biesinger* The graphics for each task can have its own attributes (URL, shape, colour) etc. by adding `graphviz attributes `__ using the ``@graphviz`` decorator. * This allows HTML formatting in the task names (using the ``label`` parameter as in the following example). HTML labels **must** be enclosed in ``<`` and ``>``. E.g. .. code-block:: python label = " wrapped task_name()>" * You can also opt to keep the task name and wrap it with a prefix and suffix: .. code-block:: python label_suffix = "??? ", label_prefix = ": What is this?" * The ``URL`` attribute allows the generation of clickable svg, and also client / server side image maps usable in web pages. See `Graphviz documentation `__ Example: .. code-block:: python @graphviz(URL='"http://cnn.com"', fillcolor = '"#FFCCCC"', color = '"#FF0000"', pencolor='"#FF0000"', fontcolor='"#4B6000"', label_suffix = "???", label_prefix = "What is this?
", label = "isthis>", shape= "component", height = 1.5, peripheries = 5, style="dashed") def Up_to_date_task2(infile, outfile): pass # Can use dictionary if you wish... graphviz_params = {"URL":"http://cnn.com", "fontcolor": '"#FF00FF"'} @graphviz(**graphviz_params) def myTask(input,output): pass .. ** .. image:: images/history_html_flowchart.png :scale: 30 ============================================================================================================================================================ 4. Consistent verbosity levels ============================================================================================================================================================ The verbosity levels are now more fine-grained and consistent between pipeline_printout and pipeline_run. Note that At verbosity > 2, ``pipeline_run`` outputs lists of up-to-date tasks before running the pipeline. Many users who defaulted to using a verbosity of 3 may want to move up to ``verbose = 4``. * **level 0** : *Nothing* * **level 1** : *Out-of-date Task names* * **level 2** : *All Tasks (including any task function docstrings)* * **level 3** : *Out-of-date Jobs in Out-of-date Tasks, no explanation* * **level 4** : *Out-of-date Jobs in Out-of-date Tasks, with explanations and warnings* * **level 5** : *All Jobs in Out-of-date Tasks, (include only list of up-to-date tasks)* * **level 6** : *All jobs in All Tasks whether out of date or not* * **level 10**: *Logs messages useful only for debugging ruffus pipeline code* * Defaults to **level 4** for pipeline_printout: *Out of date jobs, with explanations and warnings* * Defaults to **level 1** for pipeline_run: *Out-of-date Task names* ============================================================================================================================================================ 5. Allow abbreviated paths from ``pipeline_run`` or ``pipeline_printout`` ============================================================================================================================================================ .. note :: Please contact me with suggestions if you find the abbreviations useful but "aesthetically challenged"! Some pipelines produce interminable lists of long filenames. It would be nice to be able to abbreviate this to just enough information to follow the progress. Ruffus now allows either 1) Only the nth top level sub-directories to be included 2) The message to be truncated to a specified number of characters (to fit on a line, for example) Note that the number of characters specified is the separate length of the input and output parameters, not the entire message. You many need to specify a smaller limit that you expect (e.g. ``60`` rather than `80`) .. code-block:: python pipeline_printout(verbose_abbreviated_path = NNN) pipeline_run(verbose_abbreviated_path = -MMM) The ``verbose_abbreviated_path`` parameter restricts the length of input / output file paths to either * NNN levels of nested paths * A total of MMM characters, MMM is specified by setting ``verbose_abbreviated_path`` to -MMM (i.e. negative values) ``verbose_abbreviated_path`` defaults to ``2`` For example: Given ``["aa/bb/cc/dddd.txt", "aaa/bbbb/cccc/eeed/eeee/ffff/gggg.txt"]`` .. code-block:: python :emphasize-lines: 1,4,8,19 # Original relative paths "[aa/bb/cc/dddd.txt, aaa/bbbb/cccc/eeed/eeee/ffff/gggg.txt]" # Full abspath verbose_abbreviated_path = 0 "[/test/ruffus/src/aa/bb/cc/dddd.txt, /test/ruffus/src/aaa/bbbb/cccc/eeed/eeee/ffff/gggg.txt]" # Specifed level of nested directories verbose_abbreviated_path = 1 "[.../dddd.txt, .../gggg.txt]" verbose_abbreviated_path = 2 "[.../cc/dddd.txt, .../ffff/gggg.txt]" verbose_abbreviated_path = 3 "[.../bb/cc/dddd.txt, .../eeee/ffff/gggg.txt]" # Truncated to MMM characters verbose_abbreviated_path = -60 " /bb/cc/dddd.txt, aaa/bbbb/cccc/eeed/eeee/ffff/gggg.txt]" If you are using ``ruffus.cmdline``, the abbreviated path lengths can be specified on the command line as an extension to the verbosity: .. code-block:: bash :emphasize-lines: 4,7 # verbosity of 4 yourscript.py --verbose 4 # display three levels of nested directories yourscript.py --verbose 4:3 # restrict input and output parameters to 60 letters yourscript.py --verbose 4:-60 The number after the colon is the abbreviated path length ============================================================================================================================================================ Other changes ============================================================================================================================================================ * BUG FIX: Output producing wild cards was not saved in the checksum files!!! * BUG FIX: @mkdir bug under Windows. Thanks to Sean Turley. (Aargh! Different exceptions are thrown in Windows vs. Linux for the same condition!) * Added :ref:`pipeline_get_task_names(...) ` which returns all task name as a list of strings. Thanks to Clare Sloggett ******************************************************************** version 2.4.1 ******************************************************************** 26th April 2014 * Breaking changes to drmaa API suggested by Bernie Pope to ensure portability across different drmaa implementations (SGE, SLURM etc.) ******************************************************************** version 2.4 ******************************************************************** 4th April 2014 ============================================================================================================================================================ Additions to ``ruffus`` namespace ============================================================================================================================================================ * :ref:`formatter() ` (:ref:`syntax `) * :ref:`originate() ` (:ref:`syntax `) * :ref:`subdivide() ` (:ref:`syntax `) ============================================================================================================================================================ Installation: use pip ============================================================================================================================================================ :: sudo pip install ruffus --upgrade ============================================================================================================================================================ 1) Command Line support ============================================================================================================================================================ The optional ``Ruffus.cmdline`` module provides support for a set of common command line arguments which make writing *Ruffus* pipelines much more pleasant. See :ref:`manual ` ============================================================================================================================================================ 2) Check pointing ============================================================================================================================================================ * Contributed by **Jake Biesinger** * See :ref:`Manual ` * Uses a fault resistant sqlite database file to log i/o files, and additional checksums * defaults to checking file timestamps stored in the current directory (``ruffus_utilility.RUFFUS_HISTORY_FILE = '.ruffus_history.sqlite'``) * :ref:`pipeline_run(..., checksum_level = N, ...) ` * level 0 = CHECKSUM_FILE_TIMESTAMPS : Classic mode. Use only file timestamps (no checksum file will be created) * level 1 = CHECKSUM_HISTORY_TIMESTAMPS : Also store timestamps in a database after successful job completion * level 2 = CHECKSUM_FUNCTIONS : As above, plus a checksum of the pipeline function body * level 3 = CHECKSUM_FUNCTIONS_AND_PARAMS : As above, plus a checksum of the pipeline function default arguments and the additional arguments passed in by task decorators * defaults to level 1 * Can speed up trivial tasks: Previously Ruffus always added an extra 1 second pause between tasks to guard against file systems (Ext3, FAT, some NFS) with low timestamp granularity. ============================================================================================================================================================ 3) :ref:`subdivide() ` (:ref:`syntax `) ============================================================================================================================================================ * Take a list of input jobs (like :ref:`@transform `) but further splits each into multiple jobs, i.e. it is a **many->even more** relationship * synonym for the deprecated ``@split(..., regex(), ...)`` ======================================================================================================================================================================================================================================================================================================================== 4) :ref:`mkdir() ` (:ref:`syntax `) with :ref:`formatter() `, :ref:`suffix() ` and :ref:`regex() ` ======================================================================================================================================================================================================================================================================================================================== * allows directories to be created depending on runtime parameters or the output of previous tasks * behaves just like :ref:`@transform ` but with its own (internal) function which does the actual work of making a directory * Previous behavior is retained:``mkdir`` continues to work seamlessly inside :ref:`@follows ` ============================================================================================================================================================ 5) :ref:`originate() ` (:ref:`syntax `) ============================================================================================================================================================ * Generates output files without dependencies from scratch (*ex nihilo*!) * For first step in a pipeline * Task function obviously only takes output and not input parameters. (There *are* no inputs!) * synonym for :ref:`@split(None,...) ` * See :ref:`Summary ` / :ref:`Manual ` ======================================================================================================================================================================================================================================================================================================================== 6) New flexible :ref:`formatter() ` (:ref:`syntax `) alternative to :ref:`regex() ` & :ref:`suffix() ` ======================================================================================================================================================================================================================================================================================================================== * Easy manipulation of path subcomponents in the style of `os.path.split() `__ * Regular expressions are no longer necessary for path manipulation * Familiar python syntax * Optional regular expression matches * Can refer to any in the list of N input files (not only the first file as for ``regex(...)``) * Can even refer to individual letters within a match ============================================================================================================================================================ 7) Combinatorics (all vs. all decorators) ============================================================================================================================================================ * :ref:`@product ` (See `itertools.product `__) * :ref:`@permutations ` (See `itertools.permutations `__) * :ref:`@combinations ` (See `itertools.combinations `__) * :ref:`@combinations_with_replacement ` (See `itertools.combinations_with_replacement `__) * in optional :ref:`combinatorics ` module * Only :ref:`formatter() ` provides the necessary flexibility to construct the output. (:ref:`suffix() ` and :ref:`regex() ` are not supported.) * See :ref:`Summary ` / :ref:`Manual ` ============================================================================================================================================================ 8) drmaa support and multithreading: ============================================================================================================================================================ * :ref:`ruffus.drmaa_wrapper.run_job() ` (:ref:`syntax `) * Optional helper module allows jobs to dispatch work to a computational cluster and wait until it completes. * Requires ``multithread`` rather than ``multiprocess`` ============================================================================================================================================================ 9) ``pipeline_run(...)`` and exceptions ============================================================================================================================================================ See :ref:`Manual ` * Optionally terminate pipeline after first exception * Display exceptions without delay ============================================================================================================================================================ 10) Miscellaneous ============================================================================================================================================================ Better error messages for ``formatter()``, ``suffix()`` and ``regex()`` for ``pipeline_printout(..., verbose >= 3, ...)`` * Error messages for showing mismatching regular expression and offending file name * Wrong capture group names or out of range indices will raise informative Exception ******************************************************************** version 2.3 ******************************************************************** 1st September, 2013 * ``@active_if`` turns off tasks at runtime The Design and initial implementation were contributed by Jacob Biesinger Takes one or more parameters which can be either booleans or functions or callable objects which return True / False:: run_if_true_1 = True run_if_true_2 = False @active_if(run_if_true, lambda: run_if_true_2) def this_task_might_be_inactive(): pass The expressions inside @active_if are evaluated each time ``pipeline_run``, ``pipeline_printout`` or ``pipeline_printout_graph`` is called. Dormant tasks behave as if they are up to date and have no output. * Command line parsing * Supports both argparse (python 2.7) and optparse (python 2.6): * ``Ruffus.cmdline`` module is optional. * See :ref:`manual ` * Optionally terminate pipeline after first exception To have all exceptions interrupt immediately:: pipeline_run(..., exceptions_terminate_immediately = True) By default ruffus accumulates ``NN`` errors before interrupting the pipeline prematurely. ``NN`` is the specified parallelism for ``pipeline_run(..., multiprocess = NN)``. Otherwise, a pipeline will only be interrupted immediately if exceptions of type ``ruffus.JobSignalledBreak`` are thrown. * Display exceptions without delay By default, Ruffus re-throws exceptions in ensemble after pipeline termination. To see exceptions as they occur:: pipeline_run(..., log_exceptions = True) ``logger.error(...)`` will be invoked with the string representation of the each exception, and associated stack trace. The default logger prints to sys.stderr, but this can be changed to any class from the logging module or compatible object via ``pipeline_run(..., logger = ???)`` * Improved ``pipeline_printout()`` * `@split` operations now show the 1->many output in pipeline_printout This make it clearer that ``@split`` is creating multiple output parameters (rather than a single output parameter consisting of a list):: Task = split_animals Job = [None -> cows -> horses -> pigs , any_extra_parameters] * File date and time are displayed in human readable form and out of date files are flagged with asterisks. ******************************************************************** version 2.2 ******************************************************************** 22nd July, 2010 * Simplifying **@transform** syntax with **suffix(...)** Regular expressions within ruffus are very powerful, and can allow files to be moved from one directory to another and renamed at will. However, using consistent file extensions and ``@transform(..., suffix(...))`` makes the code much simpler and easier to read. Previously, ``suffix(...)`` did not cooperate well with ``inputs(...)``. For example, finding the corresponding header file (".h") for the matching input required a complicated ``regex(...)`` regular expression and ``input(...)``. This simple case, e.g. matching "something.c" with "something.h", is now much easier in Ruffus. For example: :: source_files = ["something.c", "more_code.c"] @transform(source_files, suffix(".c"), add_inputs(r"\1.h", "common.h"), ".o") def compile(input_files, output_file): ( source_file, header_file, common_header) = input_files # call compiler to make object file This is equivalent to calling: :: compile(["something.c", "something.h", "common.h"], "something.o") compile(["more_code.c", "more_code.h", "common.h"], "more_code.o") The ``\1`` matches everything *but* the suffix and will be applied to both ``glob``\ s and file names. For simplicity and compatibility with previous versions, there is always an implied r"\1" before the output parameters. I.e. output parameters strings are *always* substituted. * Tasks and glob in **inputs(...)** and **add_inputs(...)** ``glob``\ s and tasks can be added as the prerequisites / input files using ``inputs(...)`` and ``add_inputs(...)``. ``glob`` expansions will take place when the task is run. * Advanced form of **@split** with **regex**: The standard ``@split`` divided one set of inputs into multiple outputs (the number of which can be determined at runtime). This is a ``one->many`` operation. An advanced form of ``@split`` has been added which can split each of several files further. In other words, this is a ``many->"many more"`` operation. For example, given three starting files: :: original_files = ["original_0.file", "original_1.file", "original_2.file"] We can split each into its own set of sub-sections: :: @split(original_files, regex(r"starting_(\d+).fa"), # match starting files r"files.split.\1.*.fa" # glob pattern r"\1") # index of original file def split_files(input_file, output_files, original_index): """ Code to split each input_file "original_0.file" -> "files.split.0.*.fa" "original_1.file" -> "files.split.1.*.fa" "original_2.file" -> "files.split.2.*.fa" """ This is, conceptually, the reverse of the @collate(...) decorator * Ruffus will complain about unescaped regular expression special characters: Ruffus uses "\\1" and "\\2" in regular expression substitutions. Even seasoned python users may not remember that these have to be 'escaped' in strings. The best option is to use 'raw' python strings e.g. :: r"\1_substitutes\2correctly\3four\4times" Ruffus will throw an exception if it sees an unescaped "\\1" or "\\2" in a file name, which should catch most of these bugs. * Prettier output from *pipeline_printout_graph* Changed to nicer colours, symbols etc. for a more professional look. @split and @merge tasks now look different from @transform. Colours, size and resolution are now fully customisable:: pipeline_printout_graph( #... user_colour_scheme = { "colour_scheme_index":1, "Task to run" : {"fillcolor":"blue"}, pipeline_name : "My flowchart", size : (11,8), dpi : 120)}) An SVG bug in firefox has been worked around so that font size are displayed correctly. ******************************************************************** version 2.1.1 ******************************************************************** * **@transform(.., add_inputs(...))** ``add_inputs(...)`` allows the addition of extra input dependencies / parameters for each job. Unlike ``inputs(...)``, the original input parameter is retained: :: from ruffus import * @transform(["a.input", "b.input"], suffix(".input"), add_inputs("just.1.more","just.2.more"), ".output") def task(i, o): "" Produces: :: Job = [[a.input, just.1.more, just.2.more] ->a.output] Job = [[b.input, just.1.more, just.2.more] ->b.output] Like ``inputs``, ``add_inputs`` accepts strings, tasks and ``glob`` s This minor syntactic change promises add much clarity to Ruffus code. ``add_inputs()`` is available for ``@transform``, ``@collate`` and ``@split`` ******************************************************************** version 2.1.0 ******************************************************************** * **@jobs_limit** Some tasks are resource intensive and too many jobs should not be run at the same time. Examples include disk intensive operations such as unzipping, or downloading from FTP sites. Adding:: @jobs_limit(4) @transform(new_data_list, suffix(".big_data.gz"), ".big_data") def unzip(i, o): "unzip code goes here" would limit the unzip operation to 4 jobs at a time, even if the rest of the pipeline runs highly in parallel. (Thanks to Rob Young for suggesting this.) ******************************************************************** version 2.0.10 ******************************************************************** * **touch_files_only** option for **pipeline_run** When the pipeline runs, task functions will not be run. Instead, the output files for each job (in each task) will be ``touch``\ -ed if necessary. This can be useful for simulating a pipeline run so that all files look as if they are up-to-date. Caveats: * This may not work correctly where output files are only determined at runtime, e.g. with **@split** * Only the output from pipelined jobs which are currently out-of-date will be ``touch``\ -ed. In other words, the pipeline runs *as normal*, the only difference is that the output files are ``touch``\ -ed instead of being created by the python task functions which would otherwise have been called. * Parameter substitution for **inputs(...)** The **inputs(...)** parameter in **@transform**, **@collate** can now take tasks and ``glob`` s, and these will be expanded appropriately (after regular expression replacement). For example:: @transform("dir/a.input", regex(r"(.*)\/(.+).input"), inputs((r"\1/\2.other", r"\1/*.more")), r"elsewhere/\2.output") def task1(i, o): """ Some pipeline task """ Is equivalent to calling:: task1(("dir/a.other", "dir/1.more", "dir/2.more"), "elsewhere/a.output") \ Here:: r"\1/*.more" is first converted to:: r"dir/*.more" which matches:: "dir/1.more" "dir/2.more" ******************************************************************** version 2.0.9 ******************************************************************** * Better display of logging output * Advanced form of **@split** This is an experimental feature. Hitherto, **@split** only takes 1 set of input (tasks/files/``glob`` s) and split these into an indeterminate number of output. This is a one->many operation. Sometimes it is desirable to take multiple input files, and split each of them further. This is a many->many (more) operation. It is possible to hack something together using **@transform** but downstream tasks would not aware that each job in **@transform** produces multiple outputs (rather than one input, one output per job). The syntax looks like:: @split(get_files, regex(r"(.+).original"), r"\1.*.split") def split_files(i, o): pass If ``get_files()`` returned ``A.original``, ``B.original`` and ``C.original``, ``split_files()`` might lead to the following operations:: A.original -> A.1.original -> A.2.original -> A.3.original B.original -> B.1.original -> B.2.original C.original -> C.1.original -> C.2.original -> C.3.original -> C.4.original -> C.5.original Note that each input (``A/B/C.original``) can produce a number of output, the exact number of which does not have to be pre-determined. This is similar to **@split** Tasks following ``split_files`` will have ten inputs corresponding to each of the output from ``split_files``. If **@transform** was used instead of **@split**, then tasks following ``split_files`` would only have 3 inputs. ******************************************************************** version 2.0.8 ******************************************************************** * File names can be in unicode * File systems with 1 second timestamp granularity no longer cause problems. ******************************************************************** version 2.0.2 ******************************************************************** * Much prettier /useful output from :ref:`pipeline_printout ` * New tutorial / manual ******************************************************************** version 2.0 ******************************************************************** * Revamped documentation: * Rewritten tutorial * Comprehensive manual * New syntax help * Major redesign. New decorators include * :ref:`@split ` * :ref:`@transform ` * :ref:`@merge ` * :ref:`@collate ` * Major redesign. Decorator *inputs* can mix * Output from previous tasks * |glob|_ patterns e.g. ``*.txt`` * Files names * Any other data type ******************************************************************** version 1.1.4 ******************************************************************** Tasks can get their input by automatically chaining to the output from one or more parent tasks using :ref:`@files_re ` ******************************************************************** version 1.0.7 ******************************************************************** Added `proxy_logger` module for accessing a shared log across multiple jobs in different processes. ******************************************************************** version 1.0 ******************************************************************** Initial Release in Oxford