Skip to content

ENH: Meta Analysis -> Analysis #1112

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 28, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Qiita
[![Build Status](https://travis-ci.org/biocore/qiita.png?branch=master)](https://travis-ci.org/biocore/qiita)
[![Coverage Status](https://coveralls.io/repos/biocore/qiita/badge.png?branch=master)](https://coveralls.io/r/biocore/qiita)

Qiita (canonically pronounced *cheetah*) is a meta-analysis environment for microbiome (and other "comparative -omics") datasets. You can find the public Qiita server at [qiita.microbio.me](http://qiita.microbio.me).
Qiita (canonically pronounced *cheetah*) is an analysis environment for microbiome (and other "comparative -omics") datasets. You can find the public Qiita server at [qiita.microbio.me](http://qiita.microbio.me).

Qiita is currently in pre-alpha status. We are very open to community contributions and feedback. If you're interested in contributing to Qiita, see [CONTRIBUTING.md](https://github.com/biocore/qiita/blob/master/CONTRIBUTING.md). If you'd like to report bugs or request features, you can do that in the [Qiita issue tracker](https://github.com/biocore/qiita/issues).

Expand Down
6 changes: 3 additions & 3 deletions qiita_db/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ def delete(cls, processed_data_id):
QiitaDBStatusError
If the processed data status is not sandbox
QiitaDBError
If the processed data has (meta)analyses
If the processed data has analyses
"""
if cls(processed_data_id).status != 'sandbox':
raise QiitaDBStatusError(
Expand All @@ -1354,8 +1354,8 @@ def delete(cls, processed_data_id):
if analyses:
raise QiitaDBError(
"Processed data %d cannot be removed because it is linked to "
"the following (meta)analysis: %s" % (processed_data_id,
', '.join(analyses)))
"the following analysis: %s" % (processed_data_id,
', '.join(analyses)))

# delete
queue = "delete_processed_data_%d" % processed_data_id
Expand Down
2 changes: 1 addition & 1 deletion qiita_pet/templates/analysis_selected.html
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ <h4 class="modal-title" id="myModalLabel">Processed Data {{pid}}</h4>
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title" id="myModalLabel">Create new meta-analysis</h4>
<h4 class="modal-title" id="myModalLabel">Create new analysis</h4>
</div>
<form role="form" action="/analysis/3" method="post">
<input type="hidden" name="action" value="create">
Expand Down
6 changes: 3 additions & 3 deletions qiita_pet/templates/sitebase.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,12 +117,12 @@
<img style="max-width:100px; margin-top: -7px;" src="/static/img/logo-clear.png">
</a>
</li>
<!-- meta-analysis menu -->
<!-- analysis menu -->
{% if user %}
<li class="dropdown">
<a href="#" data-toggle="dropdown" class="dropdown-toggle">Meta Analysis<b class="caret"></b></a>
<a href="#" data-toggle="dropdown" class="dropdown-toggle">Analysis<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/analysis/selected/">View Selected Samples</a></li>
<li><a href="/analysis/selected/">Create From Selected Samples</a></li>
<li><a href="/analysis/show/">See Previous Analyses</a></li>
</ul>
</li>
Expand Down
2 changes: 1 addition & 1 deletion qiita_ware/dispatchable.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def submit_to_VAMPS(preprocessed_data_id):

def run_analysis(analysis_id, commands, comm_opts=None,
rarefaction_depth=None, **kwargs):
"""Run a meta-analysis"""
"""Run an analysis"""
analysis = Analysis(analysis_id)
ar = RunAnalysis(**kwargs)
return ar(analysis, commands, comm_opts, rarefaction_depth)
Expand Down