Skip to content

Commit 1745a6f

Browse files
committed
switching away from bbmerge auto to normal bbmerge
1 parent 8d4489b commit 1745a6f

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

modules/bbmap.nf

+14-14
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,28 @@ process BBMERGE {
22

33
/* */
44

5-
tag "${sample_id}"
5+
tag "${sample_id}"
66

77
errorStrategy { task.attempt < 3 ? 'retry' : 'ignore' }
88
maxRetries 2
99

10-
input:
10+
input:
1111
tuple val(sample_id), path(reads1), path(reads2)
1212

13-
output:
14-
tuple val(sample_id), path("${sample_id}.merged.preclump.fastq.gz")
13+
output:
14+
tuple val(sample_id), path("${sample_id}.merged.preclump.fastq.gz")
1515

16-
script:
17-
"""
18-
bbmerge-auto.sh \
19-
in1=`realpath ${reads1}` \
16+
script:
17+
"""
18+
bbmerge.sh \
19+
in1=`realpath ${reads1}` \
2020
in2=`realpath ${reads2}` \
21-
out=${sample_id}.merged.preclump.fastq.gz \
22-
outu=${sample_id}.unmerged.preclump.fastq.gz \
23-
strict k=93 extend2=80 rem ordered \
24-
ihist=${sample_id}_ihist_merge.txt \
25-
threads=${task.cpus}
26-
"""
21+
out=${sample_id}.merged.preclump.fastq.gz \
22+
outu=${sample_id}.unmerged.preclump.fastq.gz \
23+
strict k=93 extend2=80 rem ordered \
24+
ihist=${sample_id}_ihist_merge.txt \
25+
threads=${task.cpus}
26+
"""
2727

2828
}
2929

0 commit comments

Comments
 (0)