Open Neurophysiology Environment
Project description
Open Neurophysiology Environment
The Open Neurophysiology Environment is a scheme for sharing neurophysiology data in a standardized manner. For information on how to share data with ONE please click here. This github page contains an API for searching and loading ONE-standardized data, stored either on a user’s local machine or on a remote server. Please Click here for the main documentation page.
NB: The API and backend database are still under active development, for the best experience please regularly update the package by running pip install -U ONE-api
.
Requirements
ONE runs on Python 3.7 or later, and is tested on the latest Ubuntu and Windows (3.7 and 3.8 only).
Installing
Installing the package via pip typically takes a few seconds. To install, run
pip install ONE-api
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='https://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, password='international') # 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(base_url='https://test.alyx.internationalbrainlab.org', make_default=True)
one = ONE() # Connected to https://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 January 2021 onward
eids = one.search(date_range=['2021-01-01',], dataset='wheel.timestamps')
['d3372b15-f696-4279-9be5-98f15783b5bb']
# 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', collection='alf')
# Download, but not load, a dataset
filename = one.load_dataset(eid, 'wheel.timestamps', download_only=True)
Further examples and tutorials can be found in the documentation.
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
Built Distribution
File details
Details for the file ONE-api-1.20.0.tar.gz
.
File metadata
- Download URL: ONE-api-1.20.0.tar.gz
- Upload date:
- Size: 959.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06084e7f439883765381205d9d13566a31b9e4905421709bbc242ea41203ada1 |
|
MD5 | 9fd7d29661af19fb63b4aa78e53f3105 |
|
BLAKE2b-256 | 28bc9dc2f79c658bab96fe019e07600b53e75cc67c99cd526d08da3dd2821aad |
File details
Details for the file ONE_api-1.20.0-py3-none-any.whl
.
File metadata
- Download URL: ONE_api-1.20.0-py3-none-any.whl
- Upload date:
- Size: 101.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9be5b87d20c89eeb2ddca678e2fea8c6935d8de13da037e98cf64be249636af7 |
|
MD5 | 2b405d66b32a71346be48fef3e05648a |
|
BLAKE2b-256 | 7a6e84a9b6b85c9de37838294408286df83cfc15aa0757150232550507783e02 |