trimal
pipes/WDL/workflows/trimal.wdl

WORKFLOW trimal

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

Imports

Namespace Path
interhost ../tasks/tasks_interhost.wdl

Workflow: trimal

Trim a multiple sequence alignment with Trimal.

Author: Broad Viral Genomics
viral-ngs@broadinstitute.org

Inputs

Name Type Description Default
in_aligned_fasta File - -
machine_mem_gb Int? - -
2 optional inputs with default values

Outputs

Name Type Expression
trimmed_alignment File trimal_clean_msa.trimal_cleaned_fasta

Calls

This workflow calls the following tasks or subworkflows:

CALL TASKS trimal_clean_msa

No explicit input mappings

Images

Container images used by tasks in this workflow:

🐳 Parameterized Image
⚙️ Parameterized

Configured via input:
docker

Used by 1 task:
  • trimal_clean_msa
← Back to Index

trimal - Workflow Graph

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

trimal - WDL Source Code

version 1.0

import "../tasks/tasks_interhost.wdl" as interhost

workflow trimal {
    meta {
        description: "Trim a multiple sequence alignment with Trimal."
        author: "Broad Viral Genomics"
        email:  "viral-ngs@broadinstitute.org"
    }

    call interhost.trimal_clean_msa

    output {
        File trimmed_alignment = trimal_clean_msa.trimal_cleaned_fasta
    }
}