mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
af3bc225c0
* Add files via upload * Add files via upload * Add files via upload * Add files via upload * Update pytest_software.yml * Update main.nf * fix linting error * Delete test.yml * Create functions.nf * Update main.nf * change test data * revert to !>=20.11.0-edge
15 lines
519 B
Text
15 lines
519 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { UCSC_BED12TOBIGBED } from '../../../../software/ucsc/bed12tobigbed/main.nf' addParams( options: [:] )
|
|
|
|
workflow test_ucsc_bed12tobigbed {
|
|
|
|
def input = []
|
|
input = [ [ id: 'test' ], // meta map
|
|
[ file("${launchDir}/tests/data/genomics/sarscov2/bed/test.bed12", checkIfExists: true )] ]
|
|
sizes = file("${launchDir}/tests/data/genomics/sarscov2/general/test.genome.sizes", checkIfExists: true)
|
|
|
|
UCSC_BED12TOBIGBED ( input, sizes )
|
|
}
|