Skip to content

Commit 342dd55

Browse files
committed
Merge pull request #123 from squirrelo/initializing-initialize-initially
fix alpha rarefaction naming
2 parents 20c2240 + 7530837 commit 342dd55

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
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_db/test/test_job.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def test_exists_not_there(self):
5353
def test_create(self):
5454
"""Makes sure creation works as expected"""
5555
# make first job
56-
new = Job.create("18S", "Alpha Diversity",
56+
new = Job.create("18S", "Alpha Rarefaction",
5757
self.options, Analysis(1))
5858
self.assertEqual(new.id, 4)
5959
# make sure job inserted correctly

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)