Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dpark01 committed Apr 17, 2015
1 parent b308cfb commit f5b0a70
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tools/mosaik.py
Expand Up @@ -2,8 +2,8 @@
The MOSAIK aligner
'''

import logging, tools
import os, os.path, subprocess
import logging, os, os.path, subprocess
import tools, util.file

tool_version = '2.1.33'
url = 'https://mosaik-aligner.googlecode.com/files/MOSAIK-{ver}-{os}.tar'
Expand Down
2 changes: 1 addition & 1 deletion tools/novoalign.py
Expand Up @@ -175,7 +175,7 @@ def index_fasta(self, refFasta):
try:
mode = os.stat(outfname).st_mode & ~stat.S_IXUSR & ~stat.S_IXGRP & ~stat.S_IXOTH
os.chmod(outfname, mode)
except (IOError, OSError) as e:
except (IOError, OSError):
pass


Expand Down
2 changes: 1 addition & 1 deletion tools/vphaser2.py
Expand Up @@ -72,7 +72,7 @@ def _get_vphaser2_path() :
elif uname[0] == 'Linux' and uname[4].endswith('64') :
osName = 'linux64'
else :
log.debug('V-Phaser 2 not implemented for OS %s %s'
log.debug('V-Phaser 2 not implemented for OS %s %s',
uname[0], uname[4])
return ''
binariesPath = util.file.get_binaries_path()
Expand Down

0 comments on commit f5b0a70

Please sign in to comment.