mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-13 07:03:10 +00:00
fix: patch inputs to correspond to previous version
This commit is contained in:
parent
180cac0395
commit
5f3dbd28de
3 changed files with 25 additions and 4 deletions
|
@ -119,7 +119,8 @@
|
|||
},
|
||||
"minimap2/index": {
|
||||
"branch": "master",
|
||||
"git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905"
|
||||
"git_sha": "5e34754d42cd2d5d248ca8673c0a53cdf5624905",
|
||||
"patch": "modules/nf-core/minimap2/index/minimap2-index.diff"
|
||||
},
|
||||
"motus/merge": {
|
||||
"branch": "master",
|
||||
|
|
6
modules/nf-core/minimap2/index/main.nf
generated
6
modules/nf-core/minimap2/index/main.nf
generated
|
@ -7,11 +7,11 @@ process MINIMAP2_INDEX {
|
|||
'quay.io/biocontainers/minimap2:2.21--h5bf99c6_0' }"
|
||||
|
||||
input:
|
||||
tuple val(meta), path(fasta)
|
||||
path fasta
|
||||
|
||||
output:
|
||||
tuple val(meta), path("*.mmi"), emit: index
|
||||
path "versions.yml" , emit: versions
|
||||
path "*.mmi" , emit: index
|
||||
path "versions.yml" , emit: versions
|
||||
|
||||
when:
|
||||
task.ext.when == null || task.ext.when
|
||||
|
|
20
modules/nf-core/minimap2/index/minimap2-index.diff
generated
Normal file
20
modules/nf-core/minimap2/index/minimap2-index.diff
generated
Normal file
|
@ -0,0 +1,20 @@
|
|||
Changes in module 'nf-core/minimap2/index'
|
||||
--- modules/nf-core/minimap2/index/main.nf
|
||||
+++ modules/nf-core/minimap2/index/main.nf
|
||||
@@ -7,11 +7,11 @@
|
||||
'quay.io/biocontainers/minimap2:2.21--h5bf99c6_0' }"
|
||||
|
||||
input:
|
||||
- tuple val(meta), path(fasta)
|
||||
+ path fasta
|
||||
|
||||
output:
|
||||
- tuple val(meta), path("*.mmi"), emit: index
|
||||
- path "versions.yml" , emit: versions
|
||||
+ path "*.mmi" , emit: index
|
||||
+ path "versions.yml" , emit: versions
|
||||
|
||||
when:
|
||||
task.ext.when == null || task.ext.when
|
||||
|
||||
************************************************************
|
Loading…
Reference in a new issue