From 58256cb2338017b2022ea231e019647a6169aa4d Mon Sep 17 00:00:00 2001 From: niekdejonge Date: Tue, 20 Aug 2024 14:10:14 +0200 Subject: [PATCH 1/2] updated_dois --- ms2query/run_ms2query.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ms2query/run_ms2query.py b/ms2query/run_ms2query.py index 2b77142d..a1747d3e 100644 --- a/ms2query/run_ms2query.py +++ b/ms2query/run_ms2query.py @@ -10,8 +10,8 @@ def zenodo_dois(ionisation_mode): "Returns the most up to date url for Zenodo" - zenodo_DOIs = {"positive": 12622446, - "negative": 12606475} + zenodo_DOIs = {"positive": 13348638, + "negative": 13348683} assert ionisation_mode in zenodo_DOIs, "Expected 'positive' or 'negative' as input" zenodo_doi = zenodo_DOIs[ionisation_mode] zenodo_metadata_url = "https://zenodo.org/api/records/" + str(zenodo_doi) From 10b1b2ac5ccaa6c5be5133f904a87e69c82d31c5 Mon Sep 17 00:00:00 2001 From: niekdejonge Date: Tue, 20 Aug 2024 14:12:24 +0200 Subject: [PATCH 2/2] added change to changelog and updated version --- CHANGELOG.md | 4 ++++ ms2query/__version__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d980e141..dd2f4f2d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 1.5.3 +### Fixed +- Updated the doi to the MS2Query library. This new library has a fix for a bug misrepresenting the compound classes. + ## 1.5.2 ### Fixed - Handle missing compound names. Previously MS2Query would break, when no compound name was available for an analog. diff --git a/ms2query/__version__.py b/ms2query/__version__.py index c3b38415..0bb84ff2 100644 --- a/ms2query/__version__.py +++ b/ms2query/__version__.py @@ -1 +1 @@ -__version__ = '1.5.2' +__version__ = '1.5.3'