Skip to content

Commit 2f351a7

Browse files
Merge pull request #3273 from antgonza/2023.03
2023.03
2 parents 0f3304b + c6349a3 commit 2f351a7

File tree

8 files changed

+27
-7
lines changed

8 files changed

+27
-7
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Qiita changelog
22

3+
Version 2023.03
4+
---------------
5+
6+
* Added "Sample Validation" for all Admin levels.
7+
* Tools and Plugins can add preparation information via the endpoint: `/qiita_db/prep_template/`.
8+
* Users can now access specific preparations via the URL by adding it as a parameter: `/study/description/<study_id>?prep_id=<prep_id>`.
9+
* The internal [Sequence Processing Pipeline](https://github.com/qiita-spots/qp-knight-lab-processing) now automatically inserts new BLANKs to the sample information file, adds the preparation information file to Qiita, and keeps a record of which preparations were inserted to which studies.
10+
* Added the possibility of processing BIOM artifacts in the processing pipeline.
11+
* Added qiime2.2023.2 to the system; which updated these plugins: qp-qiime2, qtp-biom, qtp-diversity, qtp-visualization.
12+
* Added q2-greengeenes2 to the system, specifically actions: `filter_features` and `non_v4_16s`. This is the first processing (vs. analysis) plugin added to the system.
13+
* Fixed the [diversity pcoa_biplot](https://github.com/qiita-spots/qiita/issues/3266) functionality and added the [emperor biplot](https://github.com/qiita-spots/qiita/issues/3255) action.
14+
* The system can now validate QIIME 2 `FeatureData[Sequences]` via `qtp-diversity`.
15+
* Fixed the following issues [#3249](https://github.com/qiita-spots/qiita/issues/3249), [#3264](https://github.com/qiita-spots/qiita/issues/3264), [#3245](https://github.com/qiita-spots/qiita/issues/3245), [#3243](https://github.com/qiita-spots/qiita/issues/3243).
16+
317
Version 2023.02
418
---------------
519

qiita_core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
__version__ = "2023.02"
9+
__version__ = "2023.03"

qiita_db/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from . import user
2828
from . import processing_job
2929

30-
__version__ = "2023.02"
30+
__version__ = "2023.03"
3131

3232
__all__ = ["analysis", "artifact", "archive", "base", "commands",
3333
"environment_manager", "exceptions", "investigation", "logger",

qiita_pet/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
__version__ = "2023.02"
9+
__version__ = "2023.03"

qiita_pet/handlers/api_proxy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from .user import (user_jobs_get_req)
3939
from .util import check_access, check_fp
4040

41-
__version__ = "2023.02"
41+
__version__ = "2023.03"
4242

4343
__all__ = ['prep_template_summary_get_req', 'data_types_get_req',
4444
'study_get_req', 'sample_template_filepaths_get_req',

qiita_pet/handlers/qiita_redbiom.py

+7-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,13 @@ def _redbiom_metadata_search(self, query, contexts):
6161
for ctx in contexts:
6262
# redbiom.fetch.data_from_samples returns a biom, which we
6363
# will ignore, and a dict: {sample_id_in_table: original_id}
64-
_, data = redbiom.fetch.data_from_samples(ctx, redbiom_samples)
64+
try:
65+
# if redbiom can't find a valid sample in the context it
66+
# will raise a ValueError: max() arg is an empty sequence
67+
_, data = redbiom.fetch.data_from_samples(
68+
ctx, redbiom_samples)
69+
except ValueError:
70+
continue
6571
for idx in data.keys():
6672
sample_id, aid = idx.rsplit('.', 1)
6773
sid = sample_id.split('.', 1)[0]

qiita_ware/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# The full license is in the file LICENSE, distributed with this software.
77
# -----------------------------------------------------------------------------
88

9-
__version__ = "2023.02"
9+
__version__ = "2023.03"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from setuptools import setup
1111
from glob import glob
1212

13-
__version__ = "2023.02"
13+
__version__ = "2023.03"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)