mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
89a84538be
* Update busco to v5.4.3 and tar small files * Fix file contain strings * Swap md5sums to contains for variable files
28 lines
733 B
Text
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'
|
|
}
|
|
}
|