mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
🧸 Updated rasusa (#437)
* changed genome size input position
* fixed...😊
This commit is contained in:
parent
c99ab09f8d
commit
c736817598
3 changed files with 7 additions and 8 deletions
|
@ -19,9 +19,8 @@ process RASUSA {
|
|||
}
|
||||
|
||||
input:
|
||||
tuple val(meta), path(reads)
|
||||
tuple val(meta), path(reads), val(genome_size)
|
||||
val depth_cutoff
|
||||
val genome_size
|
||||
|
||||
output:
|
||||
tuple val(meta), path('*.fastq.gz'), emit: reads
|
||||
|
|
|
@ -22,12 +22,12 @@ input:
|
|||
- reads:
|
||||
type: file
|
||||
description: List of input paired-end FastQ files
|
||||
- depth_cutoff:
|
||||
type: integer
|
||||
description: Depth of coverage cutoff
|
||||
- genome_size:
|
||||
type: string
|
||||
description: Genome size of the species
|
||||
- depth_cutoff:
|
||||
type: integer
|
||||
description: Depth of coverage cutoff
|
||||
|
||||
output:
|
||||
- meta:
|
||||
|
|
|
@ -8,11 +8,11 @@ workflow test_rasusa {
|
|||
input = [ [ id:'test', single_end:false], // meta map
|
||||
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true),
|
||||
file(params.test_data['sarscov2']['illumina']['test_2_fastq_gz'], checkIfExists: true)
|
||||
]
|
||||
],
|
||||
"1000000b"
|
||||
]
|
||||
|
||||
depth_cutoff = 100
|
||||
genome_size = "1000000b"
|
||||
|
||||
RASUSA ( input, depth_cutoff, genome_size )
|
||||
RASUSA ( input, depth_cutoff )
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue