mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-13 06:53:10 +00:00
Add run_krona option to allow skipping Krona chart creation
This commit is contained in:
parent
15ac8b39fa
commit
18284e6e32
5 changed files with 12 additions and 2 deletions
|
@ -37,6 +37,7 @@ params {
|
|||
run_metaphlan3 = true
|
||||
run_centrifuge = true
|
||||
run_diamond = true
|
||||
run_krona = true
|
||||
malt_save_reads = true
|
||||
kraken2_save_reads = true
|
||||
centrifuge_save_reads = true
|
||||
|
|
|
@ -37,6 +37,7 @@ params {
|
|||
run_metaphlan3 = true
|
||||
run_centrifuge = true
|
||||
run_diamond = true
|
||||
run_krona = true
|
||||
}
|
||||
|
||||
process {
|
||||
|
|
|
@ -125,6 +125,9 @@ params {
|
|||
run_diamond = false
|
||||
diamond_output_format = 'tsv' // TSV is only format with taxonomic information apparently
|
||||
diamond_save_reads = false // this will override default diamond output format so no taxonomic profile is generated!
|
||||
|
||||
// krona
|
||||
run_krona = false
|
||||
}
|
||||
|
||||
// Load base.config by default for all pipelines
|
||||
|
|
|
@ -433,6 +433,9 @@
|
|||
},
|
||||
"diamond_save_reads": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"run_krona": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -213,8 +213,10 @@ workflow TAXPROFILER {
|
|||
/*
|
||||
SUBWORKFLOW: VISUALIZATION_KRONA
|
||||
*/
|
||||
VISUALIZATION_KRONA ( PROFILING.out.profiles )
|
||||
ch_versions = ch_versions.mix( VISUALIZATION_KRONA.out.versions )
|
||||
if ( params.run_krona ) {
|
||||
VISUALIZATION_KRONA ( PROFILING.out.profiles )
|
||||
ch_versions = ch_versions.mix( VISUALIZATION_KRONA.out.versions )
|
||||
}
|
||||
|
||||
/*
|
||||
MODULE: MultiQC
|
||||
|
|
Loading…
Reference in a new issue