Skip to content

Commit

Permalink
Merge pull request #448 from ElDeveloper/issue-447
Browse files Browse the repository at this point in the history
BUG: Remove misleading QIIME version
  • Loading branch information
antgonza committed Feb 18, 2016
2 parents 2ed99e2 + e340494 commit 55bc1bf
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Emperor 0.9.51-dev (changes since Emperor 0.9.5 go here)
* Fix problem where `make_emperor.py` would attempt to parse `Icon?` files when a directory was passed via the `-i` option ([#323](https://github.com/biocore/emperor/issues/323)).
* Fix bug where Emperor would try to animate trajectories with a single timepoint i.e. a single unique value in the gradient category.
* Fix bug where the output saved to `--biplot_fp` would list the principal coordinate axes starting at zero instead of one ([#389](https://github.com/biocore/emperor/issues/389)).
* Remove misleading "QIIME version" from `index.html` ([#447](https://github.com/biocore/emperor/issues/447)).

### Miscellaneous

Expand Down
2 changes: 0 additions & 2 deletions emperor/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
from emperor.qiime_backports.filter import (
sample_ids_from_metadata_description)
from emperor.qiime_backports.util import MetadataMap
from emperor.qiime_backports import __version__ as qiime_backports_version


class EmperorLogicError(ValueError):
Expand Down Expand Up @@ -569,7 +568,6 @@ def format_emperor_autograph(metadata_fp, coords_fp, language='HTML'):

# add library version and SHA-1 if available
autograph.append('Emperor Version: %s' % get_emperor_library_version())
autograph.append('QIIME Version: %s' % qiime_backports_version)
autograph.append('HostName: %s' % gethostname())

# full path to input files
Expand Down
4 changes: 0 additions & 4 deletions tests/test_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,6 @@ def test_format_emperor_autograph(self):
self.assertTrue('HostName:' in autograph)
self.assertTrue("Command:" in autograph)
self.assertTrue("Emperor Version: " in autograph)
self.assertTrue("QIIME Version: " in autograph)
self.assertTrue("Command executed on " in autograph)

autograph = format_emperor_autograph('mapping_file.txt',
Expand All @@ -352,7 +351,6 @@ def test_format_emperor_autograph(self):
self.assertTrue('HostName:' in autograph)
self.assertTrue("Command:" in autograph)
self.assertTrue("Emperor Version: " in autograph)
self.assertTrue("QIIME Version: " in autograph)
self.assertTrue("Command executed on " in autograph)

autograph = format_emperor_autograph('mapping_file.txt',
Expand All @@ -368,7 +366,6 @@ def test_format_emperor_autograph(self):
self.assertTrue('HostName:' in autograph)
self.assertTrue("Command:" in autograph)
self.assertTrue("Emperor Version: " in autograph)
self.assertTrue("QIIME Version: " in autograph)
self.assertTrue("Command executed on " in autograph)

autograph = format_emperor_autograph('mapping_file.txt',
Expand All @@ -384,7 +381,6 @@ def test_format_emperor_autograph(self):
self.assertTrue('HostName:' in autograph)
self.assertTrue("Command:" in autograph)
self.assertTrue("Emperor Version: " in autograph)
self.assertTrue("QIIME Version: " in autograph)
self.assertTrue("Command executed on " in autograph)

# haskell and cobol are ... not supported
Expand Down

0 comments on commit 55bc1bf

Please sign in to comment.