nf-core_modules/tests/modules/busco/main.nf

26 lines
653 B
Text
Raw Normal View History

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