Skip to content

Releases: INCATools/dosdp-tools

Release 0.19.3

10 May 19:39
Compare
Choose a tag to compare

Release fixing a couple of bugs.

What's Changed

  • sbt build for Windows by @rohmk in #406
  • Use only a single label for readable identifiers, rather than accidentally concatenating. by @balhoff in #414
  • Fix error reporting at program exit. by @balhoff in #415

Dependency updates

New Contributors

Full Changelog: v0.19.2...v0.19.3

Release 0.19.2

10 Mar 21:13
Compare
Choose a tag to compare

This is a bug-fix release for an issue parsing IRI-valued annotation templates (#404).

What's Changed

  • Order Annotations parsers so that the different subclasses are distinguishable. by @balhoff in #405

Dependency updates

Full Changelog: v0.19.1...v0.19.2

Release 0.19.1

22 Feb 20:39
Compare
Choose a tag to compare

Bugfix release for dosdp-tools query performance.

What's Changed

  • Fix problematic SPARQL query ordering. by @balhoff in #403

Full Changelog: v0.19...v0.19.1

Release 0.19

21 Feb 20:48
Compare
Choose a tag to compare

What's Changed

Dependency updates

Full Changelog: v0.18...v0.19

Release 0.18

02 Dec 15:53
Compare
Choose a tag to compare

Important: Beginning with this release, dosdp-tools requires Java 11 or higher.

What's Changed

  • Multi clause printf by @hkir-dev in #336
  • MultiClause zero2many support by @hkir-dev in #349
  • Output a pattern conformance report as RDF for a batch query run. by @balhoff in #365
  • hiding stacktrace for DOSDPError instances by @jdr0887 in #300
  • Change print-query behavior to print to the console, and also run match. by @balhoff in #367
  • Alphabetize docs index. by @balhoff in #368

Full Changelog: v0.17...v0.18

Release 0.17

29 Apr 20:09
Compare
Choose a tag to compare

New command, docs: output a Markdown file for each pattern.

Example command line:

dosdp-tools docs --obo-prefixes=true --batch-patterns="activator_activity anchored_membrane_component bounding_membrane_of_organelle cc_assembly cc_disassembly" --template=../go-ontology/src/design_patterns --outfile=docs --infile=../go-ontology/src/design_patterns --data-location-prefix='https://github.com/geneontology/go-ontology/tree/master/src/design_patterns/' --ontology=go-plus.owl

Release 0.16

29 Jan 19:02
Compare
Choose a tag to compare

Includes bug fixes as well as new feature for dosdp-tools query on annotation values.

Snapshot release for 0.16

03 Dec 02:28
183f8ca
Compare
Choose a tag to compare
Pre-release

Release for testing dosdp-tools query on annotation values. Example:

Command:

dosdp-tools query --obo-prefixes=true --template=cc_transport_from_to.yaml --restrict-axioms-to=annotation --ontology=go-base.owl

Ontology: http://purl.obolibrary.org/obo/go/go-base.owl

Pattern cc_transport_from_to.yaml :

pattern_name: 'cc_transport_from_to'

classes:
  transport: 'GO:0006810'
  cellular component: 'GO:0005575'

relations: 
  has_target_start_location: 'RO:0002338'
  has_target_end_location: 'RO:0002339'

vars:
 target_start: "'cellular component'"
 target_end: "'cellular component'"

readable_identifiers:
  - rdfs:label
  - oboInOwl:hasExactSynonym

name:
     text: "%s to %s transport"
     vars:
       - target_start
       - target_end
  
equivalentTo:
  text: " 'transport' and ('has_target_start_location' some %s) and ('has_target_end_location' some %s)"
  vars:
    - target_start
    - target_end

0.15.1-SNAPSHOT

28 Aug 19:48
Compare
Choose a tag to compare
0.15.1-SNAPSHOT Pre-release
Pre-release

Snapshot for testing.

Release 0.15

21 Aug 14:01
Compare
Choose a tag to compare

Bugfix to file suffixes in batch mode. Dependency updates.