mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
8df20218bf
Co-authored-by: Jill V. Hagey, PhD <jvhagey@gmail.com>
28 lines
697 B
Text
28 lines
697 B
Text
process {
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
|
|
|
withName: 'test_busco_genome_single_fasta:BUSCO' {
|
|
ext.args = '--mode genome'
|
|
}
|
|
|
|
withName: 'test_busco_genome_multi_fasta:BUSCO' {
|
|
ext.args = '--mode genome'
|
|
}
|
|
|
|
withName: 'test_busco_eukaryote_metaeuk:BUSCO' {
|
|
ext.args = '--mode genome'
|
|
}
|
|
|
|
withName: 'test_busco_eukaryote_augustus:BUSCO' {
|
|
ext.args = '--mode genome --augustus'
|
|
}
|
|
|
|
withName: 'test_busco_protein:BUSCO' {
|
|
ext.args = '--mode proteins'
|
|
}
|
|
|
|
withName: 'test_busco_transcriptome:BUSCO'{
|
|
ext.args = '--mode transcriptome'
|
|
}
|
|
}
|