nf-core_modules/tests/modules/busco/nextflow.config
Mahesh Binzer-Panchal 89a84538be
Update busco to v5.4.3 and tar small files (#1970)
* Update busco to v5.4.3 and tar small files

* Fix file contain strings

* Swap md5sums to contains for variable files
2022-08-30 10:25:01 +02:00

28 lines
733 B
Text

process {
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
withName: 'test_busco_genome_single_fasta:BUSCO' {
ext.args = '--mode genome --tar'
}
withName: 'test_busco_genome_multi_fasta:BUSCO' {
ext.args = '--mode genome --tar'
}
withName: 'test_busco_eukaryote_metaeuk:BUSCO' {
ext.args = '--mode genome --tar'
}
withName: 'test_busco_eukaryote_augustus:BUSCO' {
ext.args = '--mode genome --augustus --tar'
}
withName: 'test_busco_protein:BUSCO' {
ext.args = '--mode proteins --tar'
}
withName: 'test_busco_transcriptome:BUSCO'{
ext.args = '--mode transcriptome --tar'
}
}