Workflow

{{ text }}

Detailed software versions can be found under Rules.

Results

{% for cat, catresults in results|dictsort %}
{% for res in catresults %} {% endfor %}
Workflow resultes
File Size Description Job properties
{{ res.name }} {{ res.size|filesizeformat }} {{ res.caption }} {% if res.wildcards %} {% endif %} {% if res.params %} {% endif %}
Job properties
Rule{{ res.job.rule }}
Wildcards{{ res.wildcards }}
Params{{ res.params }}
{% endfor %}

Statistics

If the workflow has been executed in cluster/cloud, runtimes include the waiting time in the queue.
{% if configfiles %}

Configuration

{% for configfile in configfiles %} {% endfor %}
Configuration files
File Code
{{ configfile.name }}
{{ configfile.code()|safe }}
{% endif %}

Rules

{% for rule in rules %} {% endfor %}
Workflow rules
Rule Jobs Output Singularity Conda environment Code
{{ rule.name }} {{ rule.n_jobs }}
    {% for f in rule.output %}
  • {{ f }}
  • {% endfor %}
{{ rule.singularity_img_url if rule.singularity_img_url is not none }} {% if rule.conda_env %}
    {% for dep in rule.conda_env["dependencies"] %}
  • {{ dep }}
  • {% endfor %}
{% endif %}
{% if rule.code is not none %}
{{ rule.code()|safe }}
{% endif %}