Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding bed file input #190

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion workflows/phylogenetics/wf_snippy_tree.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ workflow snippy_tree_wf {
Int? snippy_core_cpu
Int? snippy_core_disk_size
Int? snippy_core_memory
File? snippy_core_bed

Int? gubbins_disk_size
Int? gubbins_memory
Expand Down Expand Up @@ -61,7 +62,8 @@ workflow snippy_tree_wf {
docker = snippy_core_docker,
cpu = snippy_core_cpu,
disk_size = snippy_core_disk_size,
memory = snippy_core_memory
memory = snippy_core_memory,
bed_file = snippy_core_bed
}
if (use_gubbins) {
call gubbins_task.gubbins {
Expand Down