WARNING: UTILITY SCRIPTS ARE FOR INTERNAL USE ONLY AND SHOULD NOT BE USED BY END USERS AS THEIR USE OUT OF CONTEXT COULD LEAD TO UNPREDICTABLE OUTCOMES.
utils.dist.binary(
x,
method = "simple",
scale = FALSE,
swap = FALSE,
type = "dist",
verbose = NULL
)
An object of class 'dist' or 'matrix' giving distances between individuals
Name of the genlight containing the genotypes [required].
Specify distance measure [default simple].
If TRUE and method='euclidean', the distance will be scaled to fall in the range [0,1] [default FALSE].
If TRUE and working with presence-absence data, then presence (no disrupting mutation) is scored as 0 and absence (presence of a disrupting mutation) is scored as 1 [default FALSE].
Specify the format and class of the object to be returned, dist for N11 object of class dist, matrix for an object of class matrix [default "dist"].
Verbosity: 0, silent or fatal errors; 1, begin and end; 2, progress log; 3, progress and results summary; 5, full report [default 2].
@details This script calculates various distances between individuals based on sequence tag Presence/Absence data.
The distance measure can be one of:
Euclidean -- Euclidean Distance applied to cartesian coordinates defined by the loci, scored as 0 or 1. Presence and absence equally weighted.
simple -- simple matching, both 1 or both 0 = 0; one 1 and the other 0 = 1. Presence and absence equally weighted.
Jaccard -- ignores matching 0, both 1 = 0; one 1 and the other 0 = 1. Absences could be for different reasons.
Bray-Curtis -- both 0 = 0; both 1 = 2; one 1 and the other 0 = 1. Absences could be for different reasons. Sometimes called the Dice or Sorensen distance.
One might choose to disregard or downweight absences in comparison with presences because the homology of absences is less clear (mutation at one or the other, or both restriction sites). Your call.
Author: Arthur Georges. Custodian: Arthur Georges -- Post to https://groups.google.com/d/forum/dartr
Other utilities:
gl.alf()
,
utils.check.datatype()
,
utils.collapse.matrix()
,
utils.dart2genlight()
,
utils.flag.start()
,
utils.hamming()
,
utils.het.pop()
,
utils.impute
,
utils.is.fixed()
,
utils.jackknife()
,
utils.n.var.invariant()
,
utils.plot.save()
,
utils.read.fasta()
,
utils.read.ped()
,
utils.recalc.avgpic()
,
utils.recalc.callrate()
,
utils.recalc.freqhets()
,
utils.recalc.freqhomref()
,
utils.recalc.freqhomsnp()
,
utils.recalc.maf()
,
utils.reset.flags()
,
utils.transpose()
,
utils.vcfr2genlight.polyploid()