Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinlibuit committed Apr 20, 2021
1 parent b350e1d commit dd967de
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions workflows/wf_ncbi_scrub_pe.wdl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version 1.0

import "../tasks/task_read_clean.wdl" as read_clean
import "../tasks/task_taxonID.wdl" as taxonID

workflow dehost_pe {
input {
Expand All @@ -18,18 +19,18 @@ workflow dehost_pe {
call taxonID.kraken2 {
input:
samplename = samplename,
read1 = ncbi_scrub_pe.read1_dehosted
read1 = ncbi_scrub_pe.read1_dehosted,
read2 = ncbi_scrub_pe.read2_dehosted
}

output {
File read1_dehosted = ncbi_scrub_pe.read1_dehosted
File read2_dehosted = ncbi_scrub_pe.read2_dehosted
String ncbi_scrub_docker = ncbi_scrub_pe.ncbi_scrub_docker

Float kraken_human_dehosted = kraken2.percent_human
Float kraken_sc2_dehosted = kraken2.percent_sc2
String kraken_report_dehosted = kraken2.kraken_report
String kraken_version_dehosted = kraken2.version
String kraken_report_dehosted = kraken2.kraken_report
}
}
9 changes: 5 additions & 4 deletions workflows/wf_ncbi_scrub_se.wdl
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
version 1.0

import "../tasks/task_read_clean.wdl" as read_clean
import "../tasks/task_taxonID.wdl" as taxonID

workflow dehost_se {
input {
Expand All @@ -16,14 +17,14 @@ workflow dehost_se {
call taxonID.kraken2 {
input:
samplename = samplename,
read1 = ncbi_scrub_pe.read1_dehosted
read1 = ncbi_scrub_se.read1_dehosted
}
output {
File reads_dehosted = ncbi_scrub_pe.read1_dehosted
String ncbi_scrub_docker = ncbi_scrub_pe.ncbi_scrub_docker
File reads_dehosted = ncbi_scrub_se.read1_dehosted
String ncbi_scrub_docker = ncbi_scrub_se.ncbi_scrub_docker

Float kraken_human_dehosted = kraken2.percent_human
Float kraken_sc2_dehosted = kraken2.percent_sc2
String kraken_report_dehosted = kraken2.kraken_report
String kraken_version_dehosted = kraken2.version
String kraken_report_dehosted = kraken2.kraken_report
}
Expand Down

0 comments on commit dd967de

Please sign in to comment.