Skip to content

Commit 90fdc92

Browse files
committed
addressing @charles-cowart comments
1 parent 2ed031e commit 90fdc92

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
Version 2022.07
44
---------------
55

6-
* User can opt-in to get emails when their jobs change status in their User Information preferences.
6+
* Users can opt-in to get emails when their jobs change status in their User Information preferences.
77
* Added BIOM artifact archiving to the system; this unlinks artifacts from the main processing but leaves them in the system in case they are needed in the future.
88
* Added [qiime2.2022.02](https://github.com/qiita-spots/qp-qiime2/pull/68) to the system; which updated these plugins: qp-qiime2, qtp-biom, qtp-diversity, qtp-visualization
9-
* Users can now select multiple artifacts for analysis [qp-qiime2](https://github.com/qiita-spots/qp-qiime2/pull/69), which gives access to new commands like Procrustes analysis.
9+
* Users can now select multiple artifacts for analysis [qp-qiime2](https://github.com/qiita-spots/qp-qiime2/pull/69), which gives access to new commands like PCoA biplots.
1010
* [qtp-sequencing](https://github.com/qiita-spots/qtp-sequencing/pull/41/files) now uses fqtools to count the number of sequences in fastq/fastq.gz files as part as the artifact summary.
1111
* Artifact summaries can now be updated [qiita-spots #3205](https://github.com/qiita-spots/qiita/pull/3205).
1212
* Added to the internal (Sequence Processing Pipeline)[https://github.com/qiita-spots/qp-knight-lab-processing] the CHM13 genome so human studies are now filtered by GRCh38 genome + PhiX and CHM13 genome.

qiita_db/processing_job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -784,7 +784,7 @@ def _set_status(self, value, error_msg=None):
784784
new_status = qdb.util.convert_to_id(
785785
value, "processing_job_status")
786786

787-
if value not in ('waiting'):
787+
if value not in {'waiting'}:
788788
if self.user.info['receive_processing_job_emails']:
789789
# skip if software is artifact definition
790790
ignore_software = ('artifact definition', )

0 commit comments

Comments
 (0)