2021-04-09 12:10:32 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
|
|
|
include { RASUSA } from '../../../software/rasusa/main.nf' addParams( options: ['suffix':'_100X'])
|
|
|
|
|
|
|
|
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)
|
2021-04-12 20:47:55 +00:00
|
|
|
],
|
|
|
|
"1000000b"
|
2021-04-09 12:10:32 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
depth_cutoff = 100
|
|
|
|
|
2021-04-12 20:47:55 +00:00
|
|
|
RASUSA ( input, depth_cutoff )
|
2021-04-09 12:10:32 +00:00
|
|
|
}
|