Skip to content

Commit

Permalink
Changed config locations
Browse files Browse the repository at this point in the history
  • Loading branch information
basti committed Dec 4, 2018
1 parent c29c46d commit 0b1c5c7
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/Modules/Ensembl/ActivityCategorizer.py
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ def get_categorization(self):
def read_config(self, organism):

c_dict = {}
path_to_config = os.path.join("./config/celltypes_"+organism+".json")
path_to_config = os.path.join("../config/celltypes_"+organism+".json")
with open(path_to_config) as input:
data = json.loads(input.read())
for x in data:
2 changes: 1 addition & 1 deletion bin/Modules/ucsc/ucsc.py
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ def get_organism_id(org):

@staticmethod
def get_activity_categories(organism):
path_to_config = os.path.join("./config/celltypes_" + organism + ".json")
path_to_config = os.path.join("../config/celltypes_" + organism + ".json")
categories = {}
with open(path_to_config) as input_file:
data = json.loads(input_file.read())

0 comments on commit 0b1c5c7

Please sign in to comment.