mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
update: BWA/ALN
(#653)
* Specify more guidelines on input channels * Linting * Updates based on code review * Update README.md * Fix broken sentence * Remove reads from output channel following module guidelines. Should do a .join() based on $meta, to reassociate. Co-authored-by: Gregor Sturm <mail@gregor-sturm.de>
This commit is contained in:
parent
bc7b5b3a12
commit
ab93a1afa7
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ process BWA_ALN {
|
|||
path index
|
||||
|
||||
output:
|
||||
tuple val(meta), path(reads), path("*.sai"), emit: sai
|
||||
tuple val(meta), path("*.sai"), emit: sai
|
||||
path "*.version.txt" , emit: version
|
||||
|
||||
script:
|
||||
|
|
|
@ -47,7 +47,7 @@ output:
|
|||
pattern: "*.{version.txt}"
|
||||
- sai:
|
||||
type: file
|
||||
description: SA coordinate file
|
||||
description: Single or paired SA coordinate files
|
||||
pattern: "*.sai"
|
||||
|
||||
authors:
|
||||
|
|
Loading…
Reference in a new issue