mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
15 lines
445 B
Text
15 lines
445 B
Text
#!/usr/bin/env nextflow
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
include { BUSCO as BUSCO_BACTE } from '../../../modules/busco/main.nf'
|
|
|
|
// This tests genome decompression, empty input channels and data download
|
|
workflow test_busco {
|
|
input = [ [ id:'test' ], file(params.test_data['bacteroides_fragilis']['genome']['genome_fna_gz'], checkIfExists: true) ]
|
|
BUSCO_BACTE ( input,
|
|
"genome",
|
|
[],
|
|
[] )
|
|
}
|
|
|