-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into ct-beast_gpu_new_defaults
- Loading branch information
Showing
2 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} |