Mercurial > repos > iuc > yahs
comparison move_files.py @ 0:d87433f2a54d draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/yahs commit 92823b21835509dde34557b6922e1b9a39311069
author | iuc |
---|---|
date | Wed, 29 Jun 2022 13:06:23 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:d87433f2a54d |
---|---|
1 import os | |
2 import shutil | |
3 | |
4 files = os.listdir() | |
5 for file in files: | |
6 if "yahs_out" in file and "final" in file: | |
7 shutil.move(file, "final_outs/" + file) | |
8 elif "yahs_out_init" in file: | |
9 shutil.move(file, "initial_break/" + file) | |
10 elif "_break.agp" in file: | |
11 shutil.move(file, "agp_break/" + file) | |
12 elif "yahs_out" in file and ".agp" in file: | |
13 shutil.move(file, "agp_out/" + file) |