Skip to content

Commit

Permalink
both o folders under 700
Browse files Browse the repository at this point in the history
  • Loading branch information
WardDeb committed Jul 22, 2024
1 parent 0661ee7 commit 1ad765c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BRB/PushButton.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def createPath(config, group, project, organism, libraryType, tuples):
os.makedirs(baseDir, mode=0o700, exist_ok=True)

oDir = os.path.join(baseDir, "{}_{}".format(BRB.misc.pacifier(libraryType), organism.split(' ')[0].lower()))
os.makedirs(oDir, exist_ok=True)
os.makedirs(oDir, mode=0o700, exist_ok=True)
return oDir


Expand Down

0 comments on commit 1ad765c

Please sign in to comment.