Skip to content

Commit

Permalink
changing dot size in plot depending if new submission #75
Browse files Browse the repository at this point in the history
  • Loading branch information
wolski committed Sep 25, 2023
1 parent fa0e956 commit 695870f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion webinterface/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _preface(self):
unsafe_allow_html=True,
)

@abstractmethod
@abstractmethod
def _main_page(self):
raise NotImplementedError()

Expand Down
6 changes: 2 additions & 4 deletions webinterface/pages/DDA_Quant.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,7 @@

from proteobench.modules.dda_quant.module import Module
from proteobench.modules.dda_quant.parse_settings import (
DDA_QUANT_RESULTS_PATH,
INPUT_FORMATS,
LOCAL_DEVELOPMENT,
)
DDA_QUANT_RESULTS_PATH, INPUT_FORMATS, LOCAL_DEVELOPMENT)
from proteobench.modules.dda_quant.plot import PlotDataPoint

try:
Expand Down Expand Up @@ -222,6 +219,7 @@ def generate_results(
# show metadata
# st.text(all_datapoints.head(100))


if recalculate:
fig2 = PlotDataPoint().plot_metric(all_datapoints)
else:
Expand Down

0 comments on commit 695870f

Please sign in to comment.