2022-01-27 14:36:18 +00:00
|
|
|
process {
|
|
|
|
|
|
|
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
2022-05-03 08:42:56 +00:00
|
|
|
|
2022-05-04 09:22:43 +00:00
|
|
|
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'
|
|
|
|
}
|
2022-05-03 08:42:56 +00:00
|
|
|
}
|