Documentation ¶
Index ¶
- Constants
- func Classical(reftreefile, boottreefile string, cpus int) *tree.Tree
- func ComputeSupport(reftreefile, boottreefile string, empirical bool, cpus int, ...) *tree.Tree
- func MastLike(reftreefile, boottreefile string, empirical bool, cpus int) *tree.Tree
- func Parsimony(reftreefile, boottreefile string, empirical bool, cpus int) *tree.Tree
- type Supporter
Constants ¶
View Source
const ( STATENULL = -1 // Null state STATE0 = 0 // State 0 STATE1 = 1 // State 1 STATE01 = 2 // State 0/1 )
Variables ¶
This section is empty.
Functions ¶
func ComputeSupport ¶
Types ¶
type Supporter ¶
type Supporter interface { Init(maxdepth int, nbtips int) ExpectedRandValues(depth int) float64 ProbaDepthValue(d int, v int) float64 ComputeValue(refTree *tree.Tree, empiricalTrees []*tree.Tree, cpu int, empirical bool, edges []*tree.Edge, randEdges [][]*tree.Edge, wg *sync.WaitGroup, bootTreeChannel <-chan tree.Trees, valChan chan<- bootval, randvalChan chan<- bootval) }
Click to show internal directories.
Click to hide internal directories.