mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
atomize
This commit is contained in:
parent
67481c6d54
commit
4591ea2205
4 changed files with 18 additions and 36 deletions
|
@ -11,7 +11,7 @@ process MERYL_COUNT {
|
|||
tuple val(meta), path(reads)
|
||||
|
||||
output:
|
||||
tuple val(meta), path("*.meryl"), emit: meryl
|
||||
tuple val(meta), path("*.meryldb"), emit: meryl_db
|
||||
path "versions.yml" , emit: versions
|
||||
|
||||
when:
|
||||
|
@ -19,7 +19,6 @@ process MERYL_COUNT {
|
|||
|
||||
script:
|
||||
def args = task.ext.args ?: ''
|
||||
def args2 = task.ext.args2 ?: ''
|
||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||
"""
|
||||
for READ in $reads; do
|
||||
|
@ -27,15 +26,8 @@ process MERYL_COUNT {
|
|||
threads=$task.cpus \\
|
||||
$args \\
|
||||
$reads \\
|
||||
output read.\${READ%.f*}.meryl
|
||||
output read.\${READ%.f*}.meryldb
|
||||
done
|
||||
meryl union-sum \\
|
||||
threads=$task.cpus \\
|
||||
$args2 \\
|
||||
output ${prefix}.meryl
|
||||
|
||||
# clean up
|
||||
rm -rf read.*.meryl
|
||||
|
||||
cat <<-END_VERSIONS > versions.yml
|
||||
"${task.process}":
|
||||
|
|
|
@ -1,51 +1,42 @@
|
|||
name: "meryl_count"
|
||||
## TODO nf-core: Add a description of the module and list keywords
|
||||
description: write your description here
|
||||
description: A genomic k-mer counter (and sequence utility) with nice features.
|
||||
keywords:
|
||||
- sort
|
||||
- k-mer
|
||||
- count
|
||||
tools:
|
||||
- "meryl":
|
||||
## TODO nf-core: Add a description and other details for the software below
|
||||
description: ""
|
||||
homepage: "{}"
|
||||
documentation: "{}"
|
||||
tool_dev_url: "{}"
|
||||
description: "A genomic k-mer counter (and sequence utility) with nice features. "
|
||||
homepage: "https://github.com/marbl/meryl"
|
||||
documentation: "https://meryl.readthedocs.io/en/latest/quick-start.html"
|
||||
tool_dev_url: "https://github.com/marbl/meryl"
|
||||
doi: ""
|
||||
licence: "['GPL']"
|
||||
|
||||
## TODO nf-core: Add a description of all of the variables used as input
|
||||
input:
|
||||
# Only when we have meta
|
||||
- meta:
|
||||
type: map
|
||||
description: |
|
||||
Groovy Map containing sample information
|
||||
e.g. [ id:'test', single_end:false ]
|
||||
#
|
||||
## TODO nf-core: Delete / customise this example input
|
||||
- bam:
|
||||
- reads:
|
||||
type: file
|
||||
description: BAM/CRAM/SAM file
|
||||
pattern: "*.{bam,cram,sam}"
|
||||
description: |
|
||||
List of input FastQ files of size 1 and 2 for single-end and paired-end data,
|
||||
respectively.
|
||||
|
||||
## TODO nf-core: Add a description of all of the variables used as output
|
||||
output:
|
||||
#Only when we have meta
|
||||
- meta:
|
||||
type: map
|
||||
description: |
|
||||
Groovy Map containing sample information
|
||||
e.g. [ id:'test', single_end:false ]
|
||||
#
|
||||
- versions:
|
||||
type: file
|
||||
description: File containing software versions
|
||||
pattern: "versions.yml"
|
||||
## TODO nf-core: Delete / customise this example output
|
||||
- bam:
|
||||
type: file
|
||||
description: Sorted BAM/CRAM/SAM file
|
||||
pattern: "*.{bam,cram,sam}"
|
||||
- meryl_db:
|
||||
type: directory
|
||||
description: A Meryl k-mer database
|
||||
|
||||
authors:
|
||||
- "@mahesh-panchal"
|
||||
|
|
|
@ -4,7 +4,7 @@ nextflow.enable.dsl = 2
|
|||
|
||||
include { MERYL_COUNT } from '../../../../modules/meryl/count/main.nf'
|
||||
|
||||
workflow test_meryl_count_single_end {
|
||||
workflow test_meryl_count {
|
||||
|
||||
input = [
|
||||
[ id:'test' ], // meta map
|
||||
|
|
|
@ -2,6 +2,5 @@ process {
|
|||
|
||||
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||||
ext.args = 'k=21'
|
||||
ext.args2 = 'k=21'
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue