mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
15fd90ffe8
* initial stubs [ci skip] * remove comments and add main command [ci skip] * design iteration [ci skip] * add new standard functions.nf [ci skip] * update the version string [ci skip] * accomodate the db stubs and single/double ends [ci skip] * add FIXME for missing info [ci skip] * Accomodate the results folder [ci skip] * Update main.nf * Apply suggestions from code review * Update main.nf * Apply suggestions from code review * Add version file to stubs [ci skip] * Tweak the output dir pattern [ci skip] * Update modules/phyloflash/main.nf * Update modules/phyloflash/main.nf * Update modules/phyloflash/main.nf Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com> Co-authored-by: FriederikeHanssen <Friederike.hanssen@qbic.uni-tuebingen.de>
44 lines
1.1 KiB
Text
44 lines
1.1 KiB
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { PHYLOFLASH } from '../../../modules/phyloflash/main.nf' addParams( options: [:] )
|
|
|
|
process STUB_PHYLOFLASH_DATABASE {
|
|
output:
|
|
path "ref" , emit: silva_db
|
|
path "UniVec" , emit: univec_db
|
|
|
|
stub:
|
|
"""
|
|
mkdir ref
|
|
touch UniVec
|
|
"""
|
|
}
|
|
|
|
workflow test_phyloflash_single_end {
|
|
|
|
STUB_PHYLOFLASH_DATABASE ()
|
|
|
|
input = [
|
|
[ id:'test', single_end:true ], // meta map
|
|
[ file(params.test_data['sarscov2']['illumina']['test_1_fastq_gz'], checkIfExists: true) ]
|
|
]
|
|
|
|
PHYLOFLASH ( input, STUB_PHYLOFLASH_DATABASE.out.silva_db, STUB_PHYLOFLASH_DATABASE.out.univec_db )
|
|
}
|
|
|
|
workflow test_phyloflash_paired_end {
|
|
|
|
STUB_PHYLOFLASH_DATABASE ()
|
|
|
|
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)
|
|
]
|
|
]
|
|
|
|
PHYLOFLASH ( input, STUB_PHYLOFLASH_DATABASE.out.silva_db, STUB_PHYLOFLASH_DATABASE.out.univec_db )
|
|
}
|