minor changes
Browse files
app.py
CHANGED
|
@@ -415,7 +415,7 @@ if 'density_range' not in st.session_state:
|
|
| 415 |
|
| 416 |
if 'pp_ranges' not in st.session_state:
|
| 417 |
st.session_state.pp_ranges = {
|
| 418 |
-
name: {'min': 0.0, 'max': 10.0, 'step':
|
| 419 |
for name in PRINT_PARAM_NAMES
|
| 420 |
}
|
| 421 |
|
|
@@ -480,7 +480,7 @@ for i, row in enumerate(st.session_state.bio_rows):
|
|
| 480 |
st.markdown("---")
|
| 481 |
|
| 482 |
# βββ Cell Line & Density Section ββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 483 |
-
st.subheader("Cell Line & Density")
|
| 484 |
col1, col2, col3, col4 = st.columns([2,1,1,1])
|
| 485 |
cell_line = col1.selectbox("Cell Line", CELL_LINE_OPTIONS)
|
| 486 |
|
|
|
|
| 415 |
|
| 416 |
if 'pp_ranges' not in st.session_state:
|
| 417 |
st.session_state.pp_ranges = {
|
| 418 |
+
name: {'min': 0.0, 'max': 10.0, 'step': 1.0}
|
| 419 |
for name in PRINT_PARAM_NAMES
|
| 420 |
}
|
| 421 |
|
|
|
|
| 480 |
st.markdown("---")
|
| 481 |
|
| 482 |
# βββ Cell Line & Density Section ββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 483 |
+
st.subheader("Cell Line & Density (10^6 cells/ml)")
|
| 484 |
col1, col2, col3, col4 = st.columns([2,1,1,1])
|
| 485 |
cell_line = col1.selectbox("Cell Line", CELL_LINE_OPTIONS)
|
| 486 |
|