mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
0b0f87c2f7
* add module main porechop * update porechop main * add porechop functions * update meta porechop * add test main porechop * add porechop pytest yml * add porechop test.yml * Update modules/porechop/meta.yml Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> * re-add porechop avoid conflict * Update modules/porechop/meta.yml Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> * fix prefix suffix Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com>
13 lines
380 B
Text
13 lines
380 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { PORECHOP } from '../../../modules/porechop/main.nf' addParams( options: [args: '', suffix: '_porechop'] )
|
|
|
|
workflow test_porechop {
|
|
|
|
input = [ [ id:'test', single_end:true ], // meta map
|
|
file(params.test_data['sarscov2']['nanopore']['test_fastq_gz'], checkIfExists: true) ]
|
|
|
|
PORECHOP ( input )
|
|
}
|