{% extends sitebase.html %} {% block head %} {% from qiita_core.qiita_settings import qiita_config %} {% end %} {% block content %} {% if workflows %}

Recommended Default Workflows

In this page you will find our recommendations on how to processes each data type available in Qiita and the minimum processing requirements to make your data public.

For convenience, there is an "Add Default Workflow" button for each preparation that will add the recommended workflow steps for your raw data which then you can process. It is important to note however that some steps in this default workflow will not work with all raw data; for example, for target gene the workflow is based on the default Earth Microbiome Project protocol and so assumes the uploaded data are multiplexed sequences with the reversed barcodes in your mapping file and index sequence file (see here for more details). Thus, if the protocol does not apply to your data you can still use the Default Workflow, however, you should first manually process your data using the appropriate steps until you have a defined step; in our example, demultiplex your reads. After demultiplexing, the Default Workflow is safe to use with any protocol.

If you have already manually performed one of the processing steps in the Default Workflow pipeline, the "Add Default Workflow" button will not re-select those steps but instead will only select any remaining steps that have not been completed. You can also add additional workflows on top of the recommended Default Workflow at any time.

Note that this is not a full inclusive list of data types accepted by Qiita but only those that have a defined workflow.
Hover on the spheres to get more information
{% for i, w in enumerate(workflows) %}
{% if not w['active'] %}

~~ NOT ACTIVE ~~

{% end %}

Application: {{', '.join(w['data_types'])}} -> {% if w['parameters_sample'] or w['parameters_prep'] %} parameter restrictions:
    {% if w['parameters_sample'] %}
  • Sample Information
    • {% for k, v in w['parameters_sample'].items() %}
    • {{k}}: {{v}}
    • {% end %}
    {% end %} {% if w['parameters_prep'] %}
  • Prep Information
    • {% for k, v in w['parameters_prep'].items() %}
    • {{k}}: {{v}}
    • {% end %}
    {% end %}
{% else %} NO parameters restrictions {% end %}
{{w['name']}}


{% raw w['description'] %}

{% end %} {% else %}

There are no workflows in this system.

{% end %} {% end %}