forked from abretaud/galaxy-apollo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete_organism.py
39 lines (31 loc) · 1.3 KB
/
delete_organism.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
import argparse
from webapollo import WebApolloInstance
from webapollo import WAAuth, OrgOrGuess, GuessOrg, AssertUser
import logging
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 = AssertUser(wa.users.loadUsers(email=args.email))
# Get organism
org_cn = GuessOrg(args, wa)
if isinstance(org_cn, list):
org_cn = org_cn[0]
# TODO: Check user perms on org.
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
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']]))