Skip to content

Commit aa78680

Browse files
committed
Fix output directory for prepare reference
1 parent ae9ea1f commit aa78680

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rnaseq_pipeline/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def program_args(self):
217217
return args
218218

219219
def run(self):
220-
os.makedirs(os.path.dirname(self.output().prefix), exist_ok=True)
220+
os.makedirs(self.output().prefix, exist_ok=True)
221221
return super().run()
222222

223223
def output(self):

0 commit comments

Comments
 (0)