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
7b259f18
Commit
7b259f18
authored
4 years ago
by
nservant
Browse files
Options
Downloads
Patches
Plain Diff
[TEST] update test parameters
parent
692cc4d7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
conf/test.config
+4
-4
4 additions, 4 deletions
conf/test.config
main.nf
+10
-9
10 additions, 9 deletions
main.nf
with
14 additions
and
13 deletions
conf/test.config
+
4
−
4
View file @
7b259f18
...
...
@@ -30,8 +30,8 @@ params {
min_insert_size
=
100
max_insert_size
=
600
bin_size
=
'1000
0
'
//
skip_mcool
=
true
//
skip
_tads
=
true
skip_dist_decay
=
true
bin_size
=
'1000'
res_dist_decay
=
'1000'
res
_tads
=
'1000'
tads_caller
=
'insulation,hicexplorer'
}
This diff is collapsed.
Click to expand it.
main.nf
+
10
−
9
View file @
7b259f18
...
...
@@ -916,7 +916,7 @@ process cooler_balance {
file chrsize from chrsize_balance.collect()
output:
set val(sample), val(res), file("${sample}_${res}_norm.cool") into
norm_cool_maps, norm
_cool_maps
_h5
set val(sample), val(res), file("${sample}_${res}_norm.cool") into
balanced
_cool_maps
file("${sample}_${res}_norm.txt") into norm_txt_maps
script:
...
...
@@ -953,7 +953,6 @@ process cooler_zoomify {
/*
* Create h5 file
*/
process convert_to_h5 {
tag "$sample"
...
...
@@ -975,18 +974,20 @@ process convert_to_h5 {
--outputFormat h5 \
"""
}
*/
/****************************************************
* DOWNSTREAM ANALYSIS
*/
(maps_cool_insulation, maps_cool_comp, maps_hicexplorer_ddecay, maps_hicexplorer_tads) = balanced_cool_maps.into(4)
/*
* Counts vs distance QC
*/
if (!params.skip_dist_decay){
chddecay =
h5
maps_ddecay.combine(ddecay_res).filter{ it[1] == it[3] }.dump(tag: "ddecay")
chddecay = maps_
hicexplorer_
ddecay.combine(ddecay_res).filter{ it[1] == it[3] }.dump(tag: "ddecay")
}else{
chddecay = Channel.empty()
}
...
...
@@ -1021,7 +1022,7 @@ process dist_decay {
/*
if(!params.skip_compartments){
chcomp =
iced_maps
_comp.combine(comp_res).filter{ it[1] == it[4] }.dump(tag: "comp")
chcomp =
maps_cool
_comp.combine(comp_res).filter{ it[1] == it[4] }.dump(tag: "comp")
}else{
chcomp = Channel.empty()
}
...
...
@@ -1053,7 +1054,7 @@ process compartment_calling {
*/
if (!params.skip_tads){
chtads =
h5
maps_tads.combine(tads_res_hicexplorer).filter{ it[1] == it[3] }.dump(tag: "hicexp")
chtads = maps_
hicexplorer_
tads.combine(tads_res_hicexplorer).filter{ it[1] == it[3] }.dump(tag: "hicexp")
}else{
chtads = Channel.empty()
}
...
...
@@ -1061,7 +1062,7 @@ if (!params.skip_tads){
process tads_hicexplorer {
tag "$sample - $res"
label 'process_medium'
publishDir "${params.outdir}/tads", mode: 'copy'
publishDir "${params.outdir}/tads
/hicexplorer
", mode: 'copy'
when:
!params.skip_tads && params.tads_caller =~ 'hicexplorer'
...
...
@@ -1082,7 +1083,7 @@ process tads_hicexplorer {
}
if (!params.skip_tads){
chIS =
norm
_cool_
maps
.combine(tads_res_insulation).filter{ it[1] == it[3] }.dump(tag : "ins")
chIS =
maps
_cool_
insulation
.combine(tads_res_insulation).filter{ it[1] == it[3] }.dump(tag : "ins")
}else{
chIS = Channel.empty()
}
...
...
@@ -1090,7 +1091,7 @@ if (!params.skip_tads){
process tads_insulation {
tag "$sample - $res"
label 'process_medium'
publishDir "${params.outdir}/tads", mode: 'copy'
publishDir "${params.outdir}/tads
/insulation
", mode: 'copy'
when:
!params.skip_tads && params.tads_caller =~ 'insulation'
...
...
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