package dr.evoxml;
import dr.xml.*;
import dr.evolution.tree.Tree;
import dr.evolution.alignment.Patterns;
import dr.evolution.util.Taxa;
import dr.evolution.datatype.Microsatellite;
import dr.evomodel.substmodel.MicrosatelliteModel;
import dr.evomodel.branchratemodel.BranchRateModel;
import dr.evomodel.branchratemodel.DefaultBranchRateModel;
import dr.evomodel.sitemodel.GammaSiteModel;
import dr.app.seqgen.MicrosatelliteSimulator;
/**
* @author Chieh-Hsi Wu
*
* Parser for microsatellite simulator
*
*/
public class MicrosatelliteSimulatorParser extends AbstractXMLObjectParser {
public static final String MICROSATELLITE_SIMULATOR = "microsatelliteSimulator";
public String getParserName(){
return MICROSATELLITE_SIMULATOR;
}
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
Microsatellite msatDataType = (Microsatellite)xo.getChild(Microsatellite.class);
Taxa taxa = (Taxa)xo.getChild(Taxa.class);
Tree tree = (Tree)xo.getChild(Tree.class);
MicrosatelliteModel msatModel = (MicrosatelliteModel)xo.getChild(MicrosatelliteModel.class);
BranchRateModel brModel = (BranchRateModel)xo.getChild(BranchRateModel.class);
if(brModel == null){
brModel = new DefaultBranchRateModel();
}
MicrosatelliteSimulator msatSim = new MicrosatelliteSimulator(
msatDataType,
taxa,
tree,
new GammaSiteModel(msatModel),
brModel
);
Patterns patterns = msatSim.simulateMsatPattern();
String msatPatId = xo.getAttribute("id","simMsatPat");
patterns.setId(msatPatId);
MicrosatellitePatternParser.printDetails(patterns);
MicrosatellitePatternParser.printMicrosatContent(patterns);
return patterns;
}
public XMLSyntaxRule[] getSyntaxRules() {
return new XMLSyntaxRule[]{
new ElementRule(Microsatellite.class),
new ElementRule(Taxa.class),
new ElementRule(Tree.class),
new ElementRule(MicrosatelliteModel.class),
new ElementRule(BranchRateModel.class, true)
};
}
public String getParserDescription(){
return "This parser facilliates simulation of microsatellites " +
"given a tree and infinitesimal rate model";
}
public Class getReturnType(){
return Patterns.class;
}
}