/* * ArbitraryBranchRatesParser.java * * Copyright (c) 2002-2015 Alexei Drummond, Andrew Rambaut and Marc Suchard * * This file is part of BEAST. * See the NOTICE file distributed with this work for additional * information regarding copyright ownership and licensing. * * BEAST is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * BEAST is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with BEAST; if not, write to the * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, * Boston, MA 02110-1301 USA */ package dr.evomodelxml.branchratemodel; import dr.evomodel.branchratemodel.ArbitraryBranchRates; import dr.evomodel.tree.TreeModel; import dr.inference.model.Parameter; import dr.xml.*; import java.util.logging.Logger; /** */ public class ArbitraryBranchRatesParser extends AbstractXMLObjectParser { public static final String ARBITRARY_BRANCH_RATES = "arbitraryBranchRates"; public static final String RATES = "rates"; public static final String RECIPROCAL = "reciprocal"; public static final String EXP = "exp"; public static final String CENTER_AT_ONE = "centerAtOne"; public String getParserName() { return ARBITRARY_BRANCH_RATES; } public Object parseXMLObject(XMLObject xo) throws XMLParseException { TreeModel tree = (TreeModel) xo.getChild(TreeModel.class); XMLObject cxo = xo.getChild(RATES); Parameter rateCategoryParameter = (Parameter) cxo.getChild(Parameter.class); boolean reciprocal = xo.getAttribute(RECIPROCAL, false); boolean centerAtOne = xo.getAttribute(CENTER_AT_ONE, true); boolean exp = xo.getAttribute(EXP, false); final int numBranches = tree.getNodeCount() - 1; if (rateCategoryParameter.getDimension() != numBranches) { rateCategoryParameter.setDimension(numBranches); // throw new XMLParseException("Invalid length for '" + rateCategoryParameter.getId() + "'\n" + // "Should have length = " + numBranches); } Logger.getLogger("dr.evomodel").info("\nUsing an scaled mixture of normals model."); Logger.getLogger("dr.evomodel").info(" rates = " + rateCategoryParameter.getDimension()); Logger.getLogger("dr.evomodel").info(" NB: Make sure you have a prior on " + rateCategoryParameter.getId() + " and do not use this model in a treeLikelihood for sequence data"); Logger.getLogger("dr.evomodel").info(" reciprocal = " + reciprocal); return new ArbitraryBranchRates(tree, rateCategoryParameter, reciprocal, exp, centerAtOne); } //************************************************************************ // AbstractXMLObjectParser implementation //************************************************************************ public String getParserDescription() { return "This element returns an arbitrary rate model." + "The branch rates are drawn from an arbitrary distribution determine by the prior."; } public Class getReturnType() { return ArbitraryBranchRates.class; } public XMLSyntaxRule[] getSyntaxRules() { return rules; } private final XMLSyntaxRule[] rules = { new ElementRule(TreeModel.class), new ElementRule(RATES, Parameter.class, "The rate parameter"), AttributeRule.newBooleanRule(RECIPROCAL, true), AttributeRule.newBooleanRule(CENTER_AT_ONE, true), AttributeRule.newBooleanRule(EXP, true), }; }