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
977a62ad
Commit
977a62ad
authored
5 years ago
by
nservant
Browse files
Options
Downloads
Patches
Plain Diff
Change output of mapped_3hic_fragments.py
parent
a44a7506
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CHANGELOG.md
+1
-2
1 addition, 2 deletions
CHANGELOG.md
bin/mapped_2hic_fragments.py
+11
-6
11 additions, 6 deletions
bin/mapped_2hic_fragments.py
conf/hicpro.config
+1
-0
1 addition, 0 deletions
conf/hicpro.config
main.nf
+15
-7
15 additions, 7 deletions
main.nf
with
28 additions
and
15 deletions
CHANGELOG.md
+
1
−
2
View file @
977a62ad
# nf-core/hic: Changelog
# nf-core/hic: Changelog
## v1.1dev
## v1.1dev
*
Add --saveInteractionBAM option
*
Fix bug for reads extension _1/_2 (#30)
*
Fix bug for reads extension _1/_2 (#30)
*
Update manual (#28)
*
Update manual (#28)
## v1.0 - 2019-05-06
## v1.0 - 2019-05-06
...
...
This diff is collapsed.
Click to expand it.
bin/mapped_2hic_fragments.py
+
11
−
6
View file @
977a62ad
...
@@ -53,7 +53,7 @@ def get_args():
...
@@ -53,7 +53,7 @@ def get_args():
"
minInsertSize=
"
,
"
maxInsertSize
"
,
"
minInsertSize=
"
,
"
maxInsertSize
"
,
"
minFragSize
"
,
"
maxFragSize
"
,
"
minFragSize
"
,
"
maxFragSize
"
,
"
minDist
"
,
"
minDist
"
,
"
gatg
"
,
"
sam
Out
"
,
"
verbose
"
,
"
all
"
,
"
help
"
])
"
gatg
"
,
"
sam
"
,
"
verbose
"
,
"
all
"
,
"
help
"
])
except
getopt
.
GetoptError
:
except
getopt
.
GetoptError
:
usage
()
usage
()
sys
.
exit
(
-
1
)
sys
.
exit
(
-
1
)
...
@@ -442,7 +442,7 @@ def get_interaction_type(read1, read1_chrom, resfrag1, read2,
...
@@ -442,7 +442,7 @@ def get_interaction_type(read1, read1_chrom, resfrag1, read2,
# If returned InteractionType=None -> Same restriction fragment
# If returned InteractionType=None -> Same restriction fragment
# and same strand = Dump
# and same strand = Dump
interactionType
=
None
interactionType
=
None
if
not
read1
.
is_unmapped
and
not
read2
.
is_unmapped
and
resfrag1
is
not
None
and
resfrag2
is
not
None
:
if
not
read1
.
is_unmapped
and
not
read2
.
is_unmapped
and
resfrag1
is
not
None
and
resfrag2
is
not
None
:
# same restriction fragment
# same restriction fragment
if
resfrag1
==
resfrag2
:
if
resfrag1
==
resfrag2
:
...
@@ -501,9 +501,9 @@ if __name__ == "__main__":
...
@@ -501,9 +501,9 @@ if __name__ == "__main__":
minInsertSize
=
arg
minInsertSize
=
arg
elif
opt
in
(
"
-l
"
,
"
--longestInsertSize
"
):
elif
opt
in
(
"
-l
"
,
"
--longestInsertSize
"
):
maxInsertSize
=
arg
maxInsertSize
=
arg
elif
opt
in
(
"
-t
"
,
"
--shortestFragment
Size
"
):
elif
opt
in
(
"
-t
"
,
"
--shortestFragment
Length
"
):
minFragSize
=
arg
minFragSize
=
arg
elif
opt
in
(
"
-m
"
,
"
--longestFragment
Size
"
):
elif
opt
in
(
"
-m
"
,
"
--longestFragment
Length
"
):
maxFragSize
=
arg
maxFragSize
=
arg
elif
opt
in
(
"
-d
"
,
"
--minCisDist
"
):
elif
opt
in
(
"
-d
"
,
"
--minCisDist
"
):
minDist
=
arg
minDist
=
arg
...
@@ -613,6 +613,7 @@ if __name__ == "__main__":
...
@@ -613,6 +613,7 @@ if __name__ == "__main__":
r2_chrom
=
None
r2_chrom
=
None
if
r1_resfrag
is
not
None
or
r2_resfrag
is
not
None
:
if
r1_resfrag
is
not
None
or
r2_resfrag
is
not
None
:
interactionType
=
get_interaction_type
(
r1
,
r1_chrom
,
r1_resfrag
,
r2
,
r2_chrom
,
r2_resfrag
,
verbose
)
interactionType
=
get_interaction_type
(
r1
,
r1_chrom
,
r1_resfrag
,
r2
,
r2_chrom
,
r2_resfrag
,
verbose
)
dist
=
get_PE_fragment_size
(
r1
,
r2
,
r1_resfrag
,
r2_resfrag
,
interactionType
)
dist
=
get_PE_fragment_size
(
r1
,
r2
,
r1_resfrag
,
r2_resfrag
,
interactionType
)
cdist
=
get_cis_dist
(
r1
,
r2
)
cdist
=
get_cis_dist
(
r1
,
r2
)
...
@@ -724,10 +725,14 @@ if __name__ == "__main__":
...
@@ -724,10 +725,14 @@ if __name__ == "__main__":
if
or1_resfrag
is
not
None
:
if
or1_resfrag
is
not
None
:
or1_fragname
=
or1_resfrag
.
value
[
'
name
'
]
or1_fragname
=
or1_resfrag
.
value
[
'
name
'
]
else
:
or1_fragname
=
'
None
'
if
or2_resfrag
is
not
None
:
if
or2_resfrag
is
not
None
:
or2_fragname
=
or2_resfrag
.
value
[
'
name
'
]
or2_fragname
=
or2_resfrag
.
value
[
'
name
'
]
else
:
or2_fragname
=
'
None
'
cur_handler
.
write
(
cur_handler
.
write
(
or1
.
qname
+
"
\t
"
+
or1
.
qname
+
"
\t
"
+
or1_chrom
+
"
\t
"
+
or1_chrom
+
"
\t
"
+
...
...
This diff is collapsed.
Click to expand it.
conf/hicpro.config
+
1
−
0
View file @
977a62ad
...
@@ -38,5 +38,6 @@ params {
...
@@ -38,5 +38,6 @@ params {
saveReference
=
false
saveReference
=
false
saveAlignedIntermediates
=
false
saveAlignedIntermediates
=
false
saveInteractionBAM
=
false
}
}
This diff is collapsed.
Click to expand it.
main.nf
+
15
−
7
View file @
977a62ad
...
@@ -32,6 +32,8 @@ def helpMessage() {
...
@@ -32,6 +32,8 @@ def helpMessage() {
--fasta Path to Fasta reference
--fasta Path to Fasta reference
--chromosome_size Path to chromosome size file
--chromosome_size Path to chromosome size file
--restriction_fragments Path to restriction fragment file (bed)
--restriction_fragments Path to restriction fragment file (bed)
--saveReference Save reference genome to output folder. Default: False
--saveAlignedIntermediates Save intermediates alignment files. Default: False
Options:
Options:
--bwt2_opts_end2end Options for bowtie2 end-to-end mappinf (first mapping step). See hic.config for default.
--bwt2_opts_end2end Options for bowtie2 end-to-end mappinf (first mapping step). See hic.config for default.
...
@@ -43,8 +45,9 @@ def helpMessage() {
...
@@ -43,8 +45,9 @@ def helpMessage() {
--max_restriction_framgnet_size Maximum size of restriction fragmants to consider. Default: None
--max_restriction_framgnet_size Maximum size of restriction fragmants to consider. Default: None
--min_insert_size Minimum insert size of mapped reads to consider. Default: None
--min_insert_size Minimum insert size of mapped reads to consider. Default: None
--max_insert_size Maximum insert size of mapped reads to consider. Default: None
--max_insert_size Maximum insert size of mapped reads to consider. Default: None
--saveInteractionBAM Save BAM file with interaction tags (dangling-end, self-circle, etc.). Default: False
--dnase Run DNase Hi-C mode. All options related to restriction fragments are not considered. Default:
f
alse
--dnase Run DNase Hi-C mode. All options related to restriction fragments are not considered. Default:
F
alse
--min_cis_dist Minimum intra-chromosomal distance to consider. Default: None
--min_cis_dist Minimum intra-chromosomal distance to consider. Default: None
--rm_singleton Remove singleton reads. Default: true
--rm_singleton Remove singleton reads. Default: true
...
@@ -65,10 +68,10 @@ def helpMessage() {
...
@@ -65,10 +68,10 @@ def helpMessage() {
Step options:
Step options:
--skip_maps Skip generation of contact maps. Useful for capture-C. Default:
f
alse
--skip_maps Skip generation of contact maps. Useful for capture-C. Default:
F
alse
--skip_ice Skip ICE normalization. Default:
f
alse
--skip_ice Skip ICE normalization. Default:
F
alse
--skip_cool Skip generation of cool files. Default:
f
alse
--skip_cool Skip generation of cool files. Default:
F
alse
--skip_multiQC Skip MultiQC. Default:
f
alse
--skip_multiQC Skip MultiQC. Default:
F
alse
AWSBatch options:
AWSBatch options:
--awsqueue The AWSBatch JobQueue that needs to be set when running on AWSBatch
--awsqueue The AWSBatch JobQueue that needs to be set when running on AWSBatch
...
@@ -154,7 +157,7 @@ if ( params.splitFastq ){
...
@@ -154,7 +157,7 @@ if ( params.splitFastq ){
raw_reads_full = raw_reads.concat( raw_reads_2 )
raw_reads_full = raw_reads.concat( raw_reads_2 )
raw_reads = raw_reads_full.splitFastq( by: params.splitFastq , file: true)
raw_reads = raw_reads_full.splitFastq( by: params.splitFastq , file: true)
}else{
}else{
raw_reads = raw_reads.concat( raw_reads_2 )
raw_reads = raw_reads.concat( raw_reads_2 )
.dump(tag: "data")
}
}
...
@@ -599,6 +602,10 @@ if (!params.dnase){
...
@@ -599,6 +602,10 @@ if (!params.dnase){
output:
output:
set val(sample), file("*.validPairs") into valid_pairs
set val(sample), file("*.validPairs") into valid_pairs
set val(sample), file("*.validPairs") into valid_pairs_4cool
set val(sample), file("*.validPairs") into valid_pairs_4cool
set val(sample), file("*.DEPairs") into de_pairs
set val(sample), file("*.SCPairs") into sc_pairs
set val(sample), file("*.REPairs") into re_pairs
set val(sample), file("*.FiltPairs") into filt_pairs
set val(sample), file("*RSstat") into all_rsstat
set val(sample), file("*RSstat") into all_rsstat
script:
script:
...
@@ -612,9 +619,10 @@ if (!params.dnase){
...
@@ -612,9 +619,10 @@ if (!params.dnase){
if ("$params.max_insert_size".isInteger()) opts="${opts} -l ${params.max_insert_size}"
if ("$params.max_insert_size".isInteger()) opts="${opts} -l ${params.max_insert_size}"
if ("$params.min_restriction_fragment_size".isInteger()) opts="${opts} -t ${params.min_restriction_fragment_size}"
if ("$params.min_restriction_fragment_size".isInteger()) opts="${opts} -t ${params.min_restriction_fragment_size}"
if ("$params.max_restriction_fragment_size".isInteger()) opts="${opts} -m ${params.max_restriction_fragment_size}"
if ("$params.max_restriction_fragment_size".isInteger()) opts="${opts} -m ${params.max_restriction_fragment_size}"
if (params.saveInteractionBAM) opts="${opts} --sam"
"""
"""
mapped_2hic_fragments.py -f ${frag_file} -r ${pe_bam} ${opts}
mapped_2hic_fragments.py -f ${frag_file} -r ${pe_bam}
--all
${opts}
"""
"""
}
}
}
}
...
...
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