Skip to content

Commit

Permalink
Merge pull request #10 from microbiomedata/bump_versions
Browse files Browse the repository at this point in the history
Bump versions
  • Loading branch information
chienchi authored Jul 6, 2022
2 parents e9c27b7 + 62ba609 commit d7edb61
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion rqcfilter.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ task rqcfilter {
runtime {
docker: container
memory: "70 GB"
cpu: 16
database: database
runtime_minutes: ceil(size(input_file, "GB")*60)
}
command<<<
Expand All @@ -149,8 +151,8 @@ task rqcfilter {
set -eo pipefail
# Capture the start time
date --iso-8601=seconds > start.txt
rqcfilter2.sh -Xmx${default="60G" memory} -da threads=${jvm_threads} ${chastityfilter} jni=t in=${input_file} path=filtered rna=f trimfragadapter=t qtrim=r trimq=0 maxns=3 maq=3 minlen=51 mlf=0.33 phix=t removehuman=t removedog=t removecat=t removemouse=t khist=t removemicrobes=t sketch kapa=t clumpify=t tmpdir= barcodefilter=f trimpolyg=5 usejni=f rqcfilterdata=${database}/RQCFilterData > >(tee -a ${filename_outlog}) 2> >(tee -a ${filename_errlog} >&2)
rqcfilter2.sh -Xmx${default="60G" memory} -da threads=${jvm_threads} ${chastityfilter} jni=t in=${input_file} path=filtered rna=f trimfragadapter=t qtrim=r trimq=0 maxns=3 maq=3 minlen=51 mlf=0.33 phix=t removehuman=t removedog=t removecat=t removemouse=t khist=t removemicrobes=t sketch kapa=t clumpify=t tmpdir= barcodefilter=f trimpolyg=5 usejni=f rqcfilterdata=/databases/RQCFilterData > >(tee -a ${filename_outlog}) 2> >(tee -a ${filename_errlog} >&2)
python <<CODE
import json
Expand Down

0 comments on commit d7edb61

Please sign in to comment.