Skip to content

Commit 18afd11

Browse files
committed
add interactive plot
1 parent c9ed0d8 commit 18afd11

5 files changed

Lines changed: 436 additions & 2 deletions

File tree

pyenzyme/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from .fetcher import * # noqa: F403
88
from .composer import compose
99
from .suite import EnzymeMLSuite
10-
from .plotting import plot
10+
from .plotting import plot, plot_interactive
1111

1212
# Input functions
1313
from_csv = EnzymeMLHandler.from_csv

pyenzyme/plotting/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
from .static import plot
2+
from .interactive import plot_interactive
23

3-
__all__ = ["plot"]
4+
__all__ = ["plot", "plot_interactive"]

0 commit comments

Comments
 (0)