maom commited on
Commit
fe47503
·
verified ·
1 Parent(s): 31f4fb8

fix syntax

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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) and (top_coexp_hits.coexp_score > coexp_score_threshold)])
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