Skip to content

Commit

Permalink
changed default param in draw_expansions_multigraph
Browse files Browse the repository at this point in the history
  • Loading branch information
msarrias committed Nov 9, 2024
1 parent 61fdc21 commit 723b5ce
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions exonize/exonize_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@ def draw_expansions_multigraph(
figure_path: Path = None,
figure_size: tuple[float, float] = (8.0, 8.0),
legend: bool = True,
connect_overlapping_nodes: bool = True,
color_tandem_pair_edges: bool = True,
connect_overlapping_nodes: bool = False,
color_tandem_pair_edges: bool = False,
full_expansion: bool = False,
tandem_edges_color: str = 'blue'
) -> None:
Expand Down Expand Up @@ -483,8 +483,8 @@ def draw_expansions_multigraph(
figure_size: tuple[float, float] = (8.0, 8.0),
figure_path: Path = None,
legend: bool = True,
color_tandem_pair_edges: bool = True,
connect_overlapping_nodes: bool = True,
color_tandem_pair_edges: bool = False,
connect_overlapping_nodes: bool = False,
full_expansion: bool = False,
tandem_edges_color: str = 'blue'
):
Expand Down

0 comments on commit 723b5ce

Please sign in to comment.