Learn R Programming

admixturegraph (version 1.0.2)

agraph: Create an admixture graph object.

Description

Create an admixture graph object, an acyclic directed graph.

Usage

agraph(leaves, inner_nodes, parent_edges, admixture_proportions = extract_admixture_proportion_parameters(parent_edges))

Arguments

leaves
The names of the leaves in the admixture graph. Do not use (, ) or a single R.
inner_nodes
The name of the inner nodes in the admxture graph. Do not use (, ) or a single R except for the root if you wish.
parent_edges
The list of edges in the graph, created by parent_edges.
admixture_proportions
The list of admixture proportions; created by admixture_proportions. Do not use +, -, *, (, ).

Value

An admixture graph object.

See Also

edge

admixture_edge

admix_props

parent_edges

admixture_proportions

plot.agraph

Examples

Run this code
leaves <- c("A", "B", "C", "D")
inner_nodes <- c("ab", "b", "bc", "abc", "abcd")
edges <- parent_edges(c(edge("A", "ab"),
                        edge("B", "b"),
                        edge("C", "bc"),
                        edge("D", "abcd"),
                        edge("ab", "abc"),
                        edge("bc", "abc"),
                        edge("abc", "abcd"),
                        admixture_edge("b", "ab", "bc")))
admixtures <- admixture_proportions(c(admix_props("b", "ab", "bc", "x")))

graph <- agraph(leaves, inner_nodes, edges, admixtures)

Run the code above in your browser using DataLab