Skip to content

Commit e9f6190

Browse files
authored
2021.03 (#3084)
* 2021.03 * add Command.processing_jobs to changelog * codecov * codecov required * codecov token
1 parent 8e6d250 commit e9f6190

File tree

13 files changed

+35
-19
lines changed

13 files changed

+35
-19
lines changed

.github/workflows/qiita-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@ jobs:
187187
188188
- uses: codecov/codecov-action@v1
189189
with:
190+
token: ${{ secrets.CODECOV_TOKEN }}
190191
file: codecov.yml
191-
fail_ci_if_error: true
192192

193193
lint:
194194
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
# Qiita changelog
22

33

4+
Version 2021.03
5+
---------------
6+
7+
* Fixed [issue](https://github.com/qiita-spots/qtp-target-gene/issues/32) that left behind non gz per sample FASTQ files.
8+
* [Recommended Workflows](https://qiita-rc.ucsd.edu/workflows/) are now stored in the database.
9+
* Added a new button only for owners and admins within the Study page to display a list of all the Analyses generated with that study; helpful to clean up Studies and for general information.
10+
* The Qiita CI now runs as [GitHub Actions](https://github.com/qiita-spots/qiita/actions); moving away from Travis CI.
11+
* Prep information file object now stores its creation and modification timestamps.
12+
* Improved creation time for all information files via the to_dataframe() method.
13+
* Split the "other" category of the storage stats plot (https://qiita.ucsd.edu/stats/) into "other" and "biom" so biom can be its own category.
14+
* Added a processing_jobs property to qiita_db.software.Command to easily retrieve all jobs in the system that have ran the given command.
15+
* Fixed the following issues: [#3068](https://github.com/qiita-spots/qiita/issues/3068), [#3072](https://github.com/qiita-spots/qiita/issues/3072), [#3076](https://github.com/qiita-spots/qiita/issues/3076), and [#3070](https://github.com/qiita-spots/qiita/issues/3070).
16+
417
Version 2021.01
518
---------------
619

codecov.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
11
ignore:
2-
- "qiita_db/support_files/**/*"
2+
- "qiita_db/support_files/**/*"
3+
4+
codecov:
5+
max_report_age: off
6+
require_ci_to_pass: yes

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__ = "2021.01"
9+
__version__ = "2021.03"

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__ = "2021.01"
30+
__version__ = "2021.03"
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__ = "2021.01"
9+
__version__ = "2021.03"

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__ = "2021.01"
41+
__version__ = "2021.03"
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/checklist-for-ebi-ena-submission.rst

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
.. role:: red
22

3-
Send data to EBI-ENA
4-
====================
3+
Making data Public in Qiita and/or send data to EBI-ENA
4+
=======================================================
55

66
Qiita allows users to deposit their study, sample, experiment and sequence data to the
77
`European Nucleotide Archive (ENA) <https://www.ebi.ac.uk/ena>`__, which is the permanent data
88
repository of the `European Bioinformatics Institute (EBI) <https://www.ebi.ac.uk/>`__. Submitting to
99
this repository will provide you with a unique identifier for your study, which is generally a
1010
requirement for publications. Your study will be housed with all other Qiita submissions
11-
and so we require adherence to the `MiXs standard <http://gensc.org/mixs/>`__.
11+
and so we require adherence to the `MiXs standard <http://gensc.org/mixs/>`__. Note that this also
12+
applies for studies in sandbox state that will become private or public.
13+
14+
.. warning::
15+
direct BIOM uploads cannot become private or public
1216

1317
`Here <https://knightlab.ucsd.edu/wordpress/wp-content/uploads/2016/04/QiitaTemplate_20181218.xlsx>`__ you will find a document outlining these requirements, with examples, when possible.
1418

qiita_pet/support_files/doc/source/faq.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,8 @@ To correct this issue, simply add a column to your preparation information file
209209
"run_prefix". In this column, add the sample names from your BIOM table that matches the sample
210210
names listed in the sample_name column in your preparation information file.
211211

212+
As a reminder, direct BIOM uploads cannot become public in the system.
213+
212214

213215
What's a Qiita Artifact?
214216
------------------------

qiita_pet/support_files/doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ Looking for information about getting started? Please see the document here:
2626
.. toctree::
2727

2828
gettingstartedguide/index.rst
29+
qiita-philosophy/index.rst
2930
qiimp.rst
3031

3132
Looking for information about how to process your data? Please see the document here:
@@ -73,6 +74,5 @@ If you intend to deploy or develop Qiita we recommend that you have a look at th
7374

7475
.. toctree::
7576

76-
qiita-philosophy/index.rst
7777
admin/index.rst
7878
dev/index.rst

qiita_pet/support_files/doc/source/qiita-philosophy/index.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,6 @@ system, from raw sequence to contingency tables or even data visualizations,
1515
permits the system to store any kind of data but also define within each
1616
pipelines which commands and parameters can applied to them.
1717

18-
The current plugins available are:
19-
20-
* Target gene processing via `QIIME <http://qiime.org>`__: sequence
21-
demultiplexing, and QC of SFF, fasta/qual, fastq and per sample fastq.
22-
Closed reference OTU picking.
23-
* BIOM table analysis via `QIIME2 <http://qiime2.org>`__: rarefaction, filtering, alpha diversity, beta diversity, alpha correlation, beta correlation, and principal coordinate analysis
24-
2518
A Study
2619
-------
2720

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__ = "2021.01"
9+
__version__ = "2021.03"

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__ = "2021.01"
13+
__version__ = "2021.03"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)