Skip to content

Commit

Permalink
Corrected a typo left in the tree-cache filename from testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lyndon Coghill committed Nov 29, 2013
1 parent 59f7153 commit 0eb0dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/graph-to-json.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def build_json(choice):
g = tg.load_taxonomy_graph('taxonomy/ott2.2/ott2.2.xml.gz')
print "OTT taxonomy Graph loaded successfully."
print "Loading ott-treecache file..."
datafile = open('trees/ott-treecache-test.txt', 'r') #read in the treecache file
datafile = open('trees/ott-treecache.txt', 'r') #read in the treecache file
print "Loaded."

elif choice == "2":
Expand All @@ -36,7 +36,7 @@ def build_json(choice):
g = tg.load_taxonomy_graph('taxonomy/ncbi/ncbi.xml.gz')
print "NCBI taxonomy Graph loaded successfully."
print "Loading ncbi-treecache file..."
datafile = open('trees/ncbi-treecache-test.txt', 'r') #read in the treecache file
datafile = open('trees/ncbi-treecache.txt', 'r') #read in the treecache file
print "Loaded."

data = []
Expand Down

0 comments on commit 0eb0dd7

Please sign in to comment.