2022-01-27 14:36:18 +00:00
|
|
|
#!/usr/bin/env nextflow
|
|
|
|
|
|
|
|
nextflow.enable.dsl = 2
|
|
|
|
|
2022-05-03 08:42:56 +00:00
|
|
|
include { BUSCO } from '../../../modules/busco/main.nf'
|
2022-01-27 14:36:18 +00:00
|
|
|
|
|
|
|
// This tests genome decompression, empty input channels and data download
|
2022-02-25 13:26:23 +00:00
|
|
|
workflow test_busco {
|
2022-05-03 08:42:56 +00:00
|
|
|
|
|
|
|
input = [
|
|
|
|
[ id:'test', single_end:false ], // meta map
|
|
|
|
file( params.test_data['bacteroides_fragilis']['genome']['genome_fna_gz'], checkIfExists: true)
|
|
|
|
]
|
|
|
|
|
|
|
|
BUSCO (
|
|
|
|
input,
|
|
|
|
'bacteria_odb10',
|
|
|
|
[], // Download busco lineage
|
|
|
|
[], // No config
|
|
|
|
)
|
|
|
|
|
2022-01-27 14:36:18 +00:00
|
|
|
}
|
|
|
|
|