Skip to content

Commit

Permalink
reverted to version 39.01
Browse files Browse the repository at this point in the history
  • Loading branch information
erinyoung committed Apr 24, 2024
1 parent 031e2fd commit 0252e5b
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions modules/local/bbduk.nf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ process bbduk {
tag "${meta.id}"
label "process_medium"
publishDir params.outdir, mode: 'copy', saveAs: { filename -> filename.equals('versions.yml') ? null : filename }
container 'staphb/bbtools:39.06'
errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
container 'staphb/bbtools:39.01'
//errorStrategy { task.attempt < 2 ? 'retry' : 'ignore'}
time '10m'

input:
Expand Down Expand Up @@ -32,7 +32,7 @@ process bbduk {
out1=bbduk/${prefix}_rmphix_R1.fastq.gz \
out2=bbduk/${prefix}_rmphix_R2.fastq.gz \
outm=bbduk/${prefix}.matched_phix.fastq.gz \
ref=/bbmap/resources/phix174_ill.ref.fa.gz \
ref=/opt/bbmap/resources/phix174_ill.ref.fa.gz \
stats=bbduk/${prefix}.phix.stats.txt \
threads=${task.cpus} \
| tee -a \$log_file
Expand All @@ -43,3 +43,5 @@ process bbduk {
END_VERSIONS
"""
}

//ref=/bbmap/resources/phix174_ill.ref.fa.gz \

0 comments on commit 0252e5b

Please sign in to comment.