From 0a7f9e43ecd0152788e49e0696e3cbb6ce35b6c2 Mon Sep 17 00:00:00 2001 From: "Vitor C. Piro" Date: Tue, 19 Apr 2022 08:22:46 +0200 Subject: [PATCH] v1.1.1 fix gtdb new release url ar53 from ar122 --- LICENSE | 2 +- multitax/gtdbtx.py | 5 +++-- multitax/multitax.py | 2 +- setup.py | 4 ++-- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index ad408c9..4a70204 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021 Vitor C. Piro +Copyright (c) 2022 Vitor C. Piro - pirovc.github.io Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/multitax/gtdbtx.py b/multitax/gtdbtx.py index 1fa8d71..e38eded 100644 --- a/multitax/gtdbtx.py +++ b/multitax/gtdbtx.py @@ -2,8 +2,9 @@ class GtdbTx(MultiTax): - _default_urls = ["https://data.ace.uq.edu.au/public/gtdb/data/releases/latest/ar122_taxonomy.tsv.gz", - "https://data.ace.uq.edu.au/public/gtdb/data/releases/latest/bac120_taxonomy.tsv.gz"] + + _default_urls = ["https://data.gtdb.ecogenomic.org/releases/latest/ar53_taxonomy.tsv.gz", + "https://data.gtdb.ecogenomic.org/releases/latest/bac120_taxonomy.tsv.gz"] _rank_codes = [("d__", "domain"), ("p__", "phylum"), ("c__", "class"), diff --git a/multitax/multitax.py b/multitax/multitax.py index ccca9da..14cde4b 100644 --- a/multitax/multitax.py +++ b/multitax/multitax.py @@ -4,7 +4,7 @@ class MultiTax(object): - version = "1.1.0" + version = "1.1.1" _default_urls = [] _default_root_node = "1" diff --git a/setup.py b/setup.py index ffdf65c..d3019fd 100755 --- a/setup.py +++ b/setup.py @@ -5,14 +5,14 @@ setup( name="multitax", - version="1.1.0", + version="1.1.1", url="https://www.github.com/pirovc/multitax", license='MIT', author="Vitor C. Piro", author_email="pirovc@posteo.net", - description="Python package to obtain, parse and explore biological taxonomies", + description="Python package to obtain, parse and explore biological and custom taxonomies", long_description=long_description, long_description_content_type="text/markdown",