Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -70,6 +70,16 @@ def demo_virology_callback():
|
|
70 |
st.session_state["abstract"] = paper_abstract
|
71 |
|
72 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
def clear_callback():
|
74 |
"""
|
75 |
Clear input fields
|
@@ -79,12 +89,14 @@ def clear_callback():
|
|
79 |
st.session_state["output"] = ""
|
80 |
|
81 |
|
82 |
-
col1, col2, col3 = st.columns([1, 1, 1])
|
83 |
with col1:
|
84 |
st.button("Demo: immunology", on_click=demo_immunology_callback)
|
85 |
with col2:
|
86 |
st.button("Demo: virology", on_click=demo_virology_callback)
|
87 |
-
with
|
|
|
|
|
88 |
st.button("Clear fields", on_click=clear_callback)
|
89 |
|
90 |
## Input fields
|
|
|
70 |
st.session_state["abstract"] = paper_abstract
|
71 |
|
72 |
|
73 |
+
def demo_microbiology_callback():
|
74 |
+
"""
|
75 |
+
Use https://doi.org/10.1016/j.cell.2023.01.002 for demo
|
76 |
+
"""
|
77 |
+
paper_title = "Bacterial droplet-based single-cell RNA-seq reveals antibiotic-associated heterogeneous cellular states"
|
78 |
+
paper_abstract = "We introduce BacDrop, a highly scalable technology for bacterial single-cell RNA sequencing that has overcome many challenges hindering the development of scRNA-seq in bacteria. BacDrop can be applied to thousands to millions of cells from both gram-negative and gram-positive species. It features universal ribosomal RNA depletion and combinatorial barcodes that enable multiplexing and massively parallel sequencing. We applied BacDrop to study Klebsiella pneumoniae clinical isolates and to elucidate their heterogeneous responses to antibiotic stress. In an unperturbed population presumed to be homogeneous, we found within-population heterogeneity largely driven by the expression of mobile genetic elements that promote the evolution of antibiotic resistance. Under antibiotic perturbation, BacDrop revealed transcriptionally distinct subpopulations associated with different phenotypic outcomes including antibiotic persistence. BacDrop thus can capture cellular states that cannot be detected by bulk RNA-seq, which will unlock new microbiological insights into bacterial responses to perturbations and larger bacterial communities such as the microbiome."
|
79 |
+
st.session_state["title"] = paper_title
|
80 |
+
st.session_state["abstract"] = paper_abstract
|
81 |
+
|
82 |
+
|
83 |
def clear_callback():
|
84 |
"""
|
85 |
Clear input fields
|
|
|
89 |
st.session_state["output"] = ""
|
90 |
|
91 |
|
92 |
+
col1, col2, col3, col4 = st.columns([1, 1, 1, 1])
|
93 |
with col1:
|
94 |
st.button("Demo: immunology", on_click=demo_immunology_callback)
|
95 |
with col2:
|
96 |
st.button("Demo: virology", on_click=demo_virology_callback)
|
97 |
+
with col2:
|
98 |
+
st.button("Demo: microbiology", on_click=demo_microbiology_callback)
|
99 |
+
with col4:
|
100 |
st.button("Clear fields", on_click=clear_callback)
|
101 |
|
102 |
## Input fields
|