The deriva-client
package bundles an application suite of Python-based
client software for use with the DERIVA platform. These tools provide functions such as:
- Authentication services for programmatic and non browser-based access.
- Bulk import and export of catalog assets and (meta) data.
- Catalog configuration, mutation and administration.
- Tools for working with bdbags, a file container format used by DERIVA.
- Tools for working with minids, a lightweight identifier format used by DERIVA.
Executable Name | Description |
---|---|
bdbag |
The bdbag application provides a variety of functions for working with BagIt file archives, a file packaging format used by DERIVA for data export. This format is created by the DERIVA web applications when exporting data sets using the BDBAG option. |
bdbag-utils |
The bdbag-utils application is used to make some of the more repetitive and programmable tasks associated with creating and maintaining bags easier. |
minid |
The minid application is used to create and maintain minid identifiers. A minid (Minimal Viable Identifier) is an identifier that is sufficiently simple to make creation and use trivial, while still having enough substance to make data easily findable, accessible, interoperable, and reusable (FAIR). |
deriva-acl-config |
The deriva-acl-config utility reads a configuration file and uses it to set ACLs for an ermrest catalog (or for a schema or table within that catalog). |
deriva-annotation-config |
The deriva-annotation-config utility reads a configuration file and uses it to set annotations for an ERMrest catalog (or for a schema or table within that catalog). |
deriva-annotation-dump |
Outputs the current set of annotations in use for the specified catalog in JSON format. |
deriva-annotation-rollback |
Provides a function to rollback the entire annotation hierarchy for the specified catalog to a given point in time specified by catalog snapshot ID. |
deriva-catalog-cli |
Provides functions functions for creating, cloning, and dropping catalogs and catalog aliases. Also provides wrappers for making authenticated GET/PUT/POST/DELETE requests to ERMrest catalogs. |
deriva-download-cli |
The deriva-download-cli is used for orchestrating the bulk export of tabular data (stored in ERMrest catalogs) and download of asset data (stored in Hatrac, or other supported HTTP-accessible object store). |
deriva-hatrac-cli |
The deriva-hatrac-cli is a command-line utility for interacting directly with the DERIVA Hatrac object store. |
deriva-upload-cli |
The deriva-upload-cli provides batch upload functionality for both catalog (ERMrest) and asset (Hatrac) data. This application is generally used for automating the bulk transfer of data to DERIVA servers. |
deriva-globus-auth-utils |
The deriva-globus-auth-utils provides numerous utility functions for working with the Globus Auth API in addition to Globus Auth Native App login functionality. |
deriva-backup-cli |
The deriva-backup-cli is a command-line utility for orchestrating the backup of schema and tabular data from ERMRest catalogs and file assets from Hatrac object stores to a local directory either as a bag archive or plain directory. |
deriva-restore-cli |
The deriva-restore-cli is a command-line utility for orchestrating the restoration of schema and tabular data to ERMRest catalogs and file assets to Hatrac object stores from a specifically formatted directory structure (e.g., one generated from deriva-backup-cli ) on the local filesystem. |
Executable Name | Application Name | Description |
---|---|---|
deriva-auth |
DERIVA Authentication Agent | Provides credential authentication and refresh services for one or more DERIVA servers. This application is intended to be run in the background after the user completes the login sequence for each server. |
deriva-upload |
DERIVA Upload Utility | Provides batch upload functionality for both catalog and asset data. This application is an interactive tool used for the bulk transfer of data to DERIVA servers. |
deriva-workbench |
DERIVA Workbench | Schema Workbench for the DERIVA platform. |
bdbag-gui |
BDBag Graphical User Interface | Provides a GUI application front-end to bdbag , supporting the most common operations such as; create , update , validate , fetch and materialize . |
Pre-packaged installers of deriva-client
for Windows and MacOSX are
available.
These installer packages include a bundled Python interpreter and all
other software dependencies and are recommended for Windows and MacOSX
users who are looking for a more traditional "turnkey" installation that
does not require them to install Python and manage Python software package
installations.
Download the installer packages here.
For users who already have Python installed and are comfortable installing
Python software via the pip
application, deriva-client
can be easily
installed along with all of it's dependencies directly from
PyPi using basic pip
commands.
- A Python 3.8 or greater system installation is required. The latest stable version of Python is recommended.
- Verify that the appropriate Python 3 interpreter can be invoked from a
command shell using the
python3
command. This can be tested simply with the following command:
python3 --version
The following commands can be used to perform a venv
-based virtual
environment installation to the current working directory.
The following commands assume a BASH
(or compatible) command shell is
used. For a different command interpreter (e.g. CSH
), invoke the source
command on the appropriate activation script in the virtual environment's bin
directory.
python3 -m venv ./deriva-client-venv
source ./deriva-client-venv/bin/activate
python3 -m pip install --upgrade pip setuptools wheel
pip install deriva-client
The following commands assume a Windows Command Prompt
command shell is used. For a
Powershell
shell, the activate.ps1
activation script should be invoked instead.
python3 -m venv .\deriva-client-venv
.\deriva-client-venv\Scripts\activate
python3 -m pip install --upgrade pip setuptools wheel
pip install deriva-client
While a virtual environment installation is generally the safest way to install and isolate multiple software packages, it also must be activated before use and deactivated after use. If this requirement is too cumbersome, the recommended alternative is to install the software into a user environment instead. See the complete installation procedure below for more information.
-
For MacOSX and Linux systems which include Python as a core part of the operating system, it is highly recommended to install this software into a virtual environment or a user environment, so that it does not interfere or conflict with the operating system's Python installation. The native Python3
venv
module, thevirtualenv
package from PyPi, or the Anaconda Distribution environment are all suitable for use as virtual environments. -
Instead of using a virtual environment, it is also possible to install the software into a user environment using the
--user
argument when invokingpip install
. -
Recent versions of
pip
,setuptools
, andwheel
are recommended. If these components are already installed, updating them to the latest versions available is optional.
-
Create and/or activate the target virtual environment, if any. This step is specific to the type of virtual environment being used.
-
Update
pip
,setuptools
, andwheel
(optional).- For virtual environments execute the following (ensure the
environment is active):
python -m pip install --upgrade pip setuptools wheel
- For user environments execute the following:
python3 -m pip install --user --upgrade pip setuptools wheel
- For Linux system python installations it is recommended to use the
system's package manager such as
dnf
,apt
, oryum
to update the following packages:python3-pip
,python3-setuptools
, andpython3-wheel
.
- For virtual environments execute the following (ensure the
environment is active):
-
Install
deriva-client
directly from PyPi using thepip install
command.- For virtual environments execute the following (ensure the
environment is active):
pip install deriva-client
- For user environments execute the following:
pip3 install --user deriva-client
- For system-wide python installations (only do this if you
understand the complexities involved):
pip3 install deriva-client
- For virtual environments execute the following (ensure the
environment is active):
- Many newer Linux (as well as MacOSX) distributions contain both Python2
and Python3 installed alongside each other. In these environments, both
the python interpreter and
pip
are symbolically linked to the system default version, which in general results inpython
andpip
being linked to the Python2 versions. - Python3 versions are commonly accessed via
python3
andpip3
. If you are working outside of a Python3 virtual environment and installing either to the system-wide Python location (not recommended) or a user-based location (e.g. with thepip
--user
argument), then you must substitutepip3
forpip
when issuingpip
installation commands. - Also note that when installing into the system Python location via
pip
on Linux/MacOSX, the commands must be run as root or thesudo
command must be prefixed to the command line. - When using the
--user
flag withpip3
, please be aware that due to various shell implementation differences between operating systems and/or local policy configurations, the executables for each installed program may not automatically be found on the search path by default. Therefore, it may be necessary to manually add the installed executable directory to the search path, which may be an operating system, distribution and/or shell specific procedure.- On Linux/MacOSX systems, the default executable installation location is generally
~/.local/bin/
. - On Windows systems, the default executable installation location is generally
%systemroot%\<username>\AppData\Roaming\Python\Python3{x}\Scripts
.
- On Linux/MacOSX systems, the default executable installation location is generally
The source code and additional documentation for the primary components of deriva-client
can be found at the links below: