Skip to content

Commit

Permalink
[Bugfix] Fix subsample depth (#379)
Browse files Browse the repository at this point in the history
* fix subsample depth

* add comment
  • Loading branch information
rzlim08 authored Oct 2, 2024
1 parent c49eed2 commit a04293a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion workflows/long-read-mngs/run.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -1280,7 +1280,9 @@ workflow czid_long_read_mngs {
String library_type = "RNA"
String guppy_basecaller_setting = "hac" # fast, hac, super
Int subsample_depth = 4000000 # should be 4x the number of reads desired
# The subsample_depth used to be 4000000 because to get 1 million reads we need to get
# 4 * 1000000 lines. But since we switched to using seqtk, we only need to provide the total number of reads.
Int subsample_depth = 1000000
File minimap_host_db
File minimap_human_db
Expand Down

0 comments on commit a04293a

Please sign in to comment.