1
0
Fork 0
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:
Moritz E. Beber 2022-10-05 13:51:15 +02:00
parent 180cac0395
commit 5f3dbd28de
3 changed files with 25 additions and 4 deletions

View file

@ -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",

View file

@ -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

View 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
************************************************************