/*
* ACLikelihoodParser.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.clock;
import dr.oldevomodel.clock.ACLikelihood;
import dr.oldevomodel.clock.RateEvolutionLikelihood;
import dr.evomodel.tree.TreeModel;
import dr.inference.model.Parameter;
import dr.xml.*;
/**
*/
public class ACLikelihoodParser extends AbstractXMLObjectParser {
public static final String AC_LIKELIHOOD = "ACLikelihood";
public static final String VARIANCE = "variance";
public static final String SHAPE = "shape";
public static final String DISTRIBUTION = "distribution";
public String getParserName() {
return AC_LIKELIHOOD;
}
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
TreeModel tree = (TreeModel) xo.getChild(TreeModel.class);
Parameter ratesParameter = (Parameter) xo.getElementFirstChild(RateEvolutionLikelihood.RATES);
Parameter rootRate = (Parameter) xo.getElementFirstChild(RateEvolutionLikelihood.ROOTRATE);
Parameter variance = (Parameter) xo.getElementFirstChild(VARIANCE);
boolean isEpisodic = xo.getBooleanAttribute(RateEvolutionLikelihood.EPISODIC);
//Distribution distributionModel = new InverseGaussianDistribution(0,1);
//Parameter distribution = (Parameter) xo.getElementFirstChild(DISTRIBUTION);
String distribution = xo.getStringAttribute(DISTRIBUTION);
//boolean isLogSpace = xo.getAttribute(LOGSPACE, false);
//return new ACLikelihood(tree, ratesParameter, variance, rootRate, isEpisodic, isLogSpace);
return new ACLikelihood(tree, ratesParameter, variance, rootRate, isEpisodic, distribution);
}
//************************************************************************
// AbstractXMLObjectParser implementation
//************************************************************************
public String getParserDescription() {
return
"This element returns an object that can calculate the likelihood " +
"of rate changes in a tree under the assumption of " +
"distributed rate changes among lineages. " +
//"(log)normally distributed rate changes among lineages. " +
"Specifically, each branch is assumed to draw a rate from a " +
"distribution with mean of the rate in the " +
//"(log)normal distribution with mean of the rate in the " +
"parent branch and the given standard deviation (the variance can be optionally proportional to " +
"branch length).";
}
public Class getReturnType() {
return ACLikelihood.class;
}
public XMLSyntaxRule[] getSyntaxRules() {
return rules;
}
private XMLSyntaxRule[] rules = new XMLSyntaxRule[]{
new ElementRule(TreeModel.class),
new ElementRule(RateEvolutionLikelihood.RATES, Parameter.class, "The branch rates parameter", false),
AttributeRule.newBooleanRule(RateEvolutionLikelihood.EPISODIC, false, "true if model is branch length independent, false if length-dependent."),
AttributeRule.newStringRule(DISTRIBUTION, false, "The distribution to use"),
//AttributeRule.newBooleanRule(LOGSPACE, true, "true if model considers the log of the rates."),
new ElementRule(RateEvolutionLikelihood.ROOTRATE, Parameter.class, "The root rate parameter"),
new ElementRule(VARIANCE, Parameter.class, "The standard deviation of the distribution"),
//new ElementRule(VARIANCE, Parameter.class, "The standard deviation of the (log)normal distribution"),
//new ElementRule(DISTRIBUTION, Parameter.class, "The distribution to use"),
//new ElementRule(DISTRIBUTION, ParametricDistributionModel.class, "The distribution model for rates among branches", false),
};
}