package dr.evomodelxml.sitemodel; import dr.xml.*; import dr.inference.model.CompoundParameter; import dr.inference.model.Parameter; import dr.inference.distribution.ParametricDistributionModel; import dr.evomodel.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), }; }