Apollo API library
Project description
Apollo is a Python library for interacting with Apollo
Installation
pip install apollo
Examples
Example code to create a new organism and add yourself in the permission list:
from apollo import ApolloInstance
wa = ApolloInstance('https://fqdn/apollo', 'jane.doe@fqdn.edu', 'password')
orgs = wa.organisms.add_organism(
"Yeast",
"/path/to/jbrowse/data",
genus='Saccharomyces',
species='cerevisiae',
public=False
)
# Give Apollo a second to process the uploaded organism.
time.sleep(1)
# Then add yourself to permission list
data = wa.users.update_organism_permissions(
"jane.doe@fqdn.edu",
"Yeast",
write=True,
export=True,
read=True,
)
If you have already created an Arrow config file (with command arrow init), you can also get an ApolloInstance without writing credentials explicitely:
from arrow.apollo import get_apollo_instance
wa = get_apollo_instance()
Or with the Arrow client:
$ arrow groups create_group university
{
"publicGroup": false,
"class": "org.bbop.apollo.UserGroup",
"name": "university",
"users": null,
"id": 558319
}
# THEN
$ arrow users get_users | \
jq '.[] | select(.username | contains("@tamu.edu")) | .username' | \
xargs -n1 arrow users add_to_group university
# OR
$ arrow users get_users | \
jq '.[] | select(.username | contains("@tamu.edu")) | .username' | \
paste -s -d',' | \
xargs arrow group update_membership 558319 --users
History
- 4.1
Fix loading attributes from gff3
Better handling of genome sequence update, with or without the no_reload_sequences option
- 4.0.1
Fix missing file in pypi package, no code change
- 4.0
Added support for remote creation/update/deletion of organisms/tracks
Added support for adding GFF3 in the annotation track
Added tests
- 3.1
Added user activate/inactivate
Added get_creator for user, group and organisms
Added omitEmptyOrganisms to get_users
Added support for group admins
Added support for bulk group creation/deletion
Repaired GFF3/Fasta downloading
- 3.0.4
Fixed bug in deleteFeatures (Thanks @NeillGibson)
- 3.0.3
findAllOrganisms works correctly, client side filtering no longer necessary.
- 3.0.2
Patch a bug discovered in io.write, thanks Morgan!
- 3.0
“Arrow” CLI utility
More pythonic API and many workarounds for Apollo bugs or oddities
Complete package restructure
Nearly all functions renamed
- 2.0
Galaxy Functions
TTL Cache to work around Galaxy’s behaviour
Status and Canned* Clients from @abretaud
- 1.0
Initial release
License
Available under the MIT License
Support
This material is based upon work supported by the National Science Foundation under Grant Number (Award 1565146)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file apollo-4.1.tar.gz
.
File metadata
- Download URL: apollo-4.1.tar.gz
- Upload date:
- Size: 37.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/42.0.1 requests-toolbelt/0.9.1 tqdm/4.39.0 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3fb044692b8c12668f4349ddb5c09f3381902318b9edaa0b0c5d1a8481c69c9b |
|
MD5 | a6e5cf9ffdab65dcca8efff08c39cf6a |
|
BLAKE2b-256 | 58429498ed433f7ce28b625c73879ee13f5e0bf0cbb52337cd9a617db8a02fbc |