package dr.evomodelxml.tree; import dr.evolution.tree.Tree; import dr.evomodel.tree.TreeLengthStatistic; import dr.evomodel.tree.TreeModel; import dr.inference.model.Statistic; import dr.xml.*; /** */ public class TreeLengthStatisticParser extends AbstractXMLObjectParser { public static final String TREE_LENGTH_STATISTIC = "treeLengthStatistic"; public String getParserName() { return TREE_LENGTH_STATISTIC; } public Object parseXMLObject(XMLObject xo) throws XMLParseException { String name = xo.getAttribute(Statistic.NAME, xo.getId()); Tree tree = (Tree) xo.getChild(Tree.class); return new TreeLengthStatistic(name, tree); } //************************************************************************ // AbstractXMLObjectParser implementation //************************************************************************ public String getParserDescription() { return "A statistic that returns the average of the branch rates"; } public Class getReturnType() { return TreeLengthStatistic.class; } public XMLSyntaxRule[] getSyntaxRules() { return rules; } private final XMLSyntaxRule[] rules = { AttributeRule.newStringRule(Statistic.NAME, true), new ElementRule(TreeModel.class), }; }