Spaces:
Sleeping
Sleeping
fix path for datasets
Browse files
app.py
CHANGED
@@ -21,16 +21,16 @@ novel proteins involved in DNA damage repair
|
|
21 |
Put in the ``CNAG_#####`` gene_id for two genes.
|
22 |
""")
|
23 |
|
|
|
|
|
|
|
|
|
|
|
24 |
estimated_expression = datasets.load_dataset(
|
25 |
path = "maomlab/CryptoCEN",
|
26 |
data_files = {"estimated_expression": "estimated_expression.tsv"})
|
27 |
estimated_expression = estimated_expression["estimated_expression"].to_pandas()
|
28 |
|
29 |
-
estimated_expression_meta = datasets.load_dataset(
|
30 |
-
path = "maomlab/CryptoCEN/Data",
|
31 |
-
data_files = {"estimated_expression_meta": "estimated_expression_meta.tsv"})
|
32 |
-
estimated_expression_meta = estimated_expression_meta["estimated_expression_meta"].to_pandas()
|
33 |
-
|
34 |
col1, col2, col3 = st.columns(spec = [0.3, 0.2, 0.5])
|
35 |
with col1:
|
36 |
gene_id_1 = st.text_input(
|
|
|
21 |
Put in the ``CNAG_#####`` gene_id for two genes.
|
22 |
""")
|
23 |
|
24 |
+
estimated_expression_meta = datasets.load_dataset(
|
25 |
+
path = "maomlab/CryptoCEN",
|
26 |
+
data_files = {"estimated_expression_meta": "Data/estimated_expression_meta.tsv"})
|
27 |
+
estimated_expression_meta = estimated_expression_meta["estimated_expression_meta"].to_pandas()
|
28 |
+
|
29 |
estimated_expression = datasets.load_dataset(
|
30 |
path = "maomlab/CryptoCEN",
|
31 |
data_files = {"estimated_expression": "estimated_expression.tsv"})
|
32 |
estimated_expression = estimated_expression["estimated_expression"].to_pandas()
|
33 |
|
|
|
|
|
|
|
|
|
|
|
34 |
col1, col2, col3 = st.columns(spec = [0.3, 0.2, 0.5])
|
35 |
with col1:
|
36 |
gene_id_1 = st.text_input(
|