Skip to content
Snippets Groups Projects
Verified Commit 3331539b authored by Mia Croiset's avatar Mia Croiset
Browse files

cleaning + add option skip plot matrix

parent 20dc4280
No related branches found
No related tags found
No related merge requests found
...@@ -93,6 +93,7 @@ params { ...@@ -93,6 +93,7 @@ params {
skip_compartments = false skip_compartments = false
skip_tads = false skip_tads = false
skip_multiqc = false skip_multiqc = false
skip_plot_matrix = false
// MultiQC options // MultiQC options
multiqc_config = null multiqc_config = null
......
...@@ -339,6 +339,10 @@ ...@@ -339,6 +339,10 @@
"skip_multiqc": { "skip_multiqc": {
"type": "boolean", "type": "boolean",
"description": "Do not generate MultiQC report" "description": "Do not generate MultiQC report"
},
"skip_plot_matrix": {
"type": "boolean",
"description": "Do not generate matrices"
} }
} }
}, },
......
...@@ -41,12 +41,7 @@ if (params.digestion){ ...@@ -41,12 +41,7 @@ if (params.digestion){
//**************************************** //****************************************
// Combine all maps resolution for downstream analysis // Combine all maps resolution for downstream analysis
/* if (params.bin_size instanceof Integer) {
ch_map_res = Channel.from( params.bin_size ).toInteger()
}
else {
ch_map_res = Channel.from( params.bin_size ).splitCsv().flatten().toInteger()
} */
ch_map_res = WorkflowHic.checkIfInt(params.bin_size) ch_map_res = WorkflowHic.checkIfInt(params.bin_size)
if (params.res_zoomify){ if (params.res_zoomify){
...@@ -223,10 +218,12 @@ workflow HIC { ...@@ -223,10 +218,12 @@ workflow HIC {
// //
// MODULE: HICEXPLORER/HIC_PLOT_MATRIX // MODULE: HICEXPLORER/HIC_PLOT_MATRIX
// //
HIC_PLOT_MATRIX( if (!params.skip_plot_matrix){
COOLER.out.cool HIC_PLOT_MATRIX(
) COOLER.out.cool
)
ch_versions = ch_versions.mix(HIC_PLOT_MATRIX.out.versions) ch_versions = ch_versions.mix(HIC_PLOT_MATRIX.out.versions)
}
// //
// SUB-WORKFLOW: COMPARTMENT CALLING // SUB-WORKFLOW: COMPARTMENT CALLING
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment