/* * SVSComplexSubstitutionModel.java * * Copyright (C) 2002-2012 Alexei Drummond, Andrew Rambaut & Marc A. 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.app.beagle.evomodel.substmodel; import dr.evomodel.substmodel.*; import dr.inference.model.*; import dr.evolution.datatype.DataType; /** * @author Marc Suchard */ public class SVSComplexSubstitutionModel extends ComplexSubstitutionModel implements Likelihood, BayesianStochasticSearchVariableSelection { public SVSComplexSubstitutionModel(String name, DataType dataType, FrequencyModel freqModel, Parameter ratesParameter, Parameter indicatorsParameter) { super(name, dataType, freqModel, ratesParameter); if (indicatorsParameter == null) { this.indicatorsParameter = new Parameter.Default(ratesParameter.getDimension(), 1.0); } else { this.indicatorsParameter = indicatorsParameter; addVariable(indicatorsParameter); } } @Override protected void setupRelativeRates(double[] rates) { for (int i = 0; i < rates.length; i++) { rates[i] = ratesParameter.getParameterValue(i) * indicatorsParameter.getParameterValue(i); } } public Parameter getIndicators() { return indicatorsParameter; } public boolean validState() { return !updateMatrix || Utils.connectedAndWellConditioned(probability,this); } protected void handleVariableChangedEvent(Variable variable, int index, Parameter.ChangeType type) { if (variable == ratesParameter && indicatorsParameter.getParameterValue(index) == 0) return; // Does not affect likelihood super.handleVariableChangedEvent(variable,index,type); } public Model getModel() { return this; } /** * Forces a complete recalculation of the likelihood next time getLikelihood is called */ public void makeDirty() { updateMatrix = true; } /** * @return A detailed name of likelihood for debugging. */ // public String prettyName() { // return "SVSComplexSubstitutionModel-connectedness"; // } @Override public boolean isUsed() { return super.isUsed() && isUsed; } public void setUsed() { isUsed = true; } private boolean isUsed = false; private double[] probability = null; private final Parameter indicatorsParameter; }