Skip to content

Commit

Permalink
input renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
jrotieno committed Jan 23, 2024
1 parent 82c1960 commit 273b98f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions workflows/theiacov/wf_theiacov_clearlabs.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ workflow theiacov_clearlabs {
}
input {
String samplename
File clear_lab_fastq
File read1
String organism = "sars-cov-2"
# sequencing values
String seq_method = "OXFORD_NANOPORE"
Expand All @@ -40,12 +40,12 @@ workflow theiacov_clearlabs {
}
call fastq_scan.fastq_scan_se as fastq_scan_raw_reads {
input:
read1 = clear_lab_fastq
read1 = read1
}
call ncbi_scrub.ncbi_scrub_se {
input:
samplename = samplename,
read1 = clear_lab_fastq
read1 = read1
}
call fastq_scan.fastq_scan_se as fastq_scan_clean_reads {
input:
Expand All @@ -54,7 +54,7 @@ workflow theiacov_clearlabs {
call kraken2.kraken2_theiacov as kraken2_raw {
input:
samplename = samplename,
read1 = clear_lab_fastq,
read1 = read1,
target_organism = target_organism
}
call kraken2.kraken2_theiacov as kraken2_dehosted {
Expand Down

0 comments on commit 273b98f

Please sign in to comment.