Package Bio :: Package Phylo :: Module PhyloXML :: Class Confidence
[hide private]
[frames] | no frames]

Class Confidence

source code

          object --+        
                   |        
BaseTree.TreeElement --+    
                       |    
            PhyloElement --+
                           |
                          Confidence

A general purpose confidence element.

For example, this can be used to express the bootstrap support value of a
clade (in which case the `type` attribute is 'bootstrap').

:Parameters:
    value : float
        confidence value
    type : string
        label for the type of confidence, e.g. 'bootstrap'

Instance Methods [hide private]
 
__init__(self, value, type='unknown')
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__float__(self) source code
 
__int__(self) source code

Inherited from BaseTree.TreeElement: __repr__, __str__

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __setattr__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, value, type='unknown')
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)