Skip to content

nfdi4plants/arc-validate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

60490a6 Β· Jan 29, 2025
Jan 12, 2024
Jan 29, 2025
Feb 20, 2023
Jan 12, 2024
Feb 26, 2024
Jan 25, 2024
Nov 18, 2024
Feb 24, 2023
Aug 7, 2024
Feb 17, 2023
Apr 24, 2024
Jun 27, 2024
Feb 17, 2023
Feb 5, 2024
Jan 4, 2024
Feb 20, 2023
May 8, 2023
Feb 5, 2024
May 8, 2023
May 8, 2023
Apr 27, 2023
Jan 4, 2024

Repository files navigation

arc-validate

Home of all the tools and libraries to create and run validation of ARCs:

  • ARCExpect (docs πŸ““) - easy to use and understand APIs to create and execute validation cases.
  • ARCValidationPackages (docs πŸ““) - package for installing, updating, and executing ARC validation packages.
  • arc-validate/ (docs πŸ““) - CLI tool that offers commands for validating ARCs and managing validation packages.

Docker container

This repository provides a docker container that has the arc-validate tool pre-installed for using it in DataHUB-CI jobs.

Use the containers tagged with main for production use.

Project aim

Validation of ARCs based on:

  • ARCTokenization: Structural ontologies for file formats (for parsing/tokenizing files): INVMSO, STDMSO, ASSMSO
  • OBO.NET:
    • parsing ontologies, generation of OBO graphs based on ontology term relation
    • code genearation of ontology modules with accessible terms
  • ARCGraph: Graph representation of file content based on structural ontologies via OBO graph
  • Graph-based completion of File content (missing cells -> empty tokens) via ARCGraph
  • ARCExpect: Expecto-like API for creating validation cases
  • Validation Packages: API for installing and executing additional validation packages

Project layout

Loading
flowchart TD

ControlledVocabulary("<b>ControlledVocabulary:</b><br>Data model for CVs")
ARCTokenization("<b>ARCTokenization:</b><br>Tokenization of ARCs into CVs")
OBO.NET("<b>OBO.NET:</b><br>OBO Ontology data model and parsing")
ARCGraph("<b>ARCGraph:</b><br>Graph based on structural ontologies")
ARCExpect("<b>ARCExpect:</b><br>Expecto-like API for validation")
ARCValidationPackages("<b>ARCValidationPackages:</b><br>API for additional validation packages")
arc-validate("<b>arc-validate:</b><br>validation CLI tool")

arc-validate --depends on--> ARCExpect
arc-validate --depends on--> ARCValidationPackages
ARCTokenization --depends on--> ControlledVocabulary
ARCTokenization --depends on--> OBO.NET
ARCExpect --depends on--> ARCGraph
ARCExpect --depends on--> ARCTokenization
ARCGraph --depends on--> ARCTokenization
ARCGraph --depends on--> OBO.NET