def getConsensusTrees(self, strict=False):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict)
Exemplo n.º 2
0
 def getConsensusTrees(self, strict=False, method='unrooted'):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict, method=method)
Exemplo n.º 3
0
 def getConsensusTrees(self, strict=False, method='unrooted'):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict, method=method)
Exemplo n.º 4
0
 def getConsensusTrees(self, strict=False):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict)