~ubuntu-branches/ubuntu/trusty/qiime/trusty

« back to all changes in this revision

Viewing changes to tests/test_transform_coordinate_matrices.py

  • Committer: Package Import Robot
  • Author(s): Andreas Tille
  • Date: 2013-06-17 18:28:26 UTC
  • mfrom: (9.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20130617182826-376az5ad080a0sfe
Tags: 1.7.0+dfsg-1
Upload preparations done for BioLinux to Debian

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
__copyright__ = "Copyright 2011, The QIIME Project"
7
7
__credits__ = ["Greg Caporaso"]
8
8
__license__ = "GPL"
9
 
__version__ = "1.5.0"
 
9
__version__ = "1.7.0"
10
10
__maintainer__ = "Greg Caporaso"
11
11
__email__ = "gregcaporaso@gmail.com"
12
12
__status__ = "Release"
161
161
            self.assertTrue('S3' in a)
162
162
            self.assertTrue('S0' not in a)
163
163
            self.assertTrue('S4' not in a)
 
164
 
 
165
    def test_get_procrustes_results_no_sample_overlap(self):
 
166
        """ValueError raised on no overlapping sample ids"""
 
167
        self.assertRaises(ValueError,get_procrustes_results,self.pcoa1_f,self.pcoa3_f,\
 
168
         sample_id_map=None,randomize=None,max_dimensions=None)
 
169
 
164
170
        
165
171
        
166
172
    def test_procrustes_monte_carlo(self):