/* * SampleQuantileLociRatesParser.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.oldevomodelxml.sitemodel; import dr.xml.*; import dr.inference.model.CompoundParameter; import dr.inference.model.Parameter; import dr.inference.distribution.ParametricDistributionModel; import dr.oldevomodel.sitemodel.SampleQuantileLociRates; import dr.evomodel.branchratemodel.DiscretizedBranchRates; import java.util.logging.Logger; /** * @author Chieh-Hsi Wu * Parser of SampleQuantileLociRates */ public class SampleQuantileLociRatesParser extends AbstractXMLObjectParser{ public static final String SAMPLE_QUANTILE_LOCI_RATES = "SampleQuantileLociRates"; public static final String NORMALIZE = "normalize"; public static final String NORMALIZE_MEAN_LOCI_RATE_TO = "normalizeMeanLociRateTo"; public static final String RATE_QUANTILES = "rateQuantiles"; public static final String LOCI_RATES = "lociRates"; public static final String DISTRIBUTION = "distribution"; public String getParserName(){ return SAMPLE_QUANTILE_LOCI_RATES; } public Object parseXMLObject(XMLObject xo) throws XMLParseException { final boolean normalize = xo.getAttribute(NORMALIZE, false); final double normalizeBranchRateTo = xo.getAttribute(NORMALIZE_MEAN_LOCI_RATE_TO, Double.NaN); CompoundParameter lociRates = (CompoundParameter) xo.getElementFirstChild(LOCI_RATES); Parameter rateQuantilesParameter = (Parameter) xo.getElementFirstChild(RATE_QUANTILES); ParametricDistributionModel distributionModel = (ParametricDistributionModel) xo.getElementFirstChild(DISTRIBUTION); Logger.getLogger("dr.evomodel").info("Using sample quantile loci rates model."); Logger.getLogger("dr.evomodel").info(" parametric model = " + distributionModel.getModelName()); if(normalize) { Logger.getLogger("dr.evomodel").info(" mean rate is normalized to " + normalizeBranchRateTo); } return new SampleQuantileLociRates( lociRates, rateQuantilesParameter, distributionModel, normalize, normalizeBranchRateTo); } //************************************************************************ // AbstractXMLObjectParser implementation //************************************************************************ public String getParserDescription() { return "This element returns an discretized loci rate model." + "The loci rates are drawn from a discretized parametric distribution."; } public Class getReturnType() { return DiscretizedBranchRates.class; } public XMLSyntaxRule[] getSyntaxRules() { return rules; } private final XMLSyntaxRule[] rules = { AttributeRule.newBooleanRule(NORMALIZE, true, "Whether the mean rate has to be normalized to a particular value"), AttributeRule.newDoubleRule(NORMALIZE_MEAN_LOCI_RATE_TO, true, "The mean rate to normalize to, if normalizing"), new ElementRule(LOCI_RATES, CompoundParameter.class, "The compound parameter that contains all the loci rate parameters", false), new ElementRule(DISTRIBUTION, ParametricDistributionModel.class, "The distribution model for rates among branches", false), new ElementRule(RATE_QUANTILES, Parameter.class, "The rate quantiles parameter", false), }; }