Skip to content

Commit

Permalink
fixed json_length import
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagofilipe12 committed Dec 27, 2017
1 parent f47bf0c commit 536a13f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PlasmidUNCover.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,8 +739,8 @@ def main():
indexes = True
# import json_length from json file
script_dir = os.path.dirname(__file__)
rel_path = "json/reads_sample_result_length.json"
length_import = open(os.path.join(script_dir, rel_path))
rel_path = "/json/reads_sample_result_length.json"
length_import = open(script_dir + rel_path)
plasmid_length = json.load(length_import)
count_entries = len(plasmid_length)

Expand Down

0 comments on commit 536a13f

Please sign in to comment.