nf-core_modules/tests/modules/homer/annotatepeaks/main.nf

15 lines
568 B
Text
Raw Normal View History

#!/usr/bin/env nextflow
nextflow.enable.dsl = 2
include { HOMER_ANNOTATEPEAKS } from '../../../../modules/homer/annotatepeaks/main.nf' addParams( options: [:] )
workflow test_homer_annotatepeaks {
input = [ [ id:'test'],
file(params.test_data['sarscov2']['genome']['test_bed'], checkIfExists: true)
]
fasta = file(params.test_data['sarscov2']['genome']['genome_fasta'], checkIfExists: true)
gtf = file(params.test_data['sarscov2']['genome']['genome_gtf'], checkIfExists: true)
HOMER_ANNOTATEPEAKS ( input, fasta, gtf )
}