Skip to content

Commit

Permalink
Merge pull request #313 from Proteobench/show_version_in_UI
Browse files Browse the repository at this point in the history
📝 Add current proteobench version to landing page of UI
  • Loading branch information
mlocardpaulet committed Jun 7, 2024
2 parents 337d2e7 + 7c8bd83 commit 3ca2d02
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
10 changes: 7 additions & 3 deletions webinterface/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
import streamlit as st
from st_pages import show_pages_from_config

import proteobench


class StreamlitPage(ABC):
"""Base class for Proteobench online Streamlit web server."""
Expand All @@ -31,16 +33,18 @@ def _preface(self):
**👈 Select a page from the sidebar to get started!**<br>
**📖 Learn more about Proteobench on
[proteobench.readthedocs.io](https://proteobench.readthedocs.io/en/latest/)**<br>
[proteobench.readthedocs.io](https://proteobench.readthedocs.io/)**<br>
**💻 Find the source code on
[github.com](https://github.com/Proteobench/Proteobench)**<br>
**ProteoBench is a project initiated and maintained by [EuBIC-MS](https://eubic-ms.org/). Please [join us](https://eubic-ms.org/become-a-member/) and contribute!**<br>
**If you still have questions, you can email us [here](mailto:proteobench@eubic-ms.org?subject=ProteoBench_query)**
""",
Using proteobench version: {}
""".format(
proteobench.__version__
),
unsafe_allow_html=True,
)
st.image("logos/logo_participants/logos_all.png")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ ProteoBench plots these three metrics to visualize workflow outputs
from different tools, with different versions, and/or different
sets of parameters for the search and quantification.
The full description of the pre-processing steps and metrics
calculation is available [here](https://proteobench.readthedocs.io/en/latest/modules/3-DDA-Quantification-ion-level/).
calculation is available [here](https://proteobench.readthedocs.io/en/stable/modules/3-DDA-Quantification-ion-level/).
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ It contains the following columns:
- species
- expected ratio for the given species
- epsilon = difference of the observed and expected log2-transformed fold change

0 comments on commit 3ca2d02

Please sign in to comment.