Upload folder using huggingface_hub
Browse files
app.py
CHANGED
|
@@ -1460,7 +1460,7 @@ def protocol_configs_tab():
|
|
| 1460 |
dcc.Dropdown(
|
| 1461 |
id="pc-filter-inducer",
|
| 1462 |
options=[{"label": v, "value": v} for v in
|
| 1463 |
-
["IPTG", "Arabinose", "Other inducer"]],
|
| 1464 |
multi=True, placeholder="Any",
|
| 1465 |
style={"fontSize": "13px"},
|
| 1466 |
),
|
|
@@ -2878,7 +2878,7 @@ def _grp(field, label):
|
|
| 2878 |
if "yeast" in sl or "pichia" in sl: return "Yeast"
|
| 2879 |
return "Other E. coli"
|
| 2880 |
if field == "inducer":
|
| 2881 |
-
if "not mentioned" in sl: return "
|
| 2882 |
if "iptg" in sl: return "IPTG"
|
| 2883 |
if "arabinose" in sl: return "Arabinose"
|
| 2884 |
return "Other inducer"
|
|
|
|
| 1460 |
dcc.Dropdown(
|
| 1461 |
id="pc-filter-inducer",
|
| 1462 |
options=[{"label": v, "value": v} for v in
|
| 1463 |
+
["IPTG", "Not reported", "Arabinose", "Other inducer"]],
|
| 1464 |
multi=True, placeholder="Any",
|
| 1465 |
style={"fontSize": "13px"},
|
| 1466 |
),
|
|
|
|
| 2878 |
if "yeast" in sl or "pichia" in sl: return "Yeast"
|
| 2879 |
return "Other E. coli"
|
| 2880 |
if field == "inducer":
|
| 2881 |
+
if "not mentioned" in sl: return "Not reported"
|
| 2882 |
if "iptg" in sl: return "IPTG"
|
| 2883 |
if "arabinose" in sl: return "Arabinose"
|
| 2884 |
return "Other inducer"
|