mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 18:59:55 +00:00
Merge pull request #105 from genomic-medicine-sweden/diamond-update
Update the dev branch with the DIAMOND module update
This commit is contained in:
commit
06298e867c
5 changed files with 13 additions and 3 deletions
|
@ -387,7 +387,7 @@ process {
|
||||||
publishDir = [
|
publishDir = [
|
||||||
path: { "${params.outdir}/diamond/${meta.db_name}" },
|
path: { "${params.outdir}/diamond/${meta.db_name}" },
|
||||||
mode: params.publish_dir_mode,
|
mode: params.publish_dir_mode,
|
||||||
pattern: '*.{blast,xml,txt,daa,sam,tsv,paf}'
|
pattern: '*.{blast,xml,txt,daa,sam,tsv,paf,log}'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@
|
||||||
"git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d"
|
"git_sha": "e745e167c1020928ef20ea1397b6b4d230681b4d"
|
||||||
},
|
},
|
||||||
"diamond/blastx": {
|
"diamond/blastx": {
|
||||||
"git_sha": "bd3bfe0817246082525ab93707976676b1fe208b"
|
"git_sha": "3531824af826c16cd252bc5aa82ae169b244ebaa"
|
||||||
},
|
},
|
||||||
"fastp": {
|
"fastp": {
|
||||||
"git_sha": "d0a1cbb703a130c19f6796c3fce24fbe7dfce789"
|
"git_sha": "d0a1cbb703a130c19f6796c3fce24fbe7dfce789"
|
||||||
|
|
6
modules/nf-core/modules/diamond/blastx/main.nf
generated
6
modules/nf-core/modules/diamond/blastx/main.nf
generated
|
@ -21,6 +21,7 @@ process DIAMOND_BLASTX {
|
||||||
tuple val(meta), path('*.sam') , optional: true, emit: sam
|
tuple val(meta), path('*.sam') , optional: true, emit: sam
|
||||||
tuple val(meta), path('*.tsv') , optional: true, emit: tsv
|
tuple val(meta), path('*.tsv') , optional: true, emit: tsv
|
||||||
tuple val(meta), path('*.paf') , optional: true, emit: paf
|
tuple val(meta), path('*.paf') , optional: true, emit: paf
|
||||||
|
tuple val(meta), path("*.log") , emit: log
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
|
@ -54,7 +55,10 @@ process DIAMOND_BLASTX {
|
||||||
--query $fasta \\
|
--query $fasta \\
|
||||||
--outfmt ${outfmt} ${columns} \\
|
--outfmt ${outfmt} ${columns} \\
|
||||||
$args \\
|
$args \\
|
||||||
--out ${prefix}.${out_ext}
|
--out ${prefix}.${out_ext} \\
|
||||||
|
--log
|
||||||
|
|
||||||
|
mv diamond.log ${prefix}.log
|
||||||
|
|
||||||
cat <<-END_VERSIONS > versions.yml
|
cat <<-END_VERSIONS > versions.yml
|
||||||
"${task.process}":
|
"${task.process}":
|
||||||
|
|
5
modules/nf-core/modules/diamond/blastx/meta.yml
generated
5
modules/nf-core/modules/diamond/blastx/meta.yml
generated
|
@ -70,7 +70,12 @@ output:
|
||||||
type: file
|
type: file
|
||||||
description: File containing software versions
|
description: File containing software versions
|
||||||
pattern: "versions.yml"
|
pattern: "versions.yml"
|
||||||
|
- log:
|
||||||
|
type: file
|
||||||
|
description: Log file containing stdout information
|
||||||
|
pattern: "*.{log}"
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- "@spficklin"
|
- "@spficklin"
|
||||||
- "@jfy133"
|
- "@jfy133"
|
||||||
|
- "@mjamy"
|
||||||
|
|
|
@ -208,6 +208,7 @@ workflow PROFILING {
|
||||||
DIAMOND_BLASTX ( ch_input_for_diamond.reads, ch_input_for_diamond.db, ch_diamond_reads_format , [] )
|
DIAMOND_BLASTX ( ch_input_for_diamond.reads, ch_input_for_diamond.db, ch_diamond_reads_format , [] )
|
||||||
ch_versions = ch_versions.mix( DIAMOND_BLASTX.out.versions.first() )
|
ch_versions = ch_versions.mix( DIAMOND_BLASTX.out.versions.first() )
|
||||||
ch_raw_profiles = ch_raw_profiles.mix( DIAMOND_BLASTX.out.tsv )
|
ch_raw_profiles = ch_raw_profiles.mix( DIAMOND_BLASTX.out.tsv )
|
||||||
|
ch_multiqc_files = ch_multiqc_files.mix( DIAMOND_BLASTX.out.log )
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue