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