wdl-format 0.18.0

Formatting of WDL (Workflow Description Language) documents
Documentation
version 1.1

struct SpliceJunctionMotifs {
    Int noncanonical_motifs
    Int GT_AG_and_CT_AC_motif
}

workflow foo {
    input {
        SpliceJunctionMotifs? foo
    }

    SpliceJunctionMotifs declared = SpliceJunctionMotifs {
        noncanonical_motifs: 1,
        GT_AG_and_CT_AC_motif: 2,
    }
    SpliceJunctionMotifs? optional = None
    Object? deprecated = None

    output {
        SpliceJunctionMotifs? bar = declared
    }
}