Skip to content

Commit

Permalink
input variable name changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jrotieno committed Jan 23, 2024
1 parent a4cdc14 commit 82c1960
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workflows/utilities/wf_read_QC_trim_se.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ workflow read_QC_trim_se {
if (read_qc == "fastq_scan") {
call fastq_scan.fastq_scan_se as fastq_scan_raw {
input:
read1 = read1_raw
read1 = read1
}
call fastq_scan.fastq_scan_se as fastq_scan_clean {
input:
Expand All @@ -75,7 +75,7 @@ workflow read_QC_trim_se {
if (read_qc == "fastqc") {
call fastqc_task.fastqc_se as fastqc_raw {
input:
read1 = read1_raw
read1 = read1
}
call fastqc_task.fastqc_se as fastqc_clean {
input:
Expand Down Expand Up @@ -103,7 +103,7 @@ workflow read_QC_trim_se {
call kraken.kraken2_standalone {
input:
samplename = samplename,
read1 = read1_raw,
read1 = read1,
kraken2_db = select_first([kraken_db])
}
}
Expand Down

0 comments on commit 82c1960

Please sign in to comment.