Skip to content

Commit 9478d32

Browse files
authoredMay 14, 2023
2023.05 (#3285)
1 parent 9ec2ce5 commit 9478d32

File tree

7 files changed

+20
-6
lines changed

7 files changed

+20
-6
lines changed
 

‎CHANGELOG.md

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

3+
Version 2023.05
4+
---------------
5+
6+
**_NOTE:_** Human-associated shotgun samples have been determined to leak human
7+
DNA, even with state of the art human read filtering mechanisms in place. To
8+
address this critical privacy concern as soon as possible, we are limiting
9+
per-sample FASTQ downloads to admins and study owners for human-associated
10+
shotgun samples, and in parallel we are (a) working with EBI-ENA to address
11+
submitted data and (b) updating Qiita to only allow download of sequence data
12+
that positively matches to a microbial specific database.
13+
14+
* Added "Artifact.has_human" to check if an artifact has samples that can potentially contain human sequences.
15+
16+
317
Version 2023.03
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.03"
9+
__version__ = "2023.05"

‎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.03"
30+
__version__ = "2023.05"
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.03"
9+
__version__ = "2023.05"

‎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.03"
41+
__version__ = "2023.05"
4242

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

‎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.03"
9+
__version__ = "2023.05"

‎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.03"
13+
__version__ = "2023.05"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)
Please sign in to comment.