Skip to content

Commit 25237a5

Browse files
authored
Doc improvements (qiita-spots#3437)
* doc improvemnts * doc improvements * METAGENOMICS -> Metagenomics * 2024.10 * scp -O
1 parent 49e4c1a commit 25237a5

File tree

11 files changed

+25
-17
lines changed

11 files changed

+25
-17
lines changed

.github/workflows/qiita-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
echo "Connecting as $USER@localhost"
180180
# this line (and the -o StrictHostKeyChecking=no) is so the server
181181
# is added to the list of known servers
182-
scp -o StrictHostKeyChecking=no -i $PWD/qiita_ware/test/test_data/test_key $USER@localhost:/home/runner/work/qiita/qiita/qiita_ware/test/test_data/random_key /home/runner/work/qiita/qiita/qiita_ware/test/test_data/random_key_copy_1
182+
scp -O -o StrictHostKeyChecking=no -i $PWD/qiita_ware/test/test_data/test_key $USER@localhost:/home/runner/work/qiita/qiita/qiita_ware/test/test_data/random_key /home/runner/work/qiita/qiita/qiita_ware/test/test_data/random_key_copy_1
183183
184184
- name: Main tests
185185
shell: bash -l {0}

CHANGELOG.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,19 @@
11
# Qiita changelog
22

3-
Version 2024.09
3+
Version 2024.10
44
---------------
55

6-
Deployed on September 23rd, 2024
6+
Deployed on October 14th, 2024
77

88
* Added update_resource_allocation_redis and companion code, so resource allocations summaries are available for review. Thank you @Gossty!
99
* Now is possible to have default workflows with only one step.
1010
* `qiita_client.update_job_step` now accepts an ignore_error optional parameter. Thank you @charles-cowart!
1111
* Initial changes in `qiita_client` to have more accurate variable names: `QIITA_SERVER_CERT` -> `QIITA_ROOTCA_CERT`. Thank you @charles-cowart!
1212
* Added `get_artifact_html_summary` to `qiita_client` to retrieve the summary file of an artifact.
1313
* Re-added github actions to `https://github.com/qiita-spots/qiita_client`.
14-
* `Woltka v0.1.6, paired-end` superseded `Woltka v0.1.6` in `qp-woltka`; [more information](https://qiita.ucsd.edu/static/doc/html/processingdata/woltka_pairedend.html). Thank you to @qiyunzhu for the benchmarks!
14+
* `SortMeRNA v4.3.7` superseded `Sortmerna v2.1b`, which relies on Silva 138 and now produced even mates. Thank you @ekopylova and @biocodz for the support.
15+
* `Remove SynDNA reads` superseded `SynDNA Woltka`, which now generates even mates.
16+
* `Woltka v0.1.7, paired-end` superseded `Woltka v0.1.6` in `qp-woltka`; [more information](https://qiita.ucsd.edu/static/doc/html/processingdata/woltka_pairedend.html). Thank you to @qiyunzhu for the benchmarks!
1517
* Other general fixes, like [#3424](https://github.com/qiita-spots/qiita/pull/3424), [#3425](https://github.com/qiita-spots/qiita/pull/3425).
1618

1719

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__ = "2024.09"
9+
__version__ = "2024.10"

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__ = "2024.09"
30+
__version__ = "2024.10"
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__ = "2024.09"
9+
__version__ = "2024.10"

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__ = "2024.09"
41+
__version__ = "2024.10"
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/faq.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,13 +414,18 @@ Are you planning a workshop or class?
414414
-------------------------------------------------------------------
415415

416416
We encourage users to use Qiita for their classes and/or workshops and to facilitate processing
417-
we urge users to request a special reservation in the system. A reservation should help your
417+
we urge them to request a special reservation in the system. A reservation should help your
418418
and your participant jobs to move quicker in the system. If you are interested, please send us
419419
an email to qiita.help@gmail.com and add the name of your workshop/course, the number of
420420
participants, the expected days this will happen. Note that reservations are only available for
421421
analysis and not for sequencing processing, and that the reservation can be added/edited during
422422
the creation of the analysis or at any point within each individual analysis page.
423423

424+
You can add the reservation string to the analysis at the time of creation (bottom of the creation
425+
page), or the analysis page via the reservation button (top right). Note that once the reservation
426+
time finishes, your jobs will fail as the reservation will no longer exist so you will need to
427+
remove it - we suggest doing this before submitting new jobs.
428+
424429
How to cite Qiita?
425430
------------------
426431

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__ = "2024.09"
9+
__version__ = "2024.10"

qiita_ware/ebi.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ class EBISubmission(object):
110110
'ILLUMINA MISEQ',
111111
'ILLUMINA MINISEQ',
112112
'ILLUMINA NOVASEQ 6000',
113+
'ILLUMINA NOVASEQ X',
113114
'NEXTSEQ 500',
114115
'NEXTSEQ 550',
115116
'UNSPECIFIED'],
@@ -539,7 +540,7 @@ def generate_experiment_xml(self, samples=None):
539540
library_name.text = self._get_library_name(sample_name)
540541

541542
lg = ET.SubElement(library_descriptor, 'LIBRARY_STRATEGY')
542-
lg.text = escape(clean_whitespace(library_strategy.upper()))
543+
lg.text = escape(clean_whitespace(library_strategy))
543544

544545
# hardcoding some values,
545546
# see https://github.com/biocore/qiita/issues/1485

qiita_ware/test/test_ebi.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ def test_parse_EBI_reply(self):
13581358
%(study_id)s.Sample1" />
13591359
<LIBRARY_DESCRIPTOR>
13601360
<LIBRARY_NAME>%(study_id)s.Sample1</LIBRARY_NAME>
1361-
<LIBRARY_STRATEGY>METAGENOMICS</LIBRARY_STRATEGY>
1361+
<LIBRARY_STRATEGY>Metagenomics</LIBRARY_STRATEGY>
13621362
<LIBRARY_SOURCE>METAGENOMIC</LIBRARY_SOURCE>
13631363
<LIBRARY_SELECTION>PCR</LIBRARY_SELECTION>
13641364
<LIBRARY_LAYOUT><SINGLE /></LIBRARY_LAYOUT>
@@ -1393,7 +1393,7 @@ def test_parse_EBI_reply(self):
13931393
%(study_id)s.Sample2" />
13941394
<LIBRARY_DESCRIPTOR>
13951395
<LIBRARY_NAME>%(study_id)s.Sample2</LIBRARY_NAME>
1396-
<LIBRARY_STRATEGY>METAGENOMICS</LIBRARY_STRATEGY>
1396+
<LIBRARY_STRATEGY>Metagenomics</LIBRARY_STRATEGY>
13971397
<LIBRARY_SOURCE>METAGENOMIC</LIBRARY_SOURCE>
13981398
<LIBRARY_SELECTION>PCR</LIBRARY_SELECTION>
13991399
<LIBRARY_LAYOUT><SINGLE /></LIBRARY_LAYOUT>
@@ -1428,7 +1428,7 @@ def test_parse_EBI_reply(self):
14281428
%(study_id)s.Sample3" />
14291429
<LIBRARY_DESCRIPTOR>
14301430
<LIBRARY_NAME>%(study_id)s.Sample3</LIBRARY_NAME>
1431-
<LIBRARY_STRATEGY>METAGENOMICS</LIBRARY_STRATEGY>
1431+
<LIBRARY_STRATEGY>Metagenomics</LIBRARY_STRATEGY>
14321432
<LIBRARY_SOURCE>METAGENOMIC</LIBRARY_SOURCE>
14331433
<LIBRARY_SELECTION>PCR</LIBRARY_SELECTION>
14341434
<LIBRARY_LAYOUT><SINGLE /></LIBRARY_LAYOUT>
@@ -1469,7 +1469,7 @@ def test_parse_EBI_reply(self):
14691469
<SAMPLE_DESCRIPTOR accession="ERS000008" />
14701470
<LIBRARY_DESCRIPTOR>
14711471
<LIBRARY_NAME>1.SKB2.640194</LIBRARY_NAME>
1472-
<LIBRARY_STRATEGY>METAGENOMICS</LIBRARY_STRATEGY>
1472+
<LIBRARY_STRATEGY>Metagenomics</LIBRARY_STRATEGY>
14731473
<LIBRARY_SOURCE>METAGENOMIC</LIBRARY_SOURCE>
14741474
<LIBRARY_SELECTION>PCR</LIBRARY_SELECTION>
14751475
<LIBRARY_LAYOUT><SINGLE /></LIBRARY_LAYOUT>
@@ -1558,7 +1558,7 @@ def test_parse_EBI_reply(self):
15581558
<SAMPLE_DESCRIPTOR accession="ERS000024" />
15591559
<LIBRARY_DESCRIPTOR>
15601560
<LIBRARY_NAME>1.SKB3.640195</LIBRARY_NAME>
1561-
<LIBRARY_STRATEGY>METAGENOMICS</LIBRARY_STRATEGY>
1561+
<LIBRARY_STRATEGY>Metagenomics</LIBRARY_STRATEGY>
15621562
<LIBRARY_SOURCE>METAGENOMIC</LIBRARY_SOURCE>
15631563
<LIBRARY_SELECTION>PCR</LIBRARY_SELECTION>
15641564
<LIBRARY_LAYOUT><SINGLE /></LIBRARY_LAYOUT>

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__ = "2024.09"
13+
__version__ = "2024.10"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)