Skip to content

Commit 26a764b

Browse files
authored
changes for 2025.07 (#3479)
* changes for 2025.07 * self.assertEqual -> self.assertCountEqual
1 parent 061c965 commit 26a764b

File tree

9 files changed

+29
-12
lines changed

9 files changed

+29
-12
lines changed

CHANGELOG.md

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

3+
Version 2025.07
4+
---------------
5+
6+
Deployed on July 14th, 2025
7+
8+
* During EBI-ENA submissions now we automatically renmae `country` to `geographic location (country and/or sea)` and `collection_date` to `collection date`; as the ENA requirements changed.
9+
* Added platform `DNBSEQ1` and instruments: `DNBSEQ-G400`, `DNBSEQ-T7`, `DNBSEQ-G800` for EBI-ENA submissions.
10+
* Other general fixes [#3474](https://github.com/qiita-spots/qiita/pull/3474), [#3475](https://github.com/qiita-spots/qiita/pull/3475).
11+
* SPP: merged and deprecated [mg-scripts](https://github.com/qiita-spots/mg-scripts) to [qp-knight-lab-processing](https://github.com/qiita-spots/qp-knight-lab-processing).
12+
* SPP: Added integration tests via a couple of PRs: [#129](https://github.com/qiita-spots/qp-knight-lab-processing/pull/129) & [#131](https://github.com/qiita-spots/qp-knight-lab-processing/pull/131).
13+
* SPP: Added new command `Human Filter & QC existing Prep` to facilitate human-filtering existing preparations.
14+
* SPP: Cleaned and centralized sequencers information to [kl-metapool](https://github.com/biocore/kl-metapool) & added `MiSeq i100`, thank you @AmandaBirmingham.
15+
16+
17+
318
Version 2025.04
419
---------------
520

@@ -10,6 +25,7 @@ Deployed on April 11th, 2025
1025
* SPP: General updates and clean up: [#169](https://github.com/biocore/mg-scripts/pull/169), [#101](https://github.com/qiita-spots/qp-knight-lab-processing/pull/101).
1126
* `Remove SynDNA plasmid, insert, & CP026085 reads` superseded `Remove SynDNA inserts & plasmid reads`; which now removes SynDNA plasmids, inserts, and CP026085 reads, in this order.
1227

28+
1329
Version 2025.02
1430
---------------
1531

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.04"
9+
__version__ = "2025.07"

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.04"
30+
__version__ = "2025.07"
3131

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

qiita_db/test/test_user.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,12 +482,12 @@ def test_mark_messages(self):
482482
user.mark_messages([1, 2])
483483
obs = user.messages()
484484
exp = [True, True, False]
485-
self.assertEqual([x[3] for x in obs], exp)
485+
self.assertCountEqual([x[3] for x in obs], exp)
486486

487487
user.mark_messages([1], read=False)
488488
obs = user.messages()
489489
exp = [False, True, False]
490-
self.assertEqual([x[3] for x in obs], exp)
490+
self.assertCountEqual([x[3] for x in obs], exp)
491491

492492
def test_delete_messages(self):
493493
user = qdb.user.User.create('[email protected]', 'password')

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.04"
9+
__version__ = "2025.07"

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.04"
41+
__version__ = "2025.07"
4242

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

qiita_pet/templates/study_ajax/prep_summary.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -433,11 +433,12 @@ <h4>
433433
{% end %}
434434

435435
<span id="prep-name-span">{{name}}</span> - ID {{prep_id}} ({{data_type}})
436-
{% if user_level in ('admin', 'wet-lab admin') and creation_job is not None %}
437-
<a class="btn btn-default" download="{{creation_job_filename}}" href="data:text/plain;charset=utf-8,{{creation_job_filename_body}}"><span class="glyphicon glyphicon-download-alt"></span> SampleSheet</a>
438-
{% if creation_job_artifact_summary is not None %}
439-
<a class="btn btn-default" target="_blank" href="{% raw qiita_config.portal_dir %}/artifact/html_summary/{{creation_job_artifact_summary}}"><span class="glyphicon glyphicon-download-alt"></span> Creation Job Output</a>
436+
437+
{% if editable and creation_job is not None and creation_job_artifact_summary is not None %}
438+
{% if creation_job_filename != 'None' %}
439+
<a class="btn btn-default" download="{{creation_job_filename}}" href="data:text/plain;charset=utf-8,{{creation_job_filename_body}}"><span class="glyphicon glyphicon-download-alt"></span> SampleSheet</a>
440440
{% end %}
441+
<a class="btn btn-default" target="_blank" href="{% raw qiita_config.portal_dir %}/artifact/html_summary/{{creation_job_artifact_summary}}"><span class="glyphicon glyphicon-download-alt"></span> Creation Job Output</a>
441442
{% end %}
442443
<a class="btn btn-default" data-toggle="modal" data-target="#update-prep-name"><span class="glyphicon glyphicon-pencil"></span> Edit name</a>
443444
<a class="btn btn-default" href="{% raw qiita_config.portal_dir %}/download/{{download_prep_id}}"><span class="glyphicon glyphicon-download-alt"></span> Prep info</a>

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.04"
9+
__version__ = "2025.07"

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.04"
13+
__version__ = "2025.07"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)