mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
378fa5fbb4
* initial version of gamma module * remove trailing whitespace * prettier fix * hardcode version number * Update modules/gamma/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/gamma/main.nf Co-authored-by: James A. Fellows Yates <jfy133@gmail.com> * Update modules/gamma/meta.yml Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> * update meta and prettier * add whitespaces * add fasta output and tests Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
17 lines
427 B
Text
17 lines
427 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { GAMMA } from '../../../modules/gamma/main.nf'
|
|
|
|
workflow test_gamma {
|
|
|
|
input = [
|
|
[ id:'test', single_end:false ], // meta map
|
|
file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
|
|
]
|
|
|
|
db = [ file(params.test_data['sarscov2']['genome']['transcriptome_fasta'], checkIfExists: true) ]
|
|
|
|
GAMMA ( input, db )
|
|
}
|