|
| 1 | +import streamlit as st |
| 2 | +from streamlit_extras.app_logo import add_logo |
| 3 | +from st_pages import show_pages_from_config |
| 4 | +from streamlit_extras.badges import badge |
| 5 | + |
| 6 | +# Preload CSS file |
| 7 | +@st.cache_resource |
| 8 | +def load_css(): |
| 9 | + with open("style.css") as css: |
| 10 | + return css.read() |
| 11 | + |
| 12 | +st.set_page_config(page_title="µGrowthDB", page_icon="🔍", layout='wide') |
| 13 | + |
| 14 | +add_logo("figs/logo_sidebar3.png", height=100) |
| 15 | + |
| 16 | + |
| 17 | +st.markdown(f'<style>{load_css()}</style>', unsafe_allow_html=True) |
| 18 | + |
| 19 | + |
| 20 | + |
| 21 | +st.image('figs/logo.png') |
| 22 | +st.write('') |
| 23 | +st.write('') |
| 24 | +st.write('') |
| 25 | +st.write('') |
| 26 | + |
| 27 | + |
| 28 | +st.markdown("") |
| 29 | + |
| 30 | +st.subheader("**Welcome to µGrowthDB**") |
| 31 | +st.markdown( |
| 32 | + """ |
| 33 | + µGrowthDB is a relational database that provides a structure to store different types of microbial growth data. |
| 34 | + Our main objective is to serve as a comprehensive resource for researchers interested in studying the growth dynamics of microbial species. |
| 35 | + By providing access to growth projects and studies uploaded by other researchers.µ |
| 36 | + """) |
| 37 | + |
| 38 | +st.page_link("pages/Database_Search.py", label=":blue[**Search Growth Studies**]", help="Click on to start a search") |
| 39 | +st.markdown( |
| 40 | + """ |
| 41 | + Users can search for experimental data collected from microbial growth studies. The search can be filtered by different experimental conditions and characteristicas like |
| 42 | + Project name, Study name, microbial strains, metabolites, culture media and pH. |
| 43 | +
|
| 44 | + All the data at µGrowthDB is publically available for everyone. To further analyze and compare different datasets we offer the feature of downloading several datasets at once. |
| 45 | + """) |
| 46 | +st.page_link("pages/Upload_Data.py", label=":blue[**Upload your Microbial Growth Project and Studies**]", help="Click on to start a sharing") |
| 47 | +st.markdown( |
| 48 | + """ |
| 49 | + At µGrowthDB, we recognize the invaluable contributions of researchers in advancing our understanding of microbial dynamics. Sharing growth data publicly |
| 50 | + plays a crucial role in increasing scientific progress and collaboration within the research community. We allow reasearcher to upload their experimental data by following five steps |
| 51 | + that allow us to keep an adquate quality control over the data. |
| 52 | + """) |
| 53 | +st.page_link("pages/Visualization_Dashboard.py", label=":blue[**Visualize Growth Data:**]", help="Click on to plot data") |
| 54 | +st.markdown( |
| 55 | + """ |
| 56 | + Users can visualize all the different microbial growth experiments with its corresponding measured techniques in the database, this means plotting accurate growth curves accross different conditions. |
| 57 | + """) |
| 58 | +st.write('') |
| 59 | +st.write('') |
| 60 | + |
| 61 | +show_pages_from_config() |
0 commit comments