Skip to content

Commit

Permalink
Fixing os.path.join for python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
rafelafrance committed Apr 19, 2019
1 parent 371aa9b commit 00e67ed
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -32,3 +32,4 @@ junk*

build/
dist/
exon_stitching/
1 change: 0 additions & 1 deletion lib/core_atram.py
Expand Up @@ -14,7 +14,6 @@

def assemble(args):
"""Loop thru every blast/query pair and run an assembly for each one."""

with util.make_temp_dir(
where=args['temp_dir'],
prefix='atram_',
Expand Down
2 changes: 1 addition & 1 deletion lib/util.py
Expand Up @@ -40,7 +40,7 @@ def temp_dir_exists(temp_dir, debug_dir=None):
def update_temp_dir(temp_dir, args):
"""Handle the new temporary directory name."""
args['temp_root'] = args['temp_dir']
args['temp_dir'] = temp_dir
args['temp_dir'] = str(temp_dir)
os.environ['SQLITE_TMPDIR'] = temp_dir


Expand Down

0 comments on commit 00e67ed

Please sign in to comment.