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
7ae73520
Commit
7ae73520
authored
3 years ago
by
nfontrod
Browse files
Options
Downloads
Patches
Plain Diff
src/find_interaction_cluster/clip_figures/clip_compo_launcher.py: add a parameter expression_file
parent
a824f6dc
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/find_interaction_cluster/clip_figures/clip_compo_launcher.py
+5
-2
5 additions, 2 deletions
...d_interaction_cluster/clip_figures/clip_compo_launcher.py
with
5 additions
and
2 deletions
src/find_interaction_cluster/clip_figures/clip_compo_launcher.py
+
5
−
2
View file @
7ae73520
...
...
@@ -19,7 +19,7 @@ import multiprocessing as mp
def
launcher
(
clip_result_folder
:
str
,
feature
:
str
,
threshold_feature
:
int
,
default_groups
:
int
,
cpnt_type
:
str
,
region
:
str
=
"
gene
"
,
ps
:
int
=
1
,
display_size
:
bool
=
False
,
ps
:
int
=
1
,
display_size
:
bool
=
False
,
expression_file
:
str
=
""
,
logging_level
:
str
=
"
DISABLE
"
)
->
None
:
"""
Create multiple composition figures from a result clip folder.
...
...
@@ -38,6 +38,9 @@ def launcher(clip_result_folder: str, feature: str,
:param ps: The number of processes to create (default 1)
:param display_size: True to display the size of the community.
\
False to display nothing. (default False)
:param expression_file: A file containing the expression values of
\
genes (default
''
). If this file is provided, then the weakly expressed
\
genes are filtered out from the analysis.
:param logging_level: The level of data to display (default
'
DISABLE
'
)
"""
clip_result_folder
=
Path
(
clip_result_folder
)
...
...
@@ -45,7 +48,7 @@ def launcher(clip_result_folder: str, feature: str,
raise
NotADirectoryError
(
f
"
Directory
{
clip_result_folder
}
don
'
t exist
"
)
create_multiple_figures
(
clip_result_folder
,
feature
,
threshold_feature
,
default_groups
,
cpnt_type
,
region
,
ps
,
display_size
,
logging_level
)
display_size
,
expression_file
,
logging_level
)
if
__name__
==
"
__main__
"
:
...
...
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