Skip to content

Commit

Permalink
Release v1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yokochi47 committed Aug 15, 2019
1 parent 7b7030b commit ed3be9c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Changes in BMSxNmrML 1.2.1 (release 2019-08-15)

Updated dependency (Apache Lucene from 7.x to 8.x)

Changes in BMSxNmrML 1.2.0 (release 2018-06-29)

Changed namespace URI from http://bmrbpub.protein.osaka-u.ac.jp/schema/mmcif_nmr-star.xsd to https://bmrbpub.pdbj.org/schema/mmcif_nmr-star.xsd.
Expand Down
4 changes: 2 additions & 2 deletions NOTICE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

BMSxNmrML v1.2.0 - nmrML converter for BMRB metabolomics entries
Copyright (c) 2017-2018 Masashi Yokochi
BMSxNmrML v1.2.1 - nmrML converter for BMRB metabolomics entries
Copyright (c) 2017-2019 Masashi Yokochi

https://github.com/yokochi47/BMSxNmrML

Expand Down
2 changes: 1 addition & 1 deletion USAGE
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

Usage notes for BMSxNmrML v1.2.0
Usage notes for BMSxNmrML v1.2.1

A. Requirements

Expand Down
Binary file modified bmsx-nmrml.jar
Binary file not shown.
Binary file modified extlibs/owl-indexer.jar
Binary file not shown.
Binary file modified extlibs/saxon9he.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions src/BMSxNmrMLThrd.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
BMSxNmrML - nmrML converter for BMRB metabolomics entries
Copyright 2017-2018 Masashi Yokochi
Copyright 2017-2019 Masashi Yokochi
https://github.com/yokochi47/BMSxNmrML
Expand Down Expand Up @@ -544,7 +544,7 @@ private boolean IdentifySampleSolventType(Document document, QueryParser chebi_o

TopDocs results = chebi_owl_searcher.search(query, 1);

if (results.totalHits == 0) {
if (results.totalHits.value == 0) {
System.err.println("No matching documents for " + query_code + ".");
return false;
}
Expand Down Expand Up @@ -1935,7 +1935,7 @@ private boolean IdentifyChemCompIdentifier(Document document, QueryParser chebi_

TopDocs results = chebi_owl_searcher.search(query, 1);

if (results.totalHits == 0) {
if (results.totalHits.value == 0) {
// System.err.println("No matching documents for " + query_code + ".");
return false;
}
Expand Down

0 comments on commit ed3be9c

Please sign in to comment.