Spaces:
Sleeping
Sleeping
fix syntax
Browse files
app.py
CHANGED
@@ -63,7 +63,7 @@ neighbors = []
|
|
63 |
for seed_gene_id in seed_gene_ids:
|
64 |
neighbors.append(
|
65 |
top_coexp_hits[
|
66 |
-
(top_coexp_hits.gene_id_1 == seed_gene_id)
|
67 |
|
68 |
neighbors = pd.concat(neighbors)
|
69 |
|
|
|
63 |
for seed_gene_id in seed_gene_ids:
|
64 |
neighbors.append(
|
65 |
top_coexp_hits[
|
66 |
+
(top_coexp_hits.gene_id_1 == seed_gene_id) & (top_coexp_hits.coexp_score > coexp_score_threshold)])
|
67 |
|
68 |
neighbors = pd.concat(neighbors)
|
69 |
|