def getConsensusTrees(self, strict=False):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict)
 def getConsensusTrees(self, strict=False, method='unrooted'):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict, method=method)
Exemple #3
0
 def getConsensusTrees(self, strict=False, method='unrooted'):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict, method=method)
 def getConsensusTrees(self, strict=False):
     if strict is None: strict = False
     return consensus.weightedMajorityRule(self, strict)