Metadata-Version: 2.1
Name: lcg-neuro-v2-dataset-orm
Version: 0.6.3
Summary: High resolution recordings in primate secondary visual cortex
Home-page: https://lcg.gitlab.io/neuro/v2/dataset/python-orm
Author: Pedro Asad
Author-email: pasad@lcg.ufrj.br
Requires-Python: >=3.6,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Dist: cached-property (>=1.5,<2.0)
Requires-Dist: click (>=7.0,<8.0)
Requires-Dist: colour (>=0.1.5,<0.2.0)
Requires-Dist: environ_config (>=18.2,<19.0)
Requires-Dist: iso8601 (>=0.1.12,<0.2.0)
Requires-Dist: lcg-neuro-compneuro (>=0.1.0,<0.2.0)
Requires-Dist: lcg-neuro-plx (>=0.3.1,<0.4.0)
Requires-Dist: marshmallow (>=2.19,<3.0)
Requires-Dist: numpy (>=1.16,<2.0)
Requires-Dist: packaging (>=19.2,<20.0)
Requires-Dist: pandas (>=0.24.2,<0.25.0)
Requires-Dist: pedroasad-attrs-patch (>=0.2.1,<0.3.0)
Requires-Dist: pint (>=0.9.0,<0.10.0)
Requires-Dist: sqlalchemy (>=1.3,<2.0)
Requires-Dist: stringcase (>=1.2,<2.0)
Requires-Dist: tqdm (>=4.32,<5.0)
Project-URL: Documentation, https://lcg.gitlab.io/neuro/v2/dataset/python-orm
Project-URL: Repository, https://gitlab.com/lcg/neuro/v2/dataset/python-orm
Description-Content-Type: text/markdown

# v2_dataset &ndash; Python object-relational mapping (ORM) and tools for the V2 Dataset

[![][badge-python]][python-docs]
[![][badge-version]][latest release]

[![][badge-black]][Black]

[![][badge-ci-status]][repository-master]
![][badge-cov]

- [Documentation](https://lcg.gitlab.io/neuro/v2/dataset/python-orm)
- [Issue tracker](https://gitlab.com/lcg/neuro/v2/dataset/python-orm/issues)
- [Repository contents](MANIFEST.md)
- [History of changes](CHANGELOG.md)
- [Contribution/development guide](CONTRIBUTING.md)

---

This repository contains a [Python package][latest release] based on the [SQLAlchemy] object-relational mapping (ORM) framework for accessing the V2 Dataset's curated information.
It also contains a minimal [command-line interface](https://lcg.gitlab.io/neuro/v2/dataset/python-orm/cli.html) that supports the creation of [SQLite] databases to hold curated information and its manipulation through a set of [parsing routines](https://lcg.gitlab.io/neuro/v2/dataset/python-orm/api/v2_dataset.db.parsing.html) that are being continuously developed.

The curated information itself is stored in the [contents repository], together with information on how to obtain the recording data (which is not open-sourced, as of now).
The [contents repository] should be cloned *separately* and linked from your working copy, as explained below.

## Installation and setup

The library may be installed with

   ```bash
   pip install lcg-neuro-v2-dataset-orm
   ```

Additional steps:
   
1. Clone the V2 Dataset's [contents repository] to any directory on your computer, *e.g.*:

   ```bash
   git clone git@gitlab.com:lcg/neuro/v2/dataset/contents /data/v2-dataset
   ```
   
   **Make sure** to check out a **compatible version** of the [contents repository].
   Usually, the latest version of the library will be compatible with the latest version of the dataset.

1. The library must be able to locate the dataset directory, which can be done in one of two ways:

   * If Define a `V2_DATASET_DIR` environment variable pointing to the directory where you cloned the [contents repository] (you may do it with a `.envrc` file), or
   * Create a symlink named `dataset` (it is Git-ignored in this repository) in your working copy or library installation directory (`/lib/pythonx.y/site-packages/lcg-neuro-v2-dataset-orm`) pointing to the [contents repository] copy.

**Note:** You may need `g++` or `clang` to compile some dependent libraries's extensions.

## Development notes

### Git LFS and cloning

Cloning may take a while because we use [Git LFS] to track larger files that are included mainly for testing.
After the initial cloning, further pushing/pulling/fetching should only take as long as needed to download missing files, which we intend to keep at a minimum over this project's lifetime.

**Important:** you must install [Git LFS] before cloning.

---

*&mdash; Powered by [GitLab CI]*<br>
*&mdash; Created by [Pedro Asad
&lt;pasad@lcg.ufrj.br&gt;](mailto:pasad@lcg.ufrj.br) using [cookiecutter] and [@pedroasad.com/templates/python/python/app-1.0.0](https://gitlab.com/pedroasad.com/templates/python/python-app/tags/1.0.0)*  

[Black]: https://pypi.org/project/black/
[CHANGELOG]: ./CHANGELOG.md
[CONTRIBUTING]: ./CONTRIBUTING.md
[Git LFS]: https://git-lfs.github.com/
[Gitlab CI]: https://docs.gitlab.com/ee/ci
[LICENSE]: ./LICENSE.txt
[MANIFEST]: ./MANIFEST.md
[README]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm/blob/master/README.md
[SQLAlchemy]: https://www.sqlalchemy.org
[SQLite]: https://www.sqlite.org
[badge-black]: https://img.shields.io/badge/code%20style-Black-black.svg
[badge-ci-coverage]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm/badges/master/coverage.svg
[badge-ci-status]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm/badges/master/pipeline.svg
[badge-cov]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm/badges/master/coverage.svg
[badge-python]: https://img.shields.io/badge/Python-%E2%89%A53.7-blue.svg
[badge-version]: https://img.shields.io/badge/version-0.6.3%20-orange.svg
[contents repository]: https://gitlab.com/lcg/neuro/v2/dataset/contents
[cookiecutter]: http://cookiecutter.readthedocs.io/
[latest release]: https://test.pypi.org/project/lcg-neuro-v2-dataset-orm/0.6.3/
[python-docs]: https://docs.python.org/3.7
[repository-codecov]: https://codecov.io/gl/lcg:neuro:v2:dataset/python-orm
[repository-master]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm
[repository-security]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm/security
[repository]: https://gitlab.com/lcg/neuro/v2/dataset/python-orm

