Skip to content

Commit 51f3507

Browse files
committed
fix alpha rarefaction naming
1 parent a748c94 commit 51f3507

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

qiita_db/support_files/initialize.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ INSERT INTO qiita.filepath_type (filepath_type) VALUES ('raw_sequences'), ('raw_
3838
INSERT INTO qiita.checksum_algorithm (name) VALUES ('crc32');
3939

4040
-- Populate commands available
41-
INSERT INTO qiita.command (name, command) VALUES ('Summarize Taxa', 'summarize_taxa_through_plots.py'), ('Beta Diversity', 'beta_diversity_through_plots.py'), ('Alpha Diversity', 'alpha_rarefaction_through_plots.py');
41+
INSERT INTO qiita.command (name, command) VALUES ('Summarize Taxa', 'summarize_taxa_through_plots.py'), ('Beta Diversity', 'beta_diversity_through_plots.py'), ('Alpha Rarefaction', 'alpha_rarefaction.py');

qiita_pet/handlers/analysis_handlers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ def post(self):
5757
data_types = sorted(list(data_types))
5858

5959
# FIXME: Pull out from the database, see #111
60-
commands = {'16S': ['Alpha Diversity', 'Beta Diversity',
60+
commands = {'16S': ['Alpha Rarefaction', 'Beta Diversity',
6161
'Summarize Taxa'],
62-
'18S': ['Alpha Diversity', 'Beta Diversity',
62+
'18S': ['Alpha Rarefaction', 'Beta Diversity',
6363
'Summarize Taxa'],
6464
'Metabolomic': ['Summarize Taxa']}
6565

0 commit comments

Comments
 (0)