mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
13 lines
438 B
Text
13 lines
438 B
Text
|
process {
|
||
|
|
||
|
withName: BLAST_MAKEBLASTDB {
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
ext.args = '-dbtype nucl'
|
||
|
}
|
||
|
|
||
|
withName: BLAST_TBLASTN {
|
||
|
publishDir = { "${params.outdir}/${task.process.tokenize(':')[-1].tokenize('_')[0].toLowerCase()}" }
|
||
|
ext.args = '-outfmt 6 -task tblastn -evalue 0.001 -qcov_hsp_perc 60 -max_target_seqs 1'
|
||
|
}
|
||
|
}
|