Skip to content

Commit

Permalink
Added start pf FlowSOMmary
Browse files Browse the repository at this point in the history
  • Loading branch information
artuurC committed Sep 8, 2023
1 parent 41ef809 commit 5f9bf68
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 1 addition & 10 deletions src/FlowSOM/plotting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,2 @@
from ._plot_helper_functions import *
from .plot_functions import (
plot_2D_scatters,
plot_labels,
plot_marker,
plot_numbers,
plot_pies,
plot_stars,
plot_variable,
FlowSOMmary,
)
from .plot_functions import *
11 changes: 11 additions & 0 deletions src/FlowSOM/plotting/plot_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,3 +380,14 @@ def plot_pies(
plt.title(title)
plt.axis("off")
return fig


def FlowSOMmary(fsom, plot_file="./FlowSOMmary.pdf"):
"""Makes a visual FlowSOMmary of a FlowSOM object
:param fsom: A FlowSOM object
:type fsom: FlowSOM
:param plot_file: File name of the plot
:type plot_file: str
"""
pass

0 comments on commit 5f9bf68

Please sign in to comment.