File tree 1 file changed +14
-14
lines changed
1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -2,28 +2,28 @@ process BBMERGE {
2
2
3
3
/* */
4
4
5
- tag " ${ sample_id} "
5
+ tag " ${ sample_id} "
6
6
7
7
errorStrategy { task. attempt < 3 ? ' retry' : ' ignore' }
8
8
maxRetries 2
9
9
10
- input:
10
+ input:
11
11
tuple val(sample_id), path(reads1), path(reads2)
12
12
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" )
15
15
16
- script:
17
- """
18
- bbmerge-auto .sh \
19
- in1=`realpath ${ reads1} ` \
16
+ script:
17
+ """
18
+ bbmerge.sh \
19
+ in1=`realpath ${ reads1} ` \
20
20
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
+ """
27
27
28
28
}
29
29
You can’t perform that action at this time.
0 commit comments