gengraph generates graphs based on genetic
distances, so that pairs of entities (individuals or populations) are
connected if and only if they are distant by less than a given
threshold distance. Graph algorithms and classes from the
igraph package are used.
gengraph is a generic function with methods for the
following types of objects:
- matrix (only numeric data)
- dist
- genind objects (genetic markers, individuals)
- genpop objects (genetic markers, populations)
- DNAbin objects (DNA sequences)gengraph(x, ...)## S3 method for class 'matrix':
gengraph(x, cutoff=NULL, ngrp=NULL, computeAll=FALSE,
plot=TRUE, show.graph=TRUE, col.pal=funky, truenames=TRUE,
nbreaks=10, \dots)
## S3 method for class 'dist':
gengraph(x, cutoff=NULL, ngrp=NULL, computeAll=FALSE,
plot=TRUE, show.graph=TRUE, col.pal=funky, truenames=TRUE,
nbreaks=10, \dots)
## S3 method for class 'genind':
gengraph(x, cutoff=NULL, ngrp=NULL, computeAll=FALSE,
plot=TRUE, show.graph=TRUE, col.pal=funky, truenames=TRUE,
nbreaks=10, \dots)
## S3 method for class 'genpop':
gengraph(x, cutoff=NULL, ngrp=NULL, computeAll=FALSE,
plot=TRUE, show.graph=TRUE, col.pal=funky, method=1,
truenames=TRUE, nbreaks=10, \dots)
## S3 method for class 'DNAbin':
gengraph(x, cutoff=NULL, ngrp=NULL, computeAll=FALSE,
plot=TRUE, show.graph=TRUE, col.pal=funky, truenames=TRUE,
nbreaks=10, \dots)
matrix, dist, genind ,
genpop , or DNAbin object. For
matrix and dist, the object represents pairwise
numeric value indicating the cutoff point,
i.e. the distance at which two entities are no longer connected in
the garph produced by the method.integer indicating the number of groups to be
looked for. A message is issued if this exact number could not be found.logical stating whether to investigate
solutions for every (integer) cutoff point; defaults to FALSE.logical indicating whether plots should be drawn;
defaults to TRUE; this operation can take time for large, highly-connected graphs.logical indicating whether the found graph
should be drawn, only used in the interactive mode; this operation
can take time for large, highly-connected graphs; defaults to FALSE.integer ranging from 1 to 6 indicating the
type of method to be used to derive a matrix of pairwise distances
between populations; values from 1 to 5 are passed to the function
dist.genpop; other values are not supgengraph is a list with the following
components:igraph.$membership:
an integer giving group membership; $csize: the size of each
cluster; $no: the number of clustersigraph package.dat <- haploGen()
res <- gengraph(dat$seq, ngrp=1)
plot(res$graph)Run the code above in your browser using DataLab