This package provides an interface to the NIMH Data Archive Web Services. It can be used to query data in NDA as well as synchronize files and metadata (annotations) stored in an NDA-hosted Amazon S3 bucket to a Synapse Project.
pip install git+https://github.com/bsmn/ndasynapse.git
Since release 1.0.2, this package is available on PyPi:
pip install ndasynapse
Authentication to NDA requires a JSON configuration file, that should look like this:
{
"nda": {"password": "yourpassword",
"username": "yourusername",
"submission.service.url": "https://nda.nih.gov/api/submission",
"guid.service.url": "https://nda.nih.gov/api/guid",
"experiment.service.url": "https://nda.nih.gov/api/experiment"}
}
The main tool to use is query-nda
, which is installed as a command line tool when installing the package. Use the command query-nda -h
to learn about the features it offers, including sub-commands and arguments.
See the Github docs for how to make a copy (a fork) of a repository to your own Github account.
Then, clone the repository to your local machine so you can begin making changes.
Add this repository as an upstream remote on your local git repository so that you are able to fetch the latest commits.
On your local machine make sure you have the latest version of the develop
branch:
git checkout develop
git pull upstream develop
- Pull the latest content from the
develop
branch of this central repository (not your fork). - Create a feature branch which off the
develop
branch. If there is a GitHub issue that you are addressing, name the branch after the issue with some more detail (likeissue-123-add-some-new-feature
). - After completing work and testing locally (see below), push to your fork.
- In Github, create a pull request from the feature branch of your fork to the
develop
branch of the central repository.
A code maintainer must review and accept your pull request. A code review (which happens with both the contributor and the reviewer present) is required for contributing. This can be performed remotely (e.g., Skype, Hangout, or other video or phone conference).
This package uses semantic versioning for releasing new versions. The version should be updated on the develop
branch as changes are reviewed and merged in by a code maintainer. The version for the package is maintained in the ndasynapse/version.py file.
A GitHub Action workflow pushes GitHub release tags to PyPi. Create a new GitHub release and the action will trigger.
Please strongly consider adding tests for new code. These might include unit tests (to test specific functionality of code that was added to support fixing the bug or feature), integration tests (to test that the feature is usable - e.g., it should have complete the expected behavior as reported in the feature request or bug report), or both.
This package uses nose
to run tests. The test code is located in the test subdirectory.
Here's how to run the test suite:
nosetests -vs tests/