Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
ChIA-PET_network
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
Model registry
Operate
Environments
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
ReGArDS
ChIA-PET_network
Commits
d2eccc07
Commit
d2eccc07
authored
4 years ago
by
nfontrod
Browse files
Options
Downloads
Patches
Plain Diff
src/nt_composition/config.py: modifications of function to handle global_weight parameters
parent
71530c2c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/nt_composition/config.py
+24
-7
24 additions, 7 deletions
src/nt_composition/config.py
with
24 additions
and
7 deletions
src/nt_composition/config.py
+
24
−
7
View file @
d2eccc07
...
...
@@ -10,25 +10,37 @@ file that will be produced by this module.
from
..db_utils.config
import
Config
def
get_weight_folder
(
weight
:
int
):
def
get_weight_folder
(
weight
:
int
,
global_weight
:
int
):
"""
Get the weight folder.
:param weight: The weight of interaction to consider
:param global_weight: The global weight to consider. if
\
the global weight is equal to 0 then then density figure are calculated
\
by project, else all projet are merge together and the interaction
\
seen in `global_weight` project are taken into account
:return: The folder that will contains the interaction with a weight
\
greater or equal to `weigh` in ChIA-PET projects
"""
weight_folder
=
ConfigNt
.
density_folder
/
f
"
weight:
{
weight
}
"
if
global_weight
==
0
:
weight_folder
=
ConfigNt
.
density_folder
/
f
"
project_weight:
{
weight
}
"
else
:
weight_folder
=
ConfigNt
.
density_folder
/
\
f
"
weight:
{
weight
}
-global_weight:
{
global_weight
}
"
weight_folder
.
mkdir
(
parents
=
True
,
exist_ok
=
True
)
return
weight_folder
def
get_density_file
(
weight
:
int
,
project
:
str
,
ft_type
:
str
,
f
t
:
str
,
fig
:
bool
=
False
):
def
get_density_file
(
weight
:
int
,
global_weight
:
int
,
projec
t
:
str
,
ft_type
:
str
,
ft
:
str
,
fig
:
bool
=
False
):
"""
Get the filename that will contain the density data or figure.
:param weight: The weight of interaction to consider
:param global_weight: The global weight to consider. if
\
the global weight is equal to 0 then then density figure are calculated
\
by project, else all projet are merge together and the interaction
\
seen in `global_weight` project are taken into account
:param project: A project name
:param ft_type: A feature type
:param ft: A feature
...
...
@@ -39,16 +51,21 @@ def get_density_file(weight: int, project: str, ft_type: str, ft: str,
ext
=
"
pdf
"
else
:
ext
=
"
txt
"
res_folder
=
get_weight_folder
(
weight
)
/
project
res_folder
=
get_weight_folder
(
weight
,
global_weight
)
/
project
res_folder
.
mkdir
(
exist_ok
=
True
,
parents
=
True
)
return
res_folder
/
f
"
{
project
}
_
{
ft_type
}
_
{
ft
}
_density.
{
ext
}
"
def
get_density_recap
(
weight
:
int
,
ft_type
:
str
,
ft
:
str
,
fig
:
bool
=
False
):
def
get_density_recap
(
weight
:
int
,
global_weight
:
int
,
ft_type
:
str
,
ft
:
str
,
fig
:
bool
=
False
):
"""
Get the density correlation recap file.
:param weight: The weight of interaction to consider
:param global_weight: The global weight to consider. if
\
the global weight is equal to 0 then then density figure are calculated
\
by project, else all projet are merge together and the interaction
\
seen in `global_weight` project are taken into account
:param ft_type: A feature type
:param ft: A feature
:return:
...
...
@@ -57,7 +74,7 @@ def get_density_recap(weight: int, ft_type: str, ft: str, fig: bool = False):
ext
=
"
pdf
"
else
:
ext
=
"
txt
"
outfolder
=
get_weight_folder
(
weight
)
outfolder
=
get_weight_folder
(
weight
,
global_weight
)
outfolder
.
mkdir
(
exist_ok
=
True
,
parents
=
True
)
return
outfolder
/
f
"
{
ft_type
}
_
{
ft
}
_density_recap.
{
ext
}
"
...
...
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