package dr.evoxml;
import dr.evolution.util.Taxa;
import dr.evolution.util.Taxon;
import dr.evolution.util.TaxonList;
import dr.math.MathUtils;
import dr.xml.*;
import java.util.List;
/**
* @author Marc A. Suchard
*/
public class RandomSubsetTaxaParser extends AbstractXMLObjectParser {
public static final String RANDOM_SUBSET_TAXA = "randomSubsetTaxa";
public static final String COUNT = "total";
public static final String WITH_REPLACEMENT = "withReplacement";
public String getParserName() { return RANDOM_SUBSET_TAXA; }
public Object parseXMLObject(XMLObject xo) throws XMLParseException {
Taxa originalTaxa = new Taxa();
for (int i = 0; i < xo.getChildCount(); i++) {
Object child = xo.getChild(i);
if (child instanceof Taxon) {
Taxon taxon = (Taxon)child;
originalTaxa.addTaxon(taxon);
} else if (child instanceof TaxonList) {
TaxonList taxonList1 = (TaxonList)child;
for (int j = 0; j < taxonList1.getTaxonCount(); j++) {
originalTaxa.addTaxon(taxonList1.getTaxon(j));
}
} else {
throwUnrecognizedElement(xo);
}
}
List<Taxon> originalTaxonList = originalTaxa.asList();
int sampleTotal = xo.getAttribute(COUNT, originalTaxonList.size());
if (sampleTotal < 2) {
throw new XMLParseException("Must sample atleast two taxa");
}
boolean withReplacement = xo.getAttribute(WITH_REPLACEMENT, false);
Taxa sampledTaxa = new Taxa();
for (int i = 0; i < sampleTotal; i++) {
int choice = MathUtils.nextInt(originalTaxonList.size());
Taxon taxonToAdd = originalTaxonList.get(choice);
sampledTaxa.addTaxon(taxonToAdd);
if (!withReplacement) {
originalTaxonList.remove(choice);
}
}
return sampledTaxa;
}
public XMLSyntaxRule[] getSyntaxRules() { return rules; }
private final XMLSyntaxRule[] rules = {
new OrRule(
new ElementRule(Taxa.class, 1, Integer.MAX_VALUE),
new ElementRule(Taxon.class, 1, Integer.MAX_VALUE)
),
AttributeRule.newIntegerRule(COUNT),
AttributeRule.newBooleanRule(WITH_REPLACEMENT),
};
public String getParserDescription() {
return "Defines a set of taxon objects.";
}
public Class getReturnType() { return Taxa.class; }
}