diff --git a/AMR-KG_Database.py b/AMR-KG_Database.py index d63c2fe..77fd1b6 100644 --- a/AMR-KG_Database.py +++ b/AMR-KG_Database.py @@ -10,6 +10,25 @@ initial_sidebar_state="auto", ) +# Customize sidebar +markdown = """ +**Info**: This is AMR-KG repository and the broad-spectrum prediction models trained on the datasets. +This work was done under the IMI project COMBINE. + +**Developers**: +* [Yojana Gadiya](https://orcid.org/0000-0002-7683-0452) +* [Andrea Zaliani](https://orcid.org/0000-0002-1740-8390) +* [Philip Gribbon](https://orcid.org/0000-0001-7655-2459) + +**External links**: +* [GitHub](https://github.com/IMI-COMBINE/broad_spectrum_prediction) +* [Website](https://www.itmp.fraunhofer.de/) +""" + +st.sidebar.title("About") +st.sidebar.markdown(markdown) +st.sidebar.image("data/COMBINE_logo.jpg") + st.markdown( "

AMR-KG Database

", unsafe_allow_html=True, @@ -29,6 +48,10 @@ color: #1e85bc; } + sidebar .sidebar-content { + background-color: #111 !important; + } + [data-testid="column"]:nth-child(1){background-color: #78bc1e;} [data-testid="column"]:nth-child(2){background-color: #78bc1e;} [data-testid="column"]:nth-child(3){background-color: #78bc1e;} @@ -183,7 +206,5 @@ def convert_df(df): ) # Publucation note -# with st.expander("Check out our publication for more deatils "): -# st.write( -# """""" -# ) +with st.expander("Check out our publication for more deatils "): + st.write("""Manuscript in preparation. Please check back soon for more details.""") diff --git a/data/COMBINE_logo.jpg b/data/COMBINE_logo.jpg new file mode 100644 index 0000000..4abac9f Binary files /dev/null and b/data/COMBINE_logo.jpg differ