Skip to content
Snippets Groups Projects
Commit ed782af5 authored by nfontrod's avatar nfontrod
Browse files

src/find_interaction_cluster/__main__.py: modification of main_function by...

src/find_interaction_cluster/__main__.py: modification of main_function by adding the new parameter html_fig
parent d282c5a6
No related branches found
No related tags found
No related merge requests found
......@@ -18,6 +18,7 @@ def launcher(weight: List[int] = (1),
global_weight: List[int] = (0),
same_gene: bool = True,
ps: int = ConfigGraph.cpu,
html_fig: bool = False,
logging_level: str = "DISABLE"):
"""
Script used to find communities inside exon co-localized within a project
......@@ -30,9 +31,10 @@ def launcher(weight: List[int] = (1),
:param project: The name of the project of interest (default GSM1517081)
:param same_gene: Say if we consider as co-localised, exons within the \
same gene (True) or not (False) (default False)
:param html_fig: True to display the html figure (default False).
:param logging_level: The level of data to display (default 'DISABLE')
"""
multiple_community_launcher(ps, weight, global_weight, same_gene,
multiple_community_launcher(ps, weight, global_weight, same_gene, html_fig,
logging_level)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment