Skip to content

Commit d7f070e

Browse files
committed
doc improvements
1 parent 889785f commit d7f070e

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
Version 2024.09
44
---------------
55

6-
Deployed on September 23rd, 2024
6+
Deployed on Octuber 2nd, 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+
* `Woltka v0.1.6, paired-end` superseded `Woltka v0.1.4` in `qp-woltka`; [more information](https://qiita.ucsd.edu/static/doc/html/processingdata/woltka_pairedend.html). Thank you to @qiyunzhu for the benchmarks!
1515
* Other general fixes, like [#3424](https://github.com/qiita-spots/qiita/pull/3424), [#3425](https://github.com/qiita-spots/qiita/pull/3425).
1616

1717

qiita_pet/support_files/doc/source/faq.rst

+6-1
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 [email protected] 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 finished, 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/ebi.py

+2-1
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

0 commit comments

Comments
 (0)