Skip to content

Commit 5267314

Browse files
v2.1.3: fixed problem with single feature columns
1 parent 279a083 commit 5267314

File tree

5 files changed

+14
-6
lines changed

5 files changed

+14
-6
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
('.', ['README.md'])]
3838
setup(
3939
name='STAMP',
40-
version='2.1.1',
40+
version='2.1.3',
4141
author='Donovan Parks, Rob Beiko',
4242
author_email='[email protected]',
4343
packages=['stamp', 'stamp.GUI'] + pluginPkgs + metagenomicPkgs,

stamp/STAMP.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
__copyright__ = 'Copyright 2013'
2424
__credits__ = ['Donovan Parks']
2525
__license__ = 'GPL3'
26-
__version__ = '2.1.2'
27-
__date__ = 'June 15, 2015'
26+
__version__ = '2.1.3'
27+
__date__ = 'June 26, 2015'
2828
__maintainer__ = 'Donovan Parks'
2929
__email__ = '[email protected]'
3030
__status__ = 'Development'

stamp/plugins/samples/plots/ScatterPlot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def mirrorProperties(self, plotToCopy):
7272
self.markerSize = plotToCopy.markerSize
7373

7474
def plot(self, profile, statsResults):
75-
if len(profile.profileDict) <= 0:
75+
if len(profile.profileDict) <= 1:
7676
self.emptyAxis()
7777
return
7878

test_case.spf

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Level_1 Level_2 Level_3 S13 S18 S6 S17 S16 S33
2+
k__Bacteria p__Proteobacteria c__Betaproteobacteria 7 2 9 2 7 6
3+
k__Bacteria p__Proteobacteria c__Alphaproteobacteria 5 8 1 4 1 9
4+
k__Bacteria p__OD1 c__ZB2 9 9 9 6 8 3
5+
k__Bacteria p__Verrucomicrobia c__Verrucomicrobiae 8 9 6 1 6 8
6+
k__Bacteria p__Proteobacteria c__Deltaproteobacteria 8 3 3 8 5 10
7+
k__Bacteria p__WS6 c__B142 10 6 9 4 2 4
8+
k__Bacteria p__Acidobacteria c__Acidobacteria-6 4 10 7 7 5 10

windows/STAMP_Setup.iss

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
88
AppId={{058AA4B2-FB5A-4D89-9134-D6E06AB9E894}
99
AppName=STAMP
10-
AppVerName=STAMP v2.1.2
10+
AppVerName=STAMP v2.1.3
1111
AppPublisher=Donovan Parks and Robert Beiko
1212
AppPublisherURL=http://kiwi.cs.dal.ca/Software/STAMP
1313
AppSupportURL=http://kiwi.cs.dal.ca/Software/STAMP
@@ -18,7 +18,7 @@ AllowNoIcons=yes
1818
LicenseFile=..\dist\LICENSE.txt
1919
InfoBeforeFile=..\dist\readme.txt
2020
OutputDir=.\install
21-
OutputBaseFilename=STAMP_2_1_2
21+
OutputBaseFilename=STAMP_2_1_3
2222
SetupIconFile=..\dist\icons\stamp.ico
2323
Compression=lzma
2424
SolidCompression=yes

0 commit comments

Comments
 (0)