Search in sources :

Example 1 with Author

use of dr.util.Author in project beast-mcmc by beast-dev.

the class AbstractMultivariateTraitLikelihood method getCitations.

@Override
public List<Citation> getCitations() {
    List<Citation> citations = new ArrayList<Citation>();
    citations.add(CommonCitations.LEMEY_2010_PHYLOGEOGRAPHY);
    if (doAscertainmentCorrect) {
        citations.add(new Citation(new Author[] { new Author("MA", "Suchard"), new Author("J", "Novembre"), new Author("B", "von Holdt"), new Author("G", "Cybis") }, Citation.Status.IN_PREPARATION));
    }
    return citations;
}
Also used : Author(dr.util.Author) Citation(dr.util.Citation)

Example 2 with Author

use of dr.util.Author in project beast-mcmc by beast-dev.

the class GeoSpatialDistribution method getCitations.

public List<Citation> getCitations() {
    List<Citation> citationList = new ArrayList<Citation>();
    citationList.add(new Citation(new Author[] { new Author("S", "Nylinder"), new Author("P", "Lemey"), new Author("M", "de Bruyn"), new Author("MA", "Suchard"), new Author("BE", "Pfeil"), new Author("N", "Walsh"), new Author("AA", "Anderberg") }, "On the biogeography of Centipeda: a species-tree diffusion approach", 2014, "Systematic Biology", 63, 178, 191, Citation.Status.PUBLISHED));
    return citationList;
}
Also used : ArrayList(java.util.ArrayList) Author(dr.util.Author) Citation(dr.util.Citation)

Example 3 with Author

use of dr.util.Author in project beast-mcmc by beast-dev.

the class IntegratedMultivariateTraitLikelihood method getCitations.

public List<Citation> getCitations() {
    List<Citation> citationList = new ArrayList<Citation>(super.getCitations());
    citationList.add(new Citation(new Author[] { new Author("OG", "Pybus"), new Author("MA", "Suchard"), new Author("P", "Lemey"), new Author("F", "Bernadin"), new Author("A", "Rambaut"), new Author("FW", "Crawford"), new Author("RR", "Gray"), new Author("N", "Arinaminpathy"), new Author("S", "Stramer"), new Author("MP", "Busch"), new Author("E", "Delwart") }, "Unifying the spatial epidemiology and evolution of emerging epidemics", 2012, "Proceedings of the National Academy of Sciences", 109, 15066, 15071, Citation.Status.PUBLISHED));
    return citationList;
}
Also used : Author(dr.util.Author) Citation(dr.util.Citation)

Aggregations

Author (dr.util.Author)3 Citation (dr.util.Citation)3 ArrayList (java.util.ArrayList)1