Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📝 Add current proteobench version to landing page of UI #313

Merged
merged 3 commits into from
Jun 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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

Loading