Skip to content

Commit

Permalink
Merge branch 'master' into ct-beast_gpu_new_defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 authored Dec 13, 2022
2 parents aa33ecb + e0b1f76 commit 8193fe7
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .dockstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,11 @@ workflows:
primaryDescriptorPath: /pipes/WDL/workflows/multiqc_only.wdl
testParameterFiles:
- empty.json
- name: nextclade_single
subclass: WDL
primaryDescriptorPath: /pipes/WDL/workflows/nextclade_single.wdl
testParameterFiles:
- empty.json
- name: sarscov2_batch_relineage
subclass: WDL
primaryDescriptorPath: /pipes/WDL/workflows/sarscov2_batch_relineage.wdl
Expand Down
20 changes: 20 additions & 0 deletions pipes/WDL/workflows/nextclade_single.wdl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
version 1.0

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

workflow nextclade_single {
meta {
description: "Run Nextclade on a single genome"
}

call nextstrain.nextclade_one_sample

output {
String nextclade_clade = nextclade_one_sample.nextclade_clade
File nextclade_tsv = nextclade_one_sample.nextclade_tsv
File nextclade_json = nextclade_one_sample.nextclade_json
String nextclade_aa_subs = nextclade_one_sample.aa_subs_csv
String nextclade_aa_dels = nextclade_one_sample.aa_dels_csv
String nextclade_version = nextclade_one_sample.nextclade_version
}
}

0 comments on commit 8193fe7

Please sign in to comment.