Skip to content

Commit e46d0f2

Browse files
authored
Merge f935a3e into ec231d5
2 parents ec231d5 + f935a3e commit e46d0f2

File tree

8 files changed

+33
-7
lines changed

8 files changed

+33
-7
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Qiita changelog
22

3+
Version 2025.11
4+
---------------
5+
6+
Deployed on Novermber 25th, 2025
7+
8+
* Updated `qp-knight-lab-processing` to add support of PacBio raw data processing that has twisted adaptors, including human-filtering using MOVI. Also, replaced flake8 for ruff. Additionally, added `IsPairedEndComplete` as part of the Illumina xml validation process.
9+
* Added a new plugin to the system: `https://github.com/qiita-spots/qp-pacbio`, which adds two new commands: `Woltka v0.1.7, minimap2` and `PacBio processing`.
10+
* Added default workflows specific to PacBio.
11+
* Allowed default workflows to have multiple commands starting from a single input.
12+
* Now users can download public raw and biom per-preparation directly.
13+
* Initial changes for to support cloud environments via cloud specific endpoints; thank you @sjanssen2!
14+
15+
16+
Version 2025.09
17+
---------------
18+
19+
Deployed on September 11th, 2025
20+
21+
* Updated `qp-knight-lab-processing` to add support of PacBio raw data processing, including human-filtering using MOVI.
22+
* Updated fastp in local environment for `qp-knight-lab-processing` from 0.20.1 to 0.23.4.
23+
* Added workflows parameters to the default workfows in Qiita to make them Illumina specific: `UPDATE qiita.default_workflow set parameters = '{"prep": {"platform": "Illumina"}, "sample": {}}'::json WHERE default_workflow_id IN (4, 6, 9 ,11);` to avoid PacBio processing applying them.
24+
25+
326
Version 2025.07
427
---------------
528

qiita_core/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "2025.07"
9+
__version__ = "2025.11"

qiita_db/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
from . import user
2828
from . import processing_job
2929

30-
__version__ = "2025.07"
30+
__version__ = "2025.11"
3131

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

qiita_pet/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "2025.07"
9+
__version__ = "2025.11"

qiita_pet/handlers/api_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "2025.07"
41+
__version__ = "2025.11"
4242

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

qiita_pet/support_files/doc/source/downloading.rst

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ replace artifact-id):
8787

8888
- https://qiita.ucsd.edu/public_artifact_download/?artifact_id=artifact-id
8989

90+
9091
Access non-public artifacts without a login
9192
-------------------------------------------
9293

@@ -115,7 +116,9 @@ can be used to download BIOMs or raw data. Do not forget to replace `study-id`,
115116
- Only 16S raw data: https://qiita.ucsd.edu/public_download/?data=raw&study_id=study-id&data_type=16S
116117
- Only Metagenomic BIOMs + mapping files: https://qiita.ucsd.edu/public_download/?data=biom&study_id=study-id&data_type=Metagenomic
117118
- Only the sample information file: https://qiita.ucsd.edu/public_download/?data=sample_information&study_id=study-id
118-
- Only the preparation information file: https://qiita.ucsd.edu/public_download/?data=data=prep_information&prep_id=prep-id
119+
- Only the preparation information file: https://qiita.ucsd.edu/public_download/?data=prep_information&prep_id=prep-id
120+
- Raw data for a given preparation: https://qiita.ucsd.edu/public_download/?data=raw&prep_id=prep-id
121+
- BIOM data for a given preparation: https://qiita.ucsd.edu/public_download/?data=biom&prep_id=prep-id
119122

120123
Note that if you are downloading raw data, the owner should have made that data
121124
available by selecting "Allow Qiita users to download raw data files" in

qiita_ware/__init__.py

Lines changed: 1 addition & 1 deletion
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__ = "2025.07"
9+
__version__ = "2025.11"

setup.py

Lines changed: 1 addition & 1 deletion
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__ = "2025.07"
13+
__version__ = "2025.11"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)