filter_sequences
pipes/WDL/workflows/filter_sequences.wdl

WORKFLOW filter_sequences

File Path pipes/WDL/workflows/filter_sequences.wdl
WDL Version 1.0
Type workflow

Imports

Namespace Path
nextstrain ../tasks/tasks_nextstrain.wdl

Workflow: filter_sequences

Filter and subsample a sequence set. See https://nextstrain-augur.readthedocs.io/en/stable/usage/cli/filter.html

Inputs

Name Type Description Default
sequences_fasta File - -
sample_metadata_tsv File - -
sequences_per_group Int? - -
group_by String? - -
include File? - -
exclude File? - -
min_date Float? - -
max_date Float? - -
min_length Int? - -
priority File? - -
subsample_seed Int? - -
exclude_where Array[String]? - -
include_where Array[String]? - -
3 optional inputs with default values

Calls

This workflow calls the following tasks or subworkflows:

CALL TASKS filter → filter_subsample_sequences

No explicit input mappings

Images

Container images used by tasks in this workflow:

🐳 Parameterized Image
⚙️ Parameterized

Configured via input:
docker

Used by 1 task:
  • filter
← Back to Index

filter_sequences - Workflow Graph

🖱️ Scroll to zoom • Drag to pan • Double-click to reset • ESC to close

filter_sequences - WDL Source Code

version 1.0

import "../tasks/tasks_nextstrain.wdl" as nextstrain

workflow filter_sequences {
    meta {
        description: "Filter and subsample a sequence set. See https://nextstrain-augur.readthedocs.io/en/stable/usage/cli/filter.html"
    }

    call nextstrain.filter_subsample_sequences as filter
}