Skip to content

Commit f5750ec

Browse files
authored
Merge pull request #17 from jlab/k8s_config_with_stefans_changes
K8s config with stefans changes
2 parents aa4533e + 638e420 commit f5750ec

File tree

219 files changed

+27914
-19807
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

219 files changed

+27914
-19807
lines changed

.github/workflows/qiita-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
lint:
253253
runs-on: ubuntu-latest
254254
steps:
255-
- name: flake8
255+
- name: ruff
256256
uses: actions/setup-python@v2
257257
with:
258258
python-version: "3.9"
@@ -262,5 +262,5 @@ jobs:
262262
uses: actions/checkout@v2
263263
- name: lint
264264
run: |
265-
pip install -q flake8
266-
flake8 qiita_* setup.py scripts/qiita* notebooks/*/*.py
265+
pip install -q ruff
266+
ruff check qiita_* setup.py scripts/qiita* notebooks/*/*.py

CHANGELOG.md

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

3+
4+
Version 2026.01
5+
---------------
6+
7+
Deployed on January 9th, 2026
8+
9+
* `ArtifactHandler` also returns the parents ids, if they exits; this can be used by any plugin.
10+
* `ruff` replaces `flake8`.
11+
* `build_analysis_files` now allows creation of a new `Analysis` without automatically submitting a job.
12+
* `Analysis.add_samples` now accepts new samples after creation; before it was only possible via the default_analysis.
13+
* Introduction of Qiita-wide unique identifiers for [study, prep and artifact](https://github.com/qiita-spots/qiita/pull/3499). Thank you @wasade!
14+
* New commands available in `qp-pacbio`: `PacBio adapter removal via lima/pbmarkdup`, `Woltka v0.1.7 with cov and id filter`, `Feature Table from LCG/MAG` and `Remove SynDNA plasmid, insert, & GCF_000184185 reads (minimap2)` (deployed on December 3rd, 2025); also deprecated `Woltka v0.1.7, minimap2`. [More information](https://github.com/qiita-spots/qp-pacbio).
15+
16+
17+
Version 2025.11
18+
---------------
19+
20+
Deployed on Novermber 25th, 2025
21+
22+
* 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.
23+
* 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`.
24+
* Added default workflows specific to PacBio.
25+
* Allowed default workflows to have multiple commands starting from a single input.
26+
* Now users can download public raw and biom per-preparation directly.
27+
* Initial changes for to support cloud environments via cloud specific endpoints; thank you @sjanssen2!
28+
29+
30+
Version 2025.09
31+
---------------
32+
33+
Deployed on September 11th, 2025
34+
35+
* Updated `qp-knight-lab-processing` to add support of PacBio raw data processing, including human-filtering using MOVI.
36+
* Updated fastp in local environment for `qp-knight-lab-processing` from 0.20.1 to 0.23.4.
37+
* 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.
38+
39+
340
Version 2025.07
441
---------------
542

0 commit comments

Comments
 (0)