Skip to content

Commit

Permalink
fix import and name reference errors
Browse files Browse the repository at this point in the history
  • Loading branch information
weiju committed Aug 30, 2024
1 parent f99a291 commit 602d151
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions miner/coexpression.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
import logging
import json
import numpy as np
import sys

from miner import miner, util

Expand Down
2 changes: 1 addition & 1 deletion miner/miner.py
Original file line number Diff line number Diff line change
Expand Up @@ -1291,7 +1291,7 @@ def regulonExpansion(task):
reference_index = np.array(eigengenes.index).astype(str)
expanded_modules = {key:regulonModules[key] for key in regulonModules.keys()}
ct = -1
printProgressBar(0, maxStep, prefix='Progress:', suffix='Complete',
printProgressBar(0, len(genes), prefix='Progress:', suffix='Complete',
length=50)
genes = list(set(list(tfbsdbGenes.keys()))&set(expressionData.index))[start:stop]
for gene in genes:
Expand Down

0 comments on commit 602d151

Please sign in to comment.