Skip to content

Commit fdb1dce

Browse files
authored
Merge pull request #3121 from antgonza/2021.07
2021.07
2 parents d076755 + f12e191 commit fdb1dce

File tree

10 files changed

+47
-9
lines changed

10 files changed

+47
-9
lines changed

CHANGELOG.md

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

3+
Version 2021.07
4+
---------------
5+
6+
* Added a new "Add Default Workflow" button to the preparation tab so we automatically add all the "recommended" steps in a preparation based on our workflows.
7+
* New Preparation Listing GUI + searching within preparation types, thank you @AmandaBirmingham!
8+
* We limit the parameters displayed to the user per command based on which have already been run successfully; for example if a preparation has already a "Trim 100" job, this option will not be shown.
9+
* Re-added Coveralls to Qiita and removed codecov.
10+
* We are limiting the number of samples in a [preparation file to 800](https://qiita.ucsd.edu/static/doc/html/faq.html#how-should-i-split-my-samples-within-preparations).
11+
* Added User.update_email which allows to update a Users email.
12+
* Fixed the following issues: [#3113](https://github.com/qiita-spots/qiita/issues/3113), and [#3079](https://github.com/qiita-spots/qiita/issues/3079).
13+
314
Version 2021.05
415
---------------
516

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ Accepted raw files
6060

6161
.. |Build Status| image:: https://github.com/qiita-spots/qiita/actions/workflows/qiita-ci.yml/badge.svg
6262
:target: https://github.com/qiita-spots/qiita/actions/workflows/qiita-ci.yml
63-
.. |Coverage Status| image:: https://coveralls.io/repos/github/qiita-spots/qiita/badge.svg?branch=master
63+
.. |Coverage Status| image:: https://coveralls.io/repos/github/qiita-spots/qiita/badge.svg?branch=dev
6464
:target: https://coveralls.io/github/qiita-spots/qiita?branch=master

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.05"
9+
__version__ = "2021.07"

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.05"
30+
__version__ = "2021.07"
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.05"
9+
__version__ = "2021.07"

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.05"
41+
__version__ = "2021.07"
4242

4343
__all__ = ['prep_template_summary_get_req', 'data_types_get_req',
4444
'study_get_req', 'sample_template_filepaths_get_req',

qiita_pet/static/js/networkVue.js

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1144,8 +1144,17 @@ Vue.component('processing-graph', {
11441144
'<td><small>Job status (circles):</small></td>' +
11451145
'<td>' + circle_statuses.join('') + '</td>' +
11461146
'<td rowspan="2" width="20px">&nbsp;</td>' +
1147-
'<td rowspan="2">' +
1147+
'<td rowspan="2">&nbsp;&nbsp;&nbsp;</td>' +
1148+
'<td rowspan="2" align="center">' +
11481149
'<a class="btn btn-success form-control" id="add-default-workflow"><span class="glyphicon glyphicon-flash"></span> Add Default Workflow</a>' +
1150+
"<br/><br/><a href='https://qiita.ucsd.edu/workflows/' target='_blank'> "+
1151+
'<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-exclamation-triangle" viewBox="0 0 16 16">' +
1152+
'<path d="M7.938 2.016A.13.13 0 0 1 8.002 2a.13.13 0 0 1 .063.016.146.146 0 0 1 .054.057l6.857 11.667c.036.06.035.124.002.183a.163.163 0 0 1-.054.06.116.116 0 0 ' +
1153+
'1-.066.017H1.146a.115.115 0 0 1-.066-.017.163.163 0 0 1-.054-.06.176.176 0 0 1 .002-.183L7.884 2.073a.147.147 0 0 1 .054-.057zm1.044-.45a1.13 1.13 0 0 0-1.96 0L.165 ' +
1154+
'13.233c-.457.778.091 1.767.98 1.767h13.713c.889 0 1.438-.99.98-1.767L8.982 1.566z"></path>' +
1155+
'<path d="M7.002 12a1 1 0 1 1 2 0 1 1 0 0 1-2 0zM7.1 5.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0L7.1 5.995z"></path>' +
1156+
'</svg>' +
1157+
" Important note about Default Workflow</a>" +
11491158
'</td>' +
11501159
'</tr>' +
11511160
'<tr>' +

qiita_pet/templates/workflows.html

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,26 @@
6363

6464
{% block content %}
6565
{% if workflows %}
66-
<h3>Recommended Workflows</h3>
66+
<h3>Recommended Default Workflows</h3>
67+
<div class="row">
68+
<div class="col-sm-10">
69+
In this page you will find our recommendations on how to processes each data type available in Qiita and the minimum processing requirements to make your data public.
70+
<br/><br/>
71+
For convenience, there is an "Add Default Workflow" button for each preparation that will add the recommended workflow steps for your raw data which then you can process.
72+
It is important to note however that some steps in this default workflow will not work with all raw data; for example, for target gene the workflow is based on the
73+
default Earth Microbiome Project protocol and so assumes the uploaded data are multiplexed sequences with the reversed barcodes in your mapping file and index sequence
74+
file (<a href="https://earthmicrobiome.org/protocols-and-standards/" target="_blank">see here</a> for more details). Thus, if the protocol does not apply to your data
75+
you can still use the Default Workflow, however, you should first manually process your data using the appropriate steps until you have a defined step; in our example,
76+
demultiplexed your reads. After demultiplexing the Default Workflow is safe to use with any protocol.
77+
<br/><br/>
78+
If you have already manually performed one of the processing steps in the Defaul Workflow pipeline, the "Add Default Workflow" button will not re-select those steps but
79+
instead will only select any remaining steps that have not been completed. You can also add additional workflows on top of the recommended Default Workflow at any time.
80+
<br/><br/>
81+
Note that this is not a full inclusive list of data types accepted by Qiita but only those that have a defined workflow.
82+
</div>
83+
</div>
6784
<h5>Hover on the spheres to get more information</h5>
85+
6886
{% for i, w in enumerate(workflows) %}
6987
<div class="row">
7088
<div class="col-sm-7" style="background-color: #DCDCDC; height: 650px" id="workflow_{{i}}"></div>

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.05"
9+
__version__ = "2021.07"

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.05"
13+
__version__ = "2021.07"
1414

1515

1616
classes = """

0 commit comments

Comments
 (0)