Mercurial > repos > gga > apollo_create_account
view delete_organism.py @ 6:2fb1e4193edd draft
planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit d9f27b297d9a919471c92b02ecf6cc9554457211
author | gga |
---|---|
date | Tue, 30 Oct 2018 04:32:30 -0400 |
parents | 356b43302b16 |
children | a46a509386d3 |
line wrap: on
line source
#!/usr/bin/env python from __future__ import print_function import argparse import logging from webapollo import GuessOrg, OrgOrGuess, PermissionCheck, WAAuth, WebApolloInstance logging.basicConfig(level=logging.INFO) log = logging.getLogger(__name__) if __name__ == '__main__': parser = argparse.ArgumentParser(description='Sample script to completely delete an organism') WAAuth(parser) parser.add_argument('email', help='User Email') OrgOrGuess(parser) args = parser.parse_args() wa = WebApolloInstance(args.apollo, args.username, args.password) # User must have an account gx_user = wa.users.assertOrCreateUser(args.email) # Get organism org_cn = GuessOrg(args, wa) if isinstance(org_cn, list): org_cn = org_cn[0] if not PermissionCheck(gx_user, org_cn, "WRITE"): raise Exception("You do not have write permission on this organism") org = wa.organisms.findOrganismByCn(org_cn) # Call setSequence to tell apollo which organism we're working with wa.annotations.setSequence(org['commonName'], org['id']) # Then get a list of features. features = wa.annotations.getFeatures() # For each feature in the features # If it exists if 'features' in features: for feature in features['features']: # We see that deleteFeatures wants a uniqueName, and so we pass # is the uniquename field in the feature. print(wa.annotations.deleteFeatures([feature['uniquename']]))