Mercurial > repos > iuc > ncbi_eutils_egquery
view esummary.py @ 2:08412cd072d0 draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/ncbi_entrez_eutils commit db33413a06c275efd4cc8e771c37facf543a2cfa"
author | iuc |
---|---|
date | Wed, 11 Mar 2020 04:02:33 -0400 |
parents | 28f69754ddc5 |
children | d1789b4821fc |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import argparse import eutils if __name__ == '__main__': parser = argparse.ArgumentParser(description='ESummary', epilog='') parser.add_argument('db', help='Database to use') parser.add_argument('--id_list', help='list of ids') parser.add_argument('--id', help='Comma separated individual IDs') parser.add_argument('--history_file', help='Filter existing history') parser.add_argument('--user_email', help="User email") parser.add_argument('--admin_email', help="Admin email") args = parser.parse_args() c = eutils.Client(history_file=args.history_file, user_email=args.user_email, admin_email=args.admin_email) merged_ids = c.parse_ids(args.id_list, args.id, args.history_file) payload = { 'db': args.db, } if args.history_file is not None: payload.update(c.get_history()) else: payload['id'] = ','.join(merged_ids) print(c.summary(**payload))