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
01469812
Commit
01469812
authored
5 years ago
by
nservant
Browse files
Options
Downloads
Patches
Plain Diff
add --skip options
parent
0c0e2fd2
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
main.nf
+8
-0
8 additions, 0 deletions
main.nf
nextflow.config
+2
-0
2 additions, 0 deletions
nextflow.config
with
10 additions
and
0 deletions
main.nf
+
8
−
0
View file @
01469812
...
@@ -75,6 +75,8 @@ def helpMessage() {
...
@@ -75,6 +75,8 @@ def helpMessage() {
-name Name for the pipeline run. If not specified, Nextflow will automatically generate a random mnemonic.
-name Name for the pipeline run. If not specified, Nextflow will automatically generate a random mnemonic.
Step options:
Step options:
--skip_maps Skip generation of contact maps. Useful for capture-C
--skip_ice Skip ICE normalization
--skip_cool Skip generation of cool files
--skip_cool Skip generation of cool files
--skip_multiQC Skip MultiQC
--skip_multiQC Skip MultiQC
...
@@ -720,6 +722,9 @@ process build_contact_maps{
...
@@ -720,6 +722,9 @@ process build_contact_maps{
tag "$sample - $mres"
tag "$sample - $mres"
publishDir "${params.outdir}/hic_results/matrix/raw", mode: 'copy'
publishDir "${params.outdir}/hic_results/matrix/raw", mode: 'copy'
when:
!params.skip_maps
input:
input:
set val(sample), file(vpairs), val(mres) from all_valid_pairs.combine(map_res)
set val(sample), file(vpairs), val(mres) from all_valid_pairs.combine(map_res)
file chrsize from chromosome_size.collect()
file chrsize from chromosome_size.collect()
...
@@ -742,6 +747,9 @@ process run_ice{
...
@@ -742,6 +747,9 @@ process run_ice{
tag "$rmaps"
tag "$rmaps"
publishDir "${params.outdir}/hic_results/matrix/iced", mode: 'copy'
publishDir "${params.outdir}/hic_results/matrix/iced", mode: 'copy'
when:
!params.skip_maps && !params.skip_ice
input:
input:
file(rmaps) from raw_maps
file(rmaps) from raw_maps
file "*.biases"
file "*.biases"
...
...
This diff is collapsed.
Click to expand it.
nextflow.config
+
2
−
0
View file @
01469812
...
@@ -19,6 +19,8 @@ params {
...
@@ -19,6 +19,8 @@ params {
readPaths
=
false
readPaths
=
false
chromosome_size
=
false
chromosome_size
=
false
restriction_fragments
=
false
restriction_fragments
=
false
skip_maps
=
false
skip_ice
=
false
skip_cool
=
false
skip_cool
=
false
skip_multiqc
=
false
skip_multiqc
=
false
dnase
=
false
dnase
=
false
...
...
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