Update app.py
#1
by jrapala00 - opened
app.py
CHANGED
|
@@ -60,14 +60,14 @@ with col1:
|
|
| 60 |
feature_name_1 = st.text_input(
|
| 61 |
label = "Feature Name 1",
|
| 62 |
value = f"{feature_name_1}",
|
| 63 |
-
max_chars =
|
| 64 |
help = "B9J08 Locus Tag e.g. B9J08_000003")
|
| 65 |
|
| 66 |
with col2:
|
| 67 |
feature_name_2 = st.text_input(
|
| 68 |
label = "Feature Name 2",
|
| 69 |
value = f"{feature_name_2}",
|
| 70 |
-
max_chars =
|
| 71 |
help = "B9J08 New Locus Tag e.g. B9J08_000004")
|
| 72 |
|
| 73 |
# check the user input
|
|
|
|
| 60 |
feature_name_1 = st.text_input(
|
| 61 |
label = "Feature Name 1",
|
| 62 |
value = f"{feature_name_1}",
|
| 63 |
+
max_chars = 12,
|
| 64 |
help = "B9J08 Locus Tag e.g. B9J08_000003")
|
| 65 |
|
| 66 |
with col2:
|
| 67 |
feature_name_2 = st.text_input(
|
| 68 |
label = "Feature Name 2",
|
| 69 |
value = f"{feature_name_2}",
|
| 70 |
+
max_chars = 12,
|
| 71 |
help = "B9J08 New Locus Tag e.g. B9J08_000004")
|
| 72 |
|
| 73 |
# check the user input
|