Search Results
Showing results for ""
Enter a search term
Find parameters, processes, workflows, and more
No results found
Try a different search term
{{ title }}
{% if pipeline.metadata.description %}Authors
-
{% for author in pipeline.metadata.authors %}
- {{ author }} {% endfor %}
Pipeline Inputs
This page documents all input parameters for the pipeline.
{% for group, items in input_groups.items() %}{{ group }} ¶
{% for inp in items %}{{ inp.pattern }}
{% endif %} {% if inp.required %}
Required
{% else %}
Optional
{% endif %}
Default:
{{ inp.default }}
Allowed values:
{% for val in inp.enum %}
{{ val }}
{% if not loop.last %}, {% endif %} {% endfor %}
Configuration Parameters
These are additional configuration parameters that are not primary pipeline inputs.
{% for param in pipeline.config_params %}
Default:
{{ param.default }}
Workflows
This page documents all workflows in the pipeline.
{% for wf in pipeline.workflows|sort(attribute='name') %}{{ wf.file }}:{{ wf.line }}
Code Documentation
{% endif %}Components
{{ comp|wbr }}
{% endfor %}
Inputs (take)
| Name | Description |
|---|---|
{{ inp.name|wbr }}
|
{% if inp.description %}
{{ inp.description|markdown }}
{% else %}-{% endif %}
|
{{ inp.name|wbr }}
|
{% if inp.description %}
{{ inp.description|markdown }}
{% else %}-{% endif %}
|
Outputs (emit)
| Name | Description |
|---|---|
{{ out.name|wbr }}
|
{% if out.description %}
{{ out.description|markdown }}
{% else %}-{% endif %}
|
{{ out.name|wbr }}
|
{% if out.description %}
{{ out.description|markdown }}
{% else %}-{% endif %}
|
Calls
-
{% for call in wf.calls %}
-
{{ call|wbr }}
{% endfor %}
Processes
This page documents all processes in the pipeline.
{% for proc in pipeline.processes|sort(attribute='name') %}{{ proc.file }}:{{ proc.line }}
Code Documentation
{% endif %}Tools
{% for tool in proc.meta_tools %}Inputs
| Name | Type | Description |
|---|---|---|
{{ inp.name|wbr }}
|
{{ (inp.type or '-')|wbr }}
|
{% if inp.description %}
{{ inp.description|markdown }}
{% else %}-{% endif %}
|
{{ inp.name|wbr }}
|
{{ inp.type|wbr }}
|
{% if inp.description %}
{{ inp.description|markdown }}
{% else %}-{% endif %}
|
Outputs
| Name | Type | {% if not proc.meta_outputs %}Emit{% else %}Pattern{% endif %} | Description |
|---|---|---|---|
{{ out.name|wbr }}
|
{{ (out.type or '-')|wbr }}
|
{% if out.pattern %}
{{ out.pattern|wbr }}
{% else %}-{% endif %}
|
{% if out.description %}
{{ out.description|markdown }}
{% else %}-{% endif %}
|
{{ out.name|wbr }}
|
{{ out.type|wbr }}
|
{% if out.emit %}
{{ out.emit|wbr }}
{% else %}-{% endif %}
|
{% if out.description %}
{{ out.description|markdown }}
{% else %}-{% endif %}
|
Directives
| Directive | Value |
|---|---|
{{ name|wbr }}
|
{{ value|wbr }}
|
Functions
This page documents helper functions defined in the pipeline.
{% for func in pipeline.functions|sort(attribute='name') %}{{ func.file }}:{{ func.line }}
Parameters
| Name | Description | Default |
|---|---|---|
{{ p.name|wbr }}
|
{% if p.description %}
{{ p.description|markdown }}
{% else %}-{% endif %}
|
{% if p.default is not none %}
{{ p.default|wbr }}
{% else %}-{% endif %}
|
Returns
{{ func.return_description }}
{% endif %}