Spaces:
Sleeping
Sleeping
fix syntax
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ for input_gene_id in input_gene_ids.split("\n"):
|
|
104 |
neighbors = []
|
105 |
for seed_gene_id in seed_gene_ids:
|
106 |
hits = top_coexp_hits[
|
107 |
-
(top_coexp_hits.gene_id_1 == seed_gene_id) & (top_coexp_hits.coexp_score > coexp_score_threshold)]
|
108 |
if len(hits.index) > max_per_gene:
|
109 |
hits = hits[0:max_per_gene]
|
110 |
neighbors.append(hits)
|
|
|
104 |
neighbors = []
|
105 |
for seed_gene_id in seed_gene_ids:
|
106 |
hits = top_coexp_hits[
|
107 |
+
(top_coexp_hits.gene_id_1 == seed_gene_id) & (top_coexp_hits.coexp_score > coexp_score_threshold)]
|
108 |
if len(hits.index) > max_per_gene:
|
109 |
hits = hits[0:max_per_gene]
|
110 |
neighbors.append(hits)
|