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 {
skip_compartments = false
skip_tads = false
skip_multiqc = false
skip_plot_matrix = false
// MultiQC options
multiqc_config = null
......
......@@ -339,6 +339,10 @@
"skip_multiqc": {
"type": "boolean",
"description": "Do not generate MultiQC report"
},
"skip_plot_matrix": {
"type": "boolean",
"description": "Do not generate matrices"
}
}
},
......
......@@ -41,12 +41,7 @@ if (params.digestion){
//****************************************
// 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)
if (params.res_zoomify){
......@@ -223,10 +218,12 @@ workflow HIC {
//
// MODULE: HICEXPLORER/HIC_PLOT_MATRIX
//
HIC_PLOT_MATRIX(
COOLER.out.cool
)
if (!params.skip_plot_matrix){
HIC_PLOT_MATRIX(
COOLER.out.cool
)
ch_versions = ch_versions.mix(HIC_PLOT_MATRIX.out.versions)
}
//
// SUB-WORKFLOW: COMPARTMENT CALLING
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment