/* * RandomLocalClockModelParser.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.RandomLocalClockModel; import dr.evomodel.tree.TreeModel; import dr.inference.model.Parameter; import dr.xml.*; import java.util.logging.Logger; /** */ public class RandomLocalClockModelParser extends AbstractXMLObjectParser { public static final String LOCAL_BRANCH_RATES = "randomLocalClockModel"; public static final String RATE_INDICATORS = "rateIndicator"; public static final String RATES = "rates"; public static final String CLOCK_RATE = "clockRate"; public static final String RATES_ARE_MULTIPLIERS = "ratesAreMultipliers"; public static final String THRESHOLD = "threshold"; public String getParserName() { return LOCAL_BRANCH_RATES; } public Object parseXMLObject(XMLObject xo) throws XMLParseException { TreeModel tree = (TreeModel) xo.getChild(TreeModel.class); Parameter rateIndicatorParameter = (Parameter) xo.getElementFirstChild(RATE_INDICATORS); Parameter ratesParameter = (Parameter) xo.getElementFirstChild(RATES); Parameter meanRateParameter = null; if (xo.hasChildNamed(CLOCK_RATE)) { meanRateParameter = (Parameter) xo.getElementFirstChild(CLOCK_RATE); } boolean ratesAreMultipliers = xo.getAttribute(RATES_ARE_MULTIPLIERS, false); Logger.getLogger("dr.evomodel").info("\nUsing random local clock (RLC) model."); Logger.getLogger("dr.evomodel").info(" rates at change points are parameterized to be " + (ratesAreMultipliers ? " relative to parent rates." : "independent of parent rates.")); double threshold = xo.getAttribute(THRESHOLD, Double.NaN); // NaN == binary values return new RandomLocalClockModel(tree, meanRateParameter, rateIndicatorParameter, ratesParameter, ratesAreMultipliers, threshold); } //************************************************************************ // AbstractXMLObjectParser implementation //************************************************************************ public String getParserDescription() { return "This element returns an random local clock (RLC) model." + "Each branch either has a new rate or " + "inherits the rate of the branch above it depending on the indicator vector, " + "which is itself sampled."; } public Class getReturnType() { return RandomLocalClockModel.class; } public XMLSyntaxRule[] getSyntaxRules() { return rules; } private XMLSyntaxRule[] rules = new XMLSyntaxRule[]{ new ElementRule(TreeModel.class), new ElementRule(RATE_INDICATORS, Parameter.class, "The rate change indicators parameter", false), new ElementRule(RATES, Parameter.class, "The rates parameter", false), new ElementRule(CLOCK_RATE, Parameter.class, "The mean rate across all local clocks", true), AttributeRule.newBooleanRule(RATES_ARE_MULTIPLIERS, false), AttributeRule.newDoubleRule(THRESHOLD, true), }; }