aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2020-08-19 12:20:35 -0700
committerNicholas Noll <nbnoll@eml.cc>2020-08-19 12:20:35 -0700
commit3f29dfc9a170bd5e78e8fa77c52a6f0450b00c63 (patch)
treef63f0a5b84a49c3bef23cd052179d5fb0d4582e7
parent8f8ce839b3edebd591e83bad8628302e995ab2e2 (diff)
fix: typo in function call
-rwxr-xr-xscripts/filter_plasmids.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/filter_plasmids.py b/scripts/filter_plasmids.py
index 71aa23f..81a902d 100755
--- a/scripts/filter_plasmids.py
+++ b/scripts/filter_plasmids.py
@@ -28,7 +28,7 @@ def main(args):
out_dir = f"data/{arg}-plasmid/assemblies"
if not os.path.exists(out_dir):
- os.mkdirs(out_dir)
+ os.makedirs(out_dir)
for path in glob(f"{in_dir}/*.f?a*"):
with open(path, 'rt') as fd, open(f"{out_dir}/{os.path.basename(path).replace('.gz', '')}", 'w') as wtr: