use of dr.evomodel.alloppnet.operators.AlloppSequenceReassignment in project beast-mcmc by beast-dev.
the class AlloppSequenceReassignmentParser method parseXMLObject.
@Override
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
AlloppSpeciesBindings apsp = (AlloppSpeciesBindings) xo.getChild(AlloppSpeciesBindings.class);
AlloppSpeciesNetworkModel apspnet = (AlloppSpeciesNetworkModel) xo.getChild(AlloppSpeciesNetworkModel.class);
final double weight = xo.getDoubleAttribute(MCMCOperator.WEIGHT);
return new AlloppSequenceReassignment(apspnet, apsp, weight);
}
Aggregations