/WG3-MetadataSpecifications

WG3 Metadata Specification

Primary LanguagePython

Build Status

WG3- DATS Model - Metadata Specifications

This repository contains the output of bioCADDIE WG3 Descriptive Metadata for Datasets., defining the DatA Tag Suite (DATs) model. The presentations and notes from the WG3 activities can be found at this website. This repository contains the different versions of the DATS specification.

The (work in progress) documentation about DATS can be found at readthedocs.

The material in this repository is distributed under CC BY-SA 3.0 license.

DATS Publication

DATS has been published in Springer Nature Scientific Data and the article can be reached through this DOI: 10.1038/sdata.2017.59.

DATS Pre-print

A preprint on "DATS: the data tag suite to enable discoverability of datasets" can be found at bioRxiv DOI: 10.1101/103143 .

DATS Releases

All DATS releases can be accessed in Zenodo through the DATS Community. In addition, links to individual releases can be found below.

Version 2.2 - DOI

Version 2.1 - DOI

The document provides links to the different appendices files.

Version 2.0 - DOI

The document provides links to the different appendices files.

Version 1.1 - DOI

Version 1.0 - DOI

Instructions to execute code

The python code included in the repository validates the DATS JSON schemas and the DATS JSON instances against the schemas. To execute the code, it is recommended to use a virtual environment, following these steps:

  1. If not already installed in your system, first install the virtual environment via pip: pip install virtualenv
  2. Create a virtual environment: virtualenv venv
  3. Then, activate the virtual environment: source venv/bin/activate
  4. Install the requirements: pip install -r requirements.txt
  5. Finally, you can inspect and run the tests to validate the DATS schemas and JSON instances against the schemas. python setup.py test