Skip to content

Commit

Permalink
Added update to task rqcfilter outputs to fix issue #37
Browse files Browse the repository at this point in the history
  • Loading branch information
vlilanl committed Aug 15, 2024
1 parent 550d939 commit e251bc4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion longReadsqc.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ workflow LongReadsQC{
String log_level='INFO'
Boolean rmdup = true
Boolean overwrite = true
Boolean interleaved
File? reference
String pbmarkdup_container="microbiomedata/pbmarkdup:1.0"
String bbtools_container="microbiomedata/bbtools:39.01"
Expand Down
1 change: 0 additions & 1 deletion rqcfilter.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ workflow rqcfilter{
file = input_files[0],
proj = proj,
reference = reference,
interleaved = interleaved
}
}

Expand Down
2 changes: 1 addition & 1 deletion shortReadsqc.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ task rqcfilter {
File stat = filename_stat
File stat2 = filename_stat2
File info_file = filename_reproduce
File filtered = glob("filtered/*fastq.gz")[0]
File filtered = glob("filtered/*.anqdpht.fastq.gz")[0]

This comment has been minimized.

Copy link
@kaijli

kaijli Aug 21, 2024

Contributor

alicia recommended removing glob, so probably update to File filtered = "filtered/raw.anqdpht.fastq.gz"

File json_out = filename_stat_json
}
}
Expand Down

0 comments on commit e251bc4

Please sign in to comment.