Skip to content

Commit

Permalink
make target orgnamism modifiable
Browse files Browse the repository at this point in the history
  • Loading branch information
cimendes committed Dec 5, 2024
1 parent 65e7ea8 commit d342282
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion workflows/theiacov/updates/wf_ncbi_scrub_pe.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ workflow dehost_pe {
String samplename
File read1
File read2
String target_organism = "Severe acute respiratory syndrome coronavirus 2"
}
call ncbi_scrub.ncbi_scrub_pe {
input:
Expand All @@ -21,7 +22,7 @@ workflow dehost_pe {
samplename = samplename,
read1 = ncbi_scrub_pe.read1_dehosted,
read2 = ncbi_scrub_pe.read2_dehosted,
target_organism = "Severe acute respiratory syndrome coronavirus 2"
target_organism = target_organism
}
call versioning.version_capture {
input:
Expand Down
3 changes: 2 additions & 1 deletion workflows/theiacov/updates/wf_ncbi_scrub_se.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ workflow dehost_se {
input {
String samplename
File read1
String target_organism = "Severe acute respiratory syndrome coronavirus 2"
}
call ncbi_scrub.ncbi_scrub_se {
input:
Expand All @@ -18,7 +19,7 @@ workflow dehost_se {
input:
samplename = samplename,
read1 = ncbi_scrub_se.read1_dehosted,
target_organism = "Severe acute respiratory syndrome coronavirus 2"
target_organism = target_organism
}
call versioning.version_capture {
input:
Expand Down

0 comments on commit d342282

Please sign in to comment.