Skip to content

Commit

Permalink
v2.1.3: fixed problem with single feature columns
Browse files Browse the repository at this point in the history
  • Loading branch information
donovan-h-parks committed Jun 26, 2015
1 parent 279a083 commit 5267314
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
('.', ['README.md'])]
setup(
name='STAMP',
version='2.1.1',
version='2.1.3',
author='Donovan Parks, Rob Beiko',
author_email='[email protected]',
packages=['stamp', 'stamp.GUI'] + pluginPkgs + metagenomicPkgs,
Expand Down
4 changes: 2 additions & 2 deletions stamp/STAMP.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
__copyright__ = 'Copyright 2013'
__credits__ = ['Donovan Parks']
__license__ = 'GPL3'
__version__ = '2.1.2'
__date__ = 'June 15, 2015'
__version__ = '2.1.3'
__date__ = 'June 26, 2015'
__maintainer__ = 'Donovan Parks'
__email__ = '[email protected]'
__status__ = 'Development'
Expand Down
2 changes: 1 addition & 1 deletion stamp/plugins/samples/plots/ScatterPlot.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ def mirrorProperties(self, plotToCopy):
self.markerSize = plotToCopy.markerSize

def plot(self, profile, statsResults):
if len(profile.profileDict) <= 0:
if len(profile.profileDict) <= 1:
self.emptyAxis()
return

Expand Down
8 changes: 8 additions & 0 deletions test_case.spf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Level_1 Level_2 Level_3 S13 S18 S6 S17 S16 S33
k__Bacteria p__Proteobacteria c__Betaproteobacteria 7 2 9 2 7 6
k__Bacteria p__Proteobacteria c__Alphaproteobacteria 5 8 1 4 1 9
k__Bacteria p__OD1 c__ZB2 9 9 9 6 8 3
k__Bacteria p__Verrucomicrobia c__Verrucomicrobiae 8 9 6 1 6 8
k__Bacteria p__Proteobacteria c__Deltaproteobacteria 8 3 3 8 5 10
k__Bacteria p__WS6 c__B142 10 6 9 4 2 4
k__Bacteria p__Acidobacteria c__Acidobacteria-6 4 10 7 7 5 10
4 changes: 2 additions & 2 deletions windows/STAMP_Setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{058AA4B2-FB5A-4D89-9134-D6E06AB9E894}
AppName=STAMP
AppVerName=STAMP v2.1.2
AppVerName=STAMP v2.1.3
AppPublisher=Donovan Parks and Robert Beiko
AppPublisherURL=http://kiwi.cs.dal.ca/Software/STAMP
AppSupportURL=http://kiwi.cs.dal.ca/Software/STAMP
Expand All @@ -18,7 +18,7 @@ AllowNoIcons=yes
LicenseFile=..\dist\LICENSE.txt
InfoBeforeFile=..\dist\readme.txt
OutputDir=.\install
OutputBaseFilename=STAMP_2_1_2
OutputBaseFilename=STAMP_2_1_3
SetupIconFile=..\dist\icons\stamp.ico
Compression=lzma
SolidCompression=yes
Expand Down

0 comments on commit 5267314

Please sign in to comment.