Skip to content

Commit

Permalink
Changed Paths
Browse files Browse the repository at this point in the history
  • Loading branch information
basti committed Dec 4, 2018
1 parent 9a6c8a2 commit 49c356b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/Modules/Ensembl/ActivityCategorizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ def read_config(self, organism, wd):

c_dict = {}
path_to_config = os.path.join(wd, "../config/celltypes_"+organism+".json")
with open(path_to_config) as input:
data = json.loads(input.read())
with open(path_to_config) as input_file:
data = json.loads(input_file.read())
for x in data:
c_dict[x["type"]] = x["alias_ensembl"]
self.folderlist.extend(x["alias_ensembl"])
Expand Down

0 comments on commit 49c356b

Please sign in to comment.