Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions quanttb/scripts/quanttb.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ def makeoutput(qtobj):

qtobj.temp = qtobj.outdirr + "/temp"
try:
os.mkdirs(qtobj.temp)
os.makedirs(qtobj.temp)
except OSError as e:
if e.errno == errno.EEXIST and os.path.isdir(qtobj.temp):
pass
else:
raise
else:
raise

def getvcfs(fqlist, qtobj):
if which('samtools') is None or which('bwa') is None:
Expand Down