comparison assembly_post_processor.py @ 75:37ed984d934e draft

Uploaded
author greg
date Thu, 05 Oct 2017 14:03:22 -0400
parents 9da5dc4b99cc
children 2849bcb0b7ed
comparison
equal deleted inserted replaced
74:9da5dc4b99cc 75:37ed984d934e
63 shutil.move(os.path.join(OUTPUT_DIR, 'transcripts.cleaned.pep'), args.output_cleaned_pep) 63 shutil.move(os.path.join(OUTPUT_DIR, 'transcripts.cleaned.pep'), args.output_cleaned_pep)
64 shutil.move(os.path.join(OUTPUT_DIR, 'transcripts.pep'), args.output_pep) 64 shutil.move(os.path.join(OUTPUT_DIR, 'transcripts.pep'), args.output_pep)
65 if args.move_stats is not None: 65 if args.move_stats is not None:
66 src_dir = os.path.join(OUTPUT_DIR, 'targeted_gene_families') 66 src_dir = os.path.join(OUTPUT_DIR, 'targeted_gene_families')
67 dst_dir = os.path.join(OUTPUT_DIR, 'targeted_gene_families_statistics') 67 dst_dir = os.path.join(OUTPUT_DIR, 'targeted_gene_families_statistics')
68 shutil.move(os.path.join(src_dir, '*.stats'), dst_dir) 68 try:
69 shutil.move(os.path.join(src_dir, '*.stats'), dst_dir)
70 except:
71 pass