mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
fix config
This commit is contained in:
parent
743e95c61b
commit
c5627e0274
2 changed files with 6 additions and 6 deletions
|
@ -2,12 +2,12 @@ process {
|
|||
|
||||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||||
withName: BIOBAMBAM_BAMMERGE {
|
||||
ext.args = [
|
||||
ext.args = {[
|
||||
"md5=1",
|
||||
{"md5filename=${meta.id}.md5"},
|
||||
"md5filename=${meta.id}.md5",
|
||||
"index=1",
|
||||
{"indexfilename=${meta.id}.bam.bai"}
|
||||
].join(" ").trim()
|
||||
"indexfilename=${meta.id}.bam.bai"
|
||||
].join(" ").trim()}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
- name: biobambam bammerge test_biobambam_bammerge_paired
|
||||
command: nextflow run ./tests/modules/biobambam/bammerge -entry test_biobambam_bammerge_paired -c ./tests/config/nextflow.config -c ./tests/modules/biobambam/bammerge/nextflow.config
|
||||
tags:
|
||||
- biobambam
|
||||
- biobambam/bammerge
|
||||
- biobambam
|
||||
files:
|
||||
- path: output/biobambam/test.bam
|
||||
md5sum: bc3d32ab6a54d1894ca7cc79387dec57
|
||||
|
@ -14,8 +14,8 @@
|
|||
- name: biobambam bammerge test_biobambam_bammerge_single
|
||||
command: nextflow run ./tests/modules/biobambam/bammerge -entry test_biobambam_bammerge_single -c ./tests/config/nextflow.config -c ./tests/modules/biobambam/bammerge/nextflow.config
|
||||
tags:
|
||||
- biobambam
|
||||
- biobambam/bammerge
|
||||
- biobambam
|
||||
files:
|
||||
- path: output/biobambam/test.bam
|
||||
md5sum: 86185d3d6895a7722d3b3a09c6f91bfc
|
||||
|
|
Loading…
Reference in a new issue