Spaces:
Running
Running
debug
Browse files
app.py
CHANGED
@@ -143,6 +143,8 @@ node_info = pd.DataFrame({
|
|
143 |
"gene_product": gene_products,
|
144 |
"description": description})
|
145 |
|
|
|
|
|
146 |
neighbors = neighbors.merge(
|
147 |
right = node_info,
|
148 |
left_on = "gene_id_1",
|
@@ -154,6 +156,7 @@ neighbors = neighbors.merge(
|
|
154 |
right_on = "gene_id",
|
155 |
suffixes = ("_a", "_b"))
|
156 |
|
|
|
157 |
################################
|
158 |
# Use NetworkX to layout graph #
|
159 |
################################
|
|
|
143 |
"gene_product": gene_products,
|
144 |
"description": description})
|
145 |
|
146 |
+
st.write(node_info)
|
147 |
+
|
148 |
neighbors = neighbors.merge(
|
149 |
right = node_info,
|
150 |
left_on = "gene_id_1",
|
|
|
156 |
right_on = "gene_id",
|
157 |
suffixes = ("_a", "_b"))
|
158 |
|
159 |
+
|
160 |
################################
|
161 |
# Use NetworkX to layout graph #
|
162 |
################################
|