Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
Hub
hic
Commits
3331539b
Verified
Commit
3331539b
authored
1 year ago
by
Mia Croiset
Browse files
Options
Downloads
Patches
Plain Diff
cleaning + add option skip plot matrix
parent
20dc4280
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
nextflow.config
+1
-0
1 addition, 0 deletions
nextflow.config
nextflow_schema.json
+4
-0
4 additions, 0 deletions
nextflow_schema.json
workflows/hic.nf
+6
-9
6 additions, 9 deletions
workflows/hic.nf
with
11 additions
and
9 deletions
nextflow.config
+
1
−
0
View file @
3331539b
...
...
@@ -93,6 +93,7 @@ params {
skip_compartments
=
false
skip_tads
=
false
skip_multiqc
=
false
skip_plot_matrix
=
false
//
MultiQC
options
multiqc_config
=
null
...
...
This diff is collapsed.
Click to expand it.
nextflow_schema.json
+
4
−
0
View file @
3331539b
...
...
@@ -339,6 +339,10 @@
"skip_multiqc"
:
{
"type"
:
"boolean"
,
"description"
:
"Do not generate MultiQC report"
},
"skip_plot_matrix"
:
{
"type"
:
"boolean"
,
"description"
:
"Do not generate matrices"
}
}
},
...
...
This diff is collapsed.
Click to expand it.
workflows/hic.nf
+
6
−
9
View file @
3331539b
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment