Search in sources :

Example 1 with Nucleotide

use of beast.evolution.datatype.Nucleotide in project beast2 by CompEvol.

the class DataTypeDeEncodeTest method typestrings.

@Parameterized.Parameters
public static Collection<Object[]> typestrings() {
    Base dAa = new Aminoacid();
    Base dBi = new Binary();
    Base dIn = new IntegerData();
    Base dNt = new Nucleotide();
    Base d2C = new TwoStateCovarion();
    return Arrays.asList(new Object[][] { { dIn, "1,2,14,23,?", Arrays.asList(new Integer[] { 1, 2, 14, 23, -1 }) }, { dNt, "ACGTURYMWSKBDHVNX", Arrays.asList(new Integer[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }) }, { dBi, "01-?10", Arrays.asList(new Integer[] { 0, 1, 2, 3, 1, 0 }) }, { d2C, "01ABCD-?", Arrays.asList(new Integer[] { 0, 1, 2, 3, 4, 5, 6, 7 }) }, { dAa, "ACDEFGHIKLMNPQRSTVWY", Arrays.asList(new Integer[] { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }) } });
}
Also used : Aminoacid(beast.evolution.datatype.Aminoacid) IntegerData(beast.evolution.datatype.IntegerData) Nucleotide(beast.evolution.datatype.Nucleotide) Binary(beast.evolution.datatype.Binary) TwoStateCovarion(beast.evolution.datatype.TwoStateCovarion) Base(beast.evolution.datatype.DataType.Base)

Example 2 with Nucleotide

use of beast.evolution.datatype.Nucleotide in project beast2 by CompEvol.

the class XMLProducerTest method testObjectWithoutID.

// test_XmlExamples
@Test
public void testObjectWithoutID() {
    BEASTInterface o = new Nucleotide();
    XMLProducer producer = new XMLProducer();
    System.out.println(producer.toXML(o));
}
Also used : XMLProducer(beast.util.XMLProducer) Nucleotide(beast.evolution.datatype.Nucleotide) BEASTInterface(beast.core.BEASTInterface) Test(org.junit.Test)

Aggregations

Nucleotide (beast.evolution.datatype.Nucleotide)2 BEASTInterface (beast.core.BEASTInterface)1 Aminoacid (beast.evolution.datatype.Aminoacid)1 Binary (beast.evolution.datatype.Binary)1 Base (beast.evolution.datatype.DataType.Base)1 IntegerData (beast.evolution.datatype.IntegerData)1 TwoStateCovarion (beast.evolution.datatype.TwoStateCovarion)1 XMLProducer (beast.util.XMLProducer)1 Test (org.junit.Test)1