# HG changeset patch # User greg # Date 1507226602 14400 # Node ID 37ed984d934e463d71bf30b558e875c20bc71ea7 # Parent 9da5dc4b99ccb943c27db8cb3040401a0a83a50d Uploaded diff -r 9da5dc4b99cc -r 37ed984d934e assembly_post_processor.py --- 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