mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-10 23:33:09 +00:00
Fixes process selector warning
This commit is contained in:
parent
169c7437c8
commit
13e9957e14
4 changed files with 23 additions and 20 deletions
|
@ -274,7 +274,7 @@ process {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
withName: 'NFCORE_TAXPROFILER:TAXPROFILER:PROFILING:MEGAN_RMA2INFO' {
|
withName: 'MEGAN_RMA2INFO_TSV' {
|
||||||
ext.args = "-c2c Taxonomy"
|
ext.args = "-c2c Taxonomy"
|
||||||
ext.prefix = { "${meta.id}" }
|
ext.prefix = { "${meta.id}" }
|
||||||
publishDir = [
|
publishDir = [
|
||||||
|
@ -312,7 +312,7 @@ process {
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
withName: 'NFCORE_TAXPROFILER:TAXPROFILER:VISUALIZATION_KRONA:MEGAN_RMA2INFO' {
|
withName: 'MEGAN_RMA2INFO_KRONA' {
|
||||||
ext.args = { "--read2class Taxonomy" }
|
ext.args = { "--read2class Taxonomy" }
|
||||||
ext.prefix = { "${meta.id}-${meta.db_name}" }
|
ext.prefix = { "${meta.id}-${meta.db_name}" }
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,10 @@ process {
|
||||||
withName: MALT_RUN {
|
withName: MALT_RUN {
|
||||||
maxForks = 1
|
maxForks = 1
|
||||||
}
|
}
|
||||||
withName: MEGAN_RMA2INFO {
|
withName: MEGAN_RMA2INFO_TSV {
|
||||||
|
maxForks = 1
|
||||||
|
}
|
||||||
|
withName: MEGAN_RMA2INFO_KRONA {
|
||||||
maxForks = 1
|
maxForks = 1
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
//
|
//
|
||||||
|
|
||||||
include { MALT_RUN } from '../../modules/nf-core/modules/malt/run/main'
|
include { MALT_RUN } from '../../modules/nf-core/modules/malt/run/main'
|
||||||
include { MEGAN_RMA2INFO } from '../../modules/nf-core/modules/megan/rma2info/main'
|
include { MEGAN_RMA2INFO as MEGAN_RMA2INFO_TSV } from '../../modules/nf-core/modules/megan/rma2info/main'
|
||||||
include { KRAKEN2_KRAKEN2 } from '../../modules/nf-core/modules/kraken2/kraken2/main'
|
include { KRAKEN2_KRAKEN2 } from '../../modules/nf-core/modules/kraken2/kraken2/main'
|
||||||
include { CENTRIFUGE_CENTRIFUGE } from '../../modules/nf-core/modules/centrifuge/centrifuge/main'
|
include { CENTRIFUGE_CENTRIFUGE } from '../../modules/nf-core/modules/centrifuge/centrifuge/main'
|
||||||
include { CENTRIFUGE_KREPORT } from '../../modules/nf-core/modules/centrifuge/kreport/main'
|
include { CENTRIFUGE_KREPORT } from '../../modules/nf-core/modules/centrifuge/kreport/main'
|
||||||
|
@ -109,11 +109,11 @@ workflow PROFILING {
|
||||||
[ meta_new, rma ]
|
[ meta_new, rma ]
|
||||||
}
|
}
|
||||||
|
|
||||||
MEGAN_RMA2INFO (ch_maltrun_for_megan, params.malt_generate_megansummary )
|
MEGAN_RMA2INFO_TSV (ch_maltrun_for_megan, params.malt_generate_megansummary )
|
||||||
ch_multiqc_files = ch_multiqc_files.mix( MALT_RUN.out.log )
|
ch_multiqc_files = ch_multiqc_files.mix( MALT_RUN.out.log )
|
||||||
ch_versions = ch_versions.mix( MALT_RUN.out.versions.first(), MEGAN_RMA2INFO.out.versions.first() )
|
ch_versions = ch_versions.mix( MALT_RUN.out.versions.first(), MEGAN_RMA2INFO_TSV.out.versions.first() )
|
||||||
ch_raw_classifications = ch_raw_classifications.mix( ch_maltrun_for_megan )
|
ch_raw_classifications = ch_raw_classifications.mix( ch_maltrun_for_megan )
|
||||||
ch_raw_profiles = ch_raw_profiles.mix( MEGAN_RMA2INFO.out.txt )
|
ch_raw_profiles = ch_raw_profiles.mix( MEGAN_RMA2INFO_TSV.out.txt )
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
// Create Krona visualizations
|
// Create Krona visualizations
|
||||||
//
|
//
|
||||||
|
|
||||||
include { MEGAN_RMA2INFO } from '../../modules/nf-core/modules/megan/rma2info/main'
|
include { MEGAN_RMA2INFO_KRONA } from '../../modules/nf-core/modules/megan/rma2info/main'
|
||||||
include { KAIJU_KAIJU2KRONA } from '../../modules/nf-core/modules/kaiju/kaiju2krona/main'
|
include { KAIJU_KAIJU2KRONA } from '../../modules/nf-core/modules/kaiju/kaiju2krona/main'
|
||||||
include { KRAKENTOOLS_KREPORT2KRONA } from '../../modules/nf-core/modules/krakentools/kreport2krona/main'
|
include { KRAKENTOOLS_KREPORT2KRONA } from '../../modules/nf-core/modules/krakentools/kreport2krona/main'
|
||||||
include { KRONA_CLEANUP } from '../../modules/local/krona_cleanup'
|
include { KRONA_CLEANUP } from '../../modules/local/krona_cleanup'
|
||||||
|
@ -87,15 +87,15 @@ workflow VISUALIZATION_KRONA {
|
||||||
Convert MALT/MEGAN RMA2INFO files into html Krona visualisations
|
Convert MALT/MEGAN RMA2INFO files into html Krona visualisations
|
||||||
*/
|
*/
|
||||||
if ( params.krona_taxonomy_directory ) {
|
if ( params.krona_taxonomy_directory ) {
|
||||||
MEGAN_RMA2INFO ( ch_input_classifications.malt, false )
|
MEGAN_RMA2INFO_KRONA ( ch_input_classifications.malt, false )
|
||||||
GUNZIP ( MEGAN_RMA2INFO.out.txt )
|
GUNZIP ( MEGAN_RMA2INFO_KRONA.out.txt )
|
||||||
ch_krona_taxonomy_for_input = GUNZIP.out.gunzip
|
ch_krona_taxonomy_for_input = GUNZIP.out.gunzip
|
||||||
.map{[[id: it[0]['db_name'], tool: it[0]['tool']], it[1]]}
|
.map{[[id: it[0]['db_name'], tool: it[0]['tool']], it[1]]}
|
||||||
.groupTuple()
|
.groupTuple()
|
||||||
|
|
||||||
KRONA_KTIMPORTTAXONOMY ( ch_krona_taxonomy_for_input, file(params.krona_taxonomy_directory, checkExists: true) )
|
KRONA_KTIMPORTTAXONOMY ( ch_krona_taxonomy_for_input, file(params.krona_taxonomy_directory, checkExists: true) )
|
||||||
ch_krona_html.mix( KRONA_KTIMPORTTAXONOMY.out.html )
|
ch_krona_html.mix( KRONA_KTIMPORTTAXONOMY.out.html )
|
||||||
ch_versions = ch_versions.mix( MEGAN_RMA2INFO.out.versions.first() )
|
ch_versions = ch_versions.mix( MEGAN_RMA2INFO_KRONA.out.versions.first() )
|
||||||
ch_versions = ch_versions.mix( KRONA_KTIMPORTTAXONOMY.out.versions.first() )
|
ch_versions = ch_versions.mix( KRONA_KTIMPORTTAXONOMY.out.versions.first() )
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue