Open Neurophysiology Environment
Project description
Open Neurophysiology Environment
NB: This package is currently in beta
Installing
For Python 3.8 or later, run
pip install ONE
Set up
For using ONE with a local cache directory:
from one.api import One
one = One(cache_dir='/home/user/downlaods/ONE/behavior_paper')
For setting up ONE for a given database e.g. internal IBL Alyx:
from one.api import ONE
one = ONE(base_url='http://alyx.internationalbrainlab.org')
To use the default setup settings that connect you to the IBL public database:
from one.api import ONE
one = ONE(silent=True) # Will use default information
Once you've setup the server, subsequent calls will use the same parameters:
from one.api import ONE
one = ONE()
To set up ONE for another database and make it the default:
from one.api import OneAlyx, ONE
OneAlyx.setup(client='http://test.alyx.internationalbrainlab.org', make_default=True)
one = ONE() # Connected to http://test.alyx.internationalbrainlab.org
Using ONE
To search for sessions:
from one.api import ONE
one = ONE()
print(one.search_terms) # A list of search keyword arguments
# Search session with wheel timestamps from May onward
eids = one.search(date_range=['2021-05-01',], dataset='wheel.timestamps')
>> ['TODO']
# Search for project sessions with two probes
eids = one.search(data=['probe00', 'probe01'], project='brainwide')
To load data:
from one.api import ONE
one = ONE()
# Load an ALF object
eid = 'a7540211-2c60-40b7-88c6-b081b2213b21'
wheel = one.load_object(eid, 'wheel')
# Load a specific dataset
eid = 'a7540211-2c60-40b7-88c6-b081b2213b21'
ts = one.load_dataset(eid, 'wheel.timestamps')
# Download, but not load, a dataset
filename = one.load_dataset(eid, 'wheel.timestamps', download_only=True)
Further examples and tutorials can be found in examples/
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
ONE-api-0.1.5.tar.gz
(918.9 kB
view details)
Built Distribution
ONE_api-0.1.5-py3-none-any.whl
(61.7 kB
view details)
File details
Details for the file ONE-api-0.1.5.tar.gz
.
File metadata
- Download URL: ONE-api-0.1.5.tar.gz
- Upload date:
- Size: 918.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87b40ee0eb250ae3141da4c8613e709a6537bfee260fc9e574d2ee02ef5569d0 |
|
MD5 | 39b2042e99d8a293ad467ad315a073fa |
|
BLAKE2b-256 | 56d3eac8da9bf13c9de59dd9a7cc2e1965650ad5604a10d791549de994ccc90d |
File details
Details for the file ONE_api-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: ONE_api-0.1.5-py3-none-any.whl
- Upload date:
- Size: 61.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9436f9a6e6cb7207d65d524c5981f3e562d5bc4aba6d66a311d57f99ff57cd67 |
|
MD5 | 638dc91c3322fa0bad8075be779af2a1 |
|
BLAKE2b-256 | 2423a15cbfe608b8f58a3935512a21d3b0291685fd6b7a9f1eb938e900e4aa12 |