mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-15 06:03:10 +00:00
8e21005d53
* cherry pick the module files from sanger-tol branch and update the test data from official nf-core test datasets * Update modules/blast/tblastn/main.nf, align the emit Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com> Co-authored-by: nvnieuwk <101190534+nvnieuwk@users.noreply.github.com>
12 lines
438 B
Text
12 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'
|
|
}
|
|
}
|