changeset 75:37ed984d934e draft

Uploaded
author greg
date Thu, 05 Oct 2017 14:03:22 -0400
parents 9da5dc4b99cc
children ce5b201b7782
files assembly_post_processor.py
diffstat 1 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/assembly_post_processor.py	Thu Oct 05 13:54:37 2017 -0400
+++ b/assembly_post_processor.py	Thu Oct 05 14:03:22 2017 -0400
@@ -65,4 +65,7 @@
 if args.move_stats is not None:
     src_dir = os.path.join(OUTPUT_DIR, 'targeted_gene_families')
     dst_dir = os.path.join(OUTPUT_DIR, 'targeted_gene_families_statistics')
-    shutil.move(os.path.join(src_dir, '*.stats'), dst_dir)
\ No newline at end of file
+    try:
+        shutil.move(os.path.join(src_dir, '*.stats'), dst_dir)
+    except:
+        pass
\ No newline at end of file