Skip to content

Commit

Permalink
new parkour organisms break folder creation
Browse files Browse the repository at this point in the history
  • Loading branch information
WardDeb committed Jul 11, 2024
1 parent ab34336 commit 55f4945
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 @@ -22,7 +22,7 @@ def createPath(config, group, project, organism, libraryType, tuples):
BRB.misc.pacifier(project))
os.makedirs(baseDir, mode=0o750, exist_ok=True)

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

Expand Down

0 comments on commit 55f4945

Please sign in to comment.