Skip to content

Commit

Permalink
2023.05 (#3285)
Browse files Browse the repository at this point in the history
  • Loading branch information
antgonza authored May 14, 2023
1 parent 9ec2ce5 commit 9478d32
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Qiita changelog

Version 2023.05
---------------

**_NOTE:_** Human-associated shotgun samples have been determined to leak human
DNA, even with state of the art human read filtering mechanisms in place. To
address this critical privacy concern as soon as possible, we are limiting
per-sample FASTQ downloads to admins and study owners for human-associated
shotgun samples, and in parallel we are (a) working with EBI-ENA to address
submitted data and (b) updating Qiita to only allow download of sequence data
that positively matches to a microbial specific database.

* Added "Artifact.has_human" to check if an artifact has samples that can potentially contain human sequences.


Version 2023.03
---------------

Expand Down
2 changes: 1 addition & 1 deletion qiita_core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "2023.03"
__version__ = "2023.05"
2 changes: 1 addition & 1 deletion qiita_db/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
from . import user
from . import processing_job

__version__ = "2023.03"
__version__ = "2023.05"

__all__ = ["analysis", "artifact", "archive", "base", "commands",
"environment_manager", "exceptions", "investigation", "logger",
Expand Down
2 changes: 1 addition & 1 deletion qiita_pet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "2023.03"
__version__ = "2023.05"
2 changes: 1 addition & 1 deletion qiita_pet/handlers/api_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
from .user import (user_jobs_get_req)
from .util import check_access, check_fp

__version__ = "2023.03"
__version__ = "2023.05"

__all__ = ['prep_template_summary_get_req', 'data_types_get_req',
'study_get_req', 'sample_template_filepaths_get_req',
Expand Down
2 changes: 1 addition & 1 deletion qiita_ware/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# The full license is in the file LICENSE, distributed with this software.
# -----------------------------------------------------------------------------

__version__ = "2023.03"
__version__ = "2023.05"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup
from glob import glob

__version__ = "2023.03"
__version__ = "2023.05"


classes = """
Expand Down

0 comments on commit 9478d32

Please sign in to comment.