Mercurial > repos > gga > apollo_feat_from_gff3
view list_organisms.py @ 17:250745643de2 draft default tip
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit 12282c16658b37858f49944796fd95515ef0fc0b
author | gga |
---|---|
date | Wed, 11 Jan 2023 11:47:48 +0000 |
parents | 5d1cf95ade8a |
children |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import argparse import json from apollo import accessible_organisms from arrow.apollo import get_apollo_instance from webapollo import UserObj, handle_credentials if __name__ == '__main__': parser = argparse.ArgumentParser(description='List all organisms available in an Apollo instance') parser.add_argument('email', help='User Email') args = parser.parse_args() wa = get_apollo_instance() gx_user = UserObj(**wa.users._assert_or_create_user(args.email)) handle_credentials(gx_user) all_orgs = wa.organisms.get_organisms() orgs = accessible_organisms(gx_user, all_orgs) print(json.dumps(orgs, indent=2))