Mercurial > repos > iuc > meningotype
comparison update_db.py @ 0:2d21809749f2 draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/meningotype commit b4e0bbb9a2a23cbac9137a96d59bc1775c23c8a5
| author | iuc |
|---|---|
| date | Tue, 13 Jun 2023 11:04:13 +0000 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:2d21809749f2 |
|---|---|
| 1 #!/usr/bin/env python3 | |
| 2 | |
| 3 import pathlib | |
| 4 import shutil | |
| 5 import subprocess | |
| 6 | |
| 7 import meningotype | |
| 8 | |
| 9 if __name__ == '__main__': | |
| 10 db_path = 'db' | |
| 11 original_db_path = pathlib.Path(meningotype.__file__).parent / 'db' | |
| 12 shutil.copytree(original_db_path, db_path) | |
| 13 cmd = ["meningotype", "--updatedb", "--db", db_path] | |
| 14 subprocess.run(cmd) |
