Introduction to adegenet 2.0.0 Tutorial
Introduction to adegenet 2.0.0 Tutorial
0
∗
Thibaut Jombart
Imperial College London
MRC Centre for Outbreak Analysis and Modelling
Abstract
This vignette provides an introductory tutorial to the adegenet package [4] for
the R software [12]. This package implements tools to handle, analyse and simulate
genetic data. Originally developped for multiallelic, codominant markers such as
microsatellites, adegenet now also handles dominant markers, allows for any ploidy in
the data, handles SNPs and sequence data, and implements a memory-efficient storage
for genome-wide SNP data. This tutorial provides an overview of adegenet’s basic
functionalities. Since adegenet 1.4-0, this tutorial is no longer distributed as a package
vignette. Also note that adegenet has undergone substantial changes with version
2.0.0, including a reform of the data structure and new accessors, all documented in
this tutorial.
∗
tjombart@[Link]
1
Contents
1 Introduction 3
2 Getting started 4
2.1 Installing the package - stable version . . . . . . . . . . . . . . . . . . . . . . 4
2.2 Installing the package - devel version . . . . . . . . . . . . . . . . . . . . . . 4
2.3 Getting help in R . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
2.4 Asking help on a forum . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5
2.5 Bug report, feature requests, contributions: we are all one! . . . . . . . . . . 6
3 Object classes 8
3.1 genind objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8
3.2 genpop objects . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
3.3 Using accessors . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12
4 Importing/exporting data 15
4.1 Importing data from GENETIX, STRUCTURE, FSTAT, Genepop . . . . . 15
4.2 Importing data from other software . . . . . . . . . . . . . . . . . . . . . . . 15
4.3 Handling presence/absence data . . . . . . . . . . . . . . . . . . . . . . . . . 17
4.4 SNPs data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21
4.5 Extracting polymorphism from DNA sequences . . . . . . . . . . . . . . . . 22
4.6 Extracting polymorphism from proteic sequences . . . . . . . . . . . . . . . 25
4.7 Using genind/genpop constructors . . . . . . . . . . . . . . . . . . . . . . . 29
4.8 Exporting data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 31
6 Multivariate analysis 49
6.1 General overview . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 49
6.2 Performing a Principal Component Analysis on genind objects . . . . . . . . 51
6.3 Performing a Correspondance Analysis on genpop objects . . . . . . . . . . . 58
7 Spatial analysis 63
7.1 Isolation by distance . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 63
7.1.1 Testing isolation by distance . . . . . . . . . . . . . . . . . . . . . . . 63
7.1.2 Cline or distant patches? . . . . . . . . . . . . . . . . . . . . . . . . . 65
7.2 Using Monmonier’s algorithm to define genetic boundaries . . . . . . . . . . 67
8 Simulating hybridization 77
2
1 Introduction
This tutorial introduces some basic functionalities of the adegenet package for R [12]. The
purpose of this package is to provide tools for handling, analysing and simulating genetic
data, with an emphasis on multivariate approaches and exploratory methods. Standard
multivariate analyses are implemented in the ade4 package [2], of which adegenet was
originally an extension. However, the package has since grown methods of its own such
as the Discriminant Analysis of Principal Components (DAPC, [8]), the spatial Principal
Components Analysis (sPCA, [5]), or the SeqTrack algorithm [6]. In this tutorial, we
introduce the main data structures, show how to import data into adegenet, and cover some
basic population genetics and multivariate analysis.
3
2 Getting started
2.1 Installing the package - stable version
Before going further, we shall make sure that adegenet is well installed on the computer. The
current version of the package is 2.0.0. Make sure you have a recent version of R (≥ 3.2.1)
by typing:
[Link]
[Link]("adegenet", dep=TRUE)
library("ape")
library("pegas")
library("seqinr")
library("ggplot2")
library("adegenet")
If at some point you are unsure about the version of the package, you can check it using:
## [1] "2.0.0"
library("devtools")
install_github("thibautjombart/adegenet")
library("adegenet")
The development version may implement new features and fix known issues. However, it
may also occasionally be broken, as this is our working copy of the project. Usual disclaimers
apply here: this package is provided with no warranty, etc. If unsure, use the stable version.
4
2.3 Getting help in R
There are several ways of getting information about R in general, and about adegenet in
particular. The function [Link] is used to look for help on a given topic. For instance:
[Link]("Hardy-Weinberg")
replies that there is a function [Link] in the adegenet package, and other
similar functions in genetics and pegas. To get help for a given function, use ?foo where foo
is the function of interest. For instance (quotes and parentheses can be removed):
?spca
will open up the manpage of the spatial principal component analysis [5]. At the end
of a manpage, an ‘example’ section often shows how to use a function. This can be copied
and pasted to the console, or directly executed from the console using example. For further
questions concerning R, the function RSiteSearch is a powerful tool for making online
researches using keywords in R’s archives (mailing lists and manpages).
adegenet has a few extra documentation sources. Information can be found from
the website ([Link] in the ‘documents’ section,
including several tutorials and a manual which compiles all manpages of the package, and a
dedicated mailing list with searchable archives. To open the website from R, use:
adegenetWeb()
The same can be done for tutorials, using adegenetTutorial (see manpage to choose the
tutorial to open). You will also find an overview of the main functionalities of the package
typing:
?adegenet
Note that you can also browse help pages as html pages, using:
[Link]()
5
[Link]
• search the archives: adegenet forum has searchable archives (see the adegenet
website); your answer may be there already, so it is worth checking.
• give us info: you tried something, it is not working.. give us some information: what
version of adegenet are you using, what commands did you enter and what was the
output, etc.
• avoid personal messages: the adegenet forum has plenty of advantages: several
people are likely to reply and participate in the conversation, answers are generally
faster, and all of this is archived and searchable. Please do not email the developers
directly, unless you need to discuss confidential matters.
• short answers are okay: some answers will be short. Do not take them as rude, or
think people are upset: answering questions on a forum is a time-consuming activity
and the reward for it is low. Sometimes the best answer will be pointing to relevant
documentation, e.g. “Please check ?xvalDapc”. If you get this, we (most likely) still
like you.
The adegenet forum is not the only forum that might be relevant. Others include:
• R-sig-genetics: genetics in R.
[Link]
• R-sig-phylo: phylogenetics in R.
[Link]
6
• asking for a new feature: something useful is missing, and you think it will be useful
to others? Say it! Post a feature request using github’s issues:
[Link]
• reporting a possible bug: bugs are rare, but if you think you found one, post it as
an issue on github:
[Link]
• contributions: github makes contributions very easy; fork the project, make the
changes you want, and when you are happy and the package passes the checks, send a
pull request; for more on this go to the github page:
[Link] And please, remember to add
yourself as a contributor in the DESCRIPTION and relevant manpages!
7
3 Object classes
Two main classes of objects are used for storing genetic marker data, depending on the level
at which the genetic information is considered: genind is used for individual genotypes,
whereas genpop is used for alleles numbers counted by populations. Note that the term
’population’, here and later, is employed in a broad sense: it simply refers to any grouping
of individuals. The specific class genlight is used for storing large genome-wide SNPs data.
See the genomics tutorial for more information on this topic.
data(nancycats)
[Link](nancycats)
## [1] TRUE
nancycats
A genind object is formal S4 object with several slots, accessed using the ’@’ operator
(see class?genind). Note that the ’$’ is also implemented for adegenet objects, so that
slots can be accessed as if they were components of a list.
8
• tab: a matrix of alleles counts (individuals in rows, alleles in columns).
• ploidy: a vector of integer indicating the ploidy of each individual; constant ploidy is
assumed across different loci of a single individual, but different individuals can have
different ploidy.
• call: the matched call, i.e. command used to create the object.
• pop: (optional) a factor storing group membership of the individuals; when present,
method needing a population information will automatically use this if nothing else is
provided.
Slots can be accessed using ’@’ or ’$’, although it is recommended to use accessors to retrieve
and change slot values (see section ’Using accessors’).
The main slot of a genind is the table of allelic counts @tab, with individuals in rows and
alleles in columns. For instance:
nancycats[10:18, loc="fca8"]@tab
9
## N224 0 2 0 0 0 0 0
## N7 0 0 1 0 1 0 0
## N141 1 0 0 0 0 0 0
## N142 1 0 0 0 0 0 0
## N143 2 0 0 0 0 0 0
## N144 0 1 0 0 0 0 0
## N145 0 1 0 0 0 0 0
## N146 1 0 0 0 0 0 0
## N147 0 1 0 0 0 0 0
## fca8.147 fca8.149
## N224 0 0
## N7 0 0
## N141 0 0
## N142 0 0
## N143 0 0
## N144 0 0
## N145 0 0
## N146 0 0
## N147 0 0
Individual ’N224’ is an homozygote for the allele 135 at the locus ’fca8’, while N141” is
an heterozygote with alleles 129/133. Note that as of adegenet 2.0.0, this table is no storing
data as relative frequencies. These can still be obtained using the accessor ’tab’. The
particular case of presence/absence data is described in a dedicated section (see ’Handling
presence/absence data’). As of version 2.0.0 of adegenet, the slots @strata and @hierarchy
implement hierarchical population structures. See dedicated tutorial for more on this topic.
Note that objects can be regenerated using the matched call stored in genind objects, i.e.
the instruction that created it. For instance:
##
## Converting data from GENETIX to a genind object...
##
## ...done.
obj$call
##
## Converting data from GENETIX to a genind object...
##
## ...done.
10
identical(obj,toto)
## [1] TRUE
data(nancycats)
catpop <- genind2genpop(nancycats)
##
## Converting data from a genind to a genpop object...
##
## ...done.
catpop
As in genind objects, data are stored as numbers of alleles, but this time for populations
(here, cat colonies):
catpop$tab[1:5,1:10]
11
## P03 0 0 0 4 0 0 0
## P04 0 0 0 3 0 0 0
## P05 0 0 0 1 0 0 0
## fca8.133 fca8.135 fca8.137
## P01 2 9 1
## P02 8 14 2
## P03 0 1 10
## P04 1 7 17
## P05 0 7 10
• nInd: returns the number of individuals in the object; only for genind.
• tab: returns a table of allele numbers, or frequencies (if requested), with optional
replacement of missing values; replaces the former accessor ’truenames’.
• ploidy† : returns/sets ploidy of the individuals; when setting values, a single value can
be provided, in which case constant ploidy is assumed.
12
• other† : returns/sets misc information stored as a list.
†
where indicates that a replacement method is available using <-; for instance:
head(indNames(nancycats),10)
## 001 002 003 004 005 006 007 008 009 010
## "N215" "N216" "N217" "N218" "N219" "N220" "N221" "N222" "N223" "N224"
Some accessors such as locNames may have specific options; for instance:
locNames(nancycats)
## [1] "fca8" "fca23" "fca43" "fca45" "fca77" "fca78" "fca90" "fca96" "fca37"
## [1] P02 P03 P02 P01 P04 P02 P02 P01 P02 P04
## Levels: P01 P02 P03 P04
## [1] newPop newPop newPop newPop newPop newPop newPop newPop newPop newPop
## Levels: newPop
Accessors make things easier. For instance, when setting new names for loci, the columns
of @tab are renamed automatically:
13
head(colnames(tab(obj)),20)
locNames(obj)
## [1] "fca8" "fca23" "fca43" "fca45" "fca77" "fca78" "fca90" "fca96" "fca37"
head(colnames(tab(obj)),20)
An additional advantage of using accessors is they are most of the time safer to use. For
instance, pop<- will check the length of the new group membership vector against the data,
and complain if there is a mismatch. It also converts the provided replacement to a factor,
while the command:
14
4 Importing/exporting data
4.1 Importing data from GENETIX, STRUCTURE, FSTAT,
Genepop
Data can be read from the software GENETIX (extension .gtx), STRUCTURE (.str or
.stru), FSTAT (.dat) and Genepop (.gen) files, using the corresponding read function:
[Link], [Link], [Link], and [Link]. These functions take
as main argument the path (as a string of characters) to an input file, and produce a genind
object. Alternatively, one can use the function import2genind which detects a file format
from its extension and uses the appropriate routine. For instance:
##
## Converting data from GENETIX to a genind object...
##
## ...done.
##
## Converting data from GENETIX to a genind object...
##
## ...done.
[Link](obj1,obj2)
## [1] "Attributes: < Component \"call\": target, current do not match when deparsed >"
The only difference between obj1 and obj2 is their call (which is normal as they were obtained
from different command lines).
There are only a few pre-requisite the data should meet for this conversion to be
possible. The easiest and clearest way of coding data is using a separator between alleles.
For instance, ”80/78”, ”80—78”, or ”80,78” are different ways of coding a genotype at a
microsatellite locus with alleles ’80’ and 78”. Note that for haploid data, no separator shall
be used. The only contraint when using a separator is that the same separator is used in all
15
the dataset. There are no contraints as to i) the type of separator used or ii) the ploidy of
the data. These parameters can be set in df2genind through arguments sep and ploidy,
respectively.
16
obj is a genind containing the same information, but recoded as a matrix of allele numbers
($tab slot). We can check that the conversion was exact by converting back the object into
a table of character strings (function genind2df):
genind2df(obj, sep="|")
Objects of type ’PA’ are otherwise handled like usual (type ’codom’) objects. Operations
that are not available for PA type will issue an appropriate error message.
Here is an example using a toy dataset ’[Link]’ that can be downloaded from the
adegenet website, section ’Documentation’:
17
## indB 0 1 1 1
## indC 1 1 0 1
## indD 0 NA 1 NA
## indE 1 1 0 0
## indF 1 0 1 1
## indG 0 1 1 0
tab(obj)
One can see that for instance, the summary of this object is more simple (no numbers of
alleles per locus, no heterozygosity):
##
## # Total number of genotypes: 7
18
##
## # Population sample sizes:
## a b
## 4 3
##
## # Percentage of missing data:
## [1] 7.142857
But we can still perform basic manipulation, like converting our object into a genpop:
##
## Converting data from a genind to a genpop object...
##
## ...done.
obj2
tab(obj2)
To continue with the toy example, we can perform a simple PCA. Allele presence absence
data are extracted and NAs replaced using tab:
19
## make PCA
pca1 <- [Link](X,scannf=FALSE,scale=FALSE)
temp <- [Link](pop(obj))
myCol <- transp(c("blue","red"),.7)[temp]
myPch <- c(15,17)[temp]
## basic plot
plot(pca1$li, col=myCol, cex=3, pch=myPch)
indE Group A
1.0
Group B
indC
0.5
Axis2
loc1
loc2
0.0
loc4
indA
●
indG
indF
loc3
−0.5
indB
●
indD
−0.5 0.0 0.5
Axis1
20
More generally, multivariate analyses from ade4, sPCA (spca), DAPC (dapc), the global
and local tests ([Link], [Link]), or the Monmonier’s algorithm (monmonier)
will work just fine with presence/absence data. However, it is clear that the usual Euclidean
distance (used in PCA and sPCA), as well as many other distances, is not as accurate
to measure genetic dissimilarity using presence/absence data as it is when using allele
frequencies. The reason for this is that in presence/absence data, a part of the information
is simply hidden. For instance, two individuals possessing the same allele will be considered
at the same distance, whether they possess one or more copies of the allele. This might be
especially problematic in organisms having a high degree of ploidy.
The most convenient way to convert SNPs into a genind is using df2genind, which is
described in the previous section. Let dat be an input matrix, as can be read into R using
[Link] or [Link], with genotypes in row and SNP loci in columns.
## 1 2 3 4 5
## genot. 1 "a" "a" "c" "g" "a"
## genot. 2 "g" "c" "c" "a" "t"
## genot. 3 "g" "g" "a" "a" "a"
## 1.a 1.g 2.a 2.c 2.g 3.c 3.a 4.g 4.a 5.a 5.t
## genot. 1 1 0 1 0 0 1 0 1 0 1 0
## genot. 2 0 1 0 1 0 1 0 0 1 0 1
## genot. 3 0 1 0 0 1 0 1 0 1 1 0
obj is a genind containing the SNPs information, which can be used for further analysis
in adegenet.
21
4.5 Extracting polymorphism from DNA sequences
This section only covers the cases of relatively small datasets which can be handled efficiently
using genind objects. For bigger (near full-genomes) datasets, SNPs can be extracted from
fasta files into a genlight object using fasta2genlight. See the tutorial on genomics for
more information.
DNA sequences can be read into R using ape’s [Link] (fasta and clustal formats), or
adegenet’s fasta2DNAbin for a RAM-greedy implementation (fasta alignments only). Other
options include reading data directly from GenBank using [Link], or from other
public databases using the seqinr package and transforming the alignment object into a
DNAbin using [Link]. Here, we illustrate this approach by re-using the example of
[Link]. A connection to the internet is required, as sequences are read directly
from a distant database.
library(ape)
ref <- c("U15717", "U15718", "U15719", "U15720",
"U15721", "U15722", "U15723", "U15724")
myDNA <- [Link](ref)
myDNA
class(myDNA)
## [1] "DNAbin"
[Link](myDNA,codon=FALSE)
22
Distribution of SNPs in the genome
0.0015
density
0.0010
0.0005
0.0000
[Link](myDNA)
23
Distribution of SNPs in the genome
0.006
0.004
Codon position
density
1
2
3
0.002
0.000
In adegenet, only polymorphic loci are conserved to form a genind object. This
conversion is achieved by DNAbin2genind. This function allows one to specify a threshold for
polymorphism; for instance, one could retain only SNPs for which the second largest allele
frequency is greater than 1% (using the polyThres argument). This is achieved using:
24
## @call: DNAbin2genind(x = myDNA, polyThres = 0.01)
##
## // Optional content
## - empty -
Here, out of the 1,045 nucleotides of the sequences, 318 SNPs where extracted and stored
as a genind object. Positions of the SNPs are stored as names of the loci:
head(locNames(obj))
library(seqinr)
[Link] <- [Link](file=[Link]("sequences/[Link]",
package="seqinr"), format = "mase")
[Link]
## $nb
## [1] 6
##
## $nam
## [1] "Langur" "Baboon" "Human" "Rat" "Cow" "Horse"
##
## $seq
## $seq[[1]]
## [1] "-kifercelartlkklgldgykgvslanwvclakwesgynteatnynpgdestdygifqinsrywcnngkpgavdachis
##
## $seq[[2]]
## [1] "-kifercelartlkrlgldgyrgislanwvclakwesdyntqatnynpgdqstdygifqinshywcndgkpgavnachis
##
## $seq[[3]]
## [1] "-kvfercelartlkrlgmdgyrgislanwmclakwesgyntratnynagdrstdygifqinsrywcndgkpgavnachls
25
##
## $seq[[4]]
## [1] "-ktyercefartlkrngmsgyygvsladwvclaqhesnyntqarnydpgdqstdygifqinsrywcndgkpraknacgip
##
## $seq[[5]]
## [1] "-kvfercelartlkklgldgykgvslanwlcltkwessyntkatnynpssestdygifqinskwwcndgkpnavdgchvs
##
## $seq[[6]]
## [1] "-kvfskcelahklkaqemdgfggyslanwvcmaeyesnfntrafngknangssdyglfqlnnkwwckdnkrsssnacnim
##
##
## $com
## [1] ";empty description\n" ";\n" ";\n"
## [4] ";\n" ";\n" ";\n"
##
## attr(,"class")
## [1] "alignment"
x <- alignment2genind([Link])
x
The six aligned protein sequences ([Link]) have been scanned for polymorphic sites,
and these have been extracted to form the genind object x. Note that several settings
such as the characters corresponding to missing values (i.e., gaps) and the polymorphism
threshold for a site to be retained can be specified through the function’s arguments (see
?alignment2genind).
The names of the loci directly provides the indices of polymorphic sites:
26
head(locNames(x))
## [1] 6 82
tabAA[, 1:20]
## 3 4 5 6 9 11 12 15 16 17 18 19 21 22 24 28 30 32 33 34
## Langur i f e r l r t k l g l d y k v n v l a k
## Baboon i f e r l r t r l g l d y r i n v l a k
## Human v f e r l r t r l g m d y r i n m l a k
## Rat t y e r f r t r n g m s y y v d v l a q
## Cow v f e r l r t k l g l d y k v n l l t k
## Horse v f s k l h k a q e m d f g y n v m a e
table(unlist(tabAA))
##
## a d e f g h i k l m n p q r s t v w y
## 35 38 16 9 33 13 27 28 31 8 44 10 26 47 36 20 42 6 23
Now that polymorphic sites have been converted into a genind object, simple distances
can be computed between the sequences. Note that adegenet does not implement specific
distances for protein sequences, we only use the simple Euclidean distance. Fancier protein
distances are implemented in R; see for instance [Link] in the seqinr package, and
[Link] in the phangorn package.
D <- dist(tab(x))
D
27
This matrix of distances is small enough for one to interprete the raw numbers. However,
it is also very straightforward to represent these distances as a tree or in a reduced space.
We first build a Neighbor-Joining tree using the ape package:
library(ape)
tre <- nj(D)
par(xpd=TRUE)
plot(tre, type="unrooted", edge.w=2)
edgelabels(tex=round(tre$[Link],1), bg=rgb(.8,.8,1,.8))
Baboon
Cow
Human
2.4
2.9
4.8
0.4
0.8
2.6 0.6
Langur
6.8
4.4
Horse
Rat
28
d=2
Principal Coordinate Analysis
−based on proteic distances−
Rat
Baboon●
Human
Langur Horse
Cow
data(microsatt)
microsatt$tab[10:15,12:15]
29
microsatt$tab contains alleles counts per populations, and can therefore be used to make
a genpop object. Moreover, column names are set as required, and row names are unique. It
is therefore safe to convert these data into a genpop using the constructor:
summary(toto)
##
## # Number of populations: 18
##
## # Number of alleles per locus:
## INRA5 INRA32 INRA35 INRA63 INRA72 ETH152 ETH225 INRA16 INRAK
## 8 15 11 10 17 10 14 15 12
##
## # Number of alleles per population:
## Baoule Borgou BPN Charolais Holstein Jersey
## 39 69 51 59 52 41
## Lagunaire Limousin MaineAnjou Mtbeliard NDama Normand
## 34 48 46 47 43 56
## Parthenais Somba Vosgienne ZChoa ZMbororo Zpeul
## 57 52 49 64 56 67
##
## # Percentage of missing data:
## [1] 0
30
4.8 Exporting data
The genind class tends to become a standard in population genetics packages. As of
adegenet 2.0.0, export functions towards hierfstat have been removed, as the package now
uses genind objects as a native class. Similarly, export towards the package genetics have
been removed, as adegenet now relies on pegas for basic population genetics.
This function is flexible; for instance, one can separate alleles by any character string:
genind2df(nancycats,sep="|")[1:5,1:5]
31
5 Basics of data analysis
5.1 Manipulating the data
Data manipulation is meant to be particularly flexible in adegenet. First, as genind and
genpop objects are basically formed by a data matrix (the @tab slot), it is natural to subset
these objects like it is done with a matrix. The [ operator does this, forming a new object
with the retained genotypes/populations and alleles:
data(microbov)
toto <- genind2genpop(microbov)
##
## Converting data from a genind to a genpop object...
##
## ...done.
toto
popNames(toto)
32
The object toto has been subsetted, keeping only the first three populations. Of course, any
subsetting available for a matrix can be used with genind and genpop objects. In addition,
we can subset loci directly using indices or logicals, in which case they refer to the output of
locNames:
nAll(titi)
nAll(tata)
## INRA63 ETH225
## 9 12
locNames(titi)
33
## [15] "BM2113" "BM1824" "HEL13" "INRA37" "BM1818" "ILSTS6" "MM12"
## [22] "CSRM60" "ETH185" "HAUT24" "HAUT27" "TGLA227" "TGLA126" "TGLA122"
## [29] "TGLA53" "SPS115"
locNames(hel5)
## [1] "HEL5"
To simplify the task of separating data by marker systematically, the function seploc
can be used. It returns a list of objects (optionnaly, of data matrices), each corresponding
to a marker:
data(nancycats)
sepCats <- seploc(nancycats)
class(sepCats)
## [1] "list"
names(sepCats)
## [1] "fca8" "fca23" "fca43" "fca45" "fca77" "fca78" "fca90" "fca96" "fca37"
sepCats$fca45
34
##
## // Basic content
## @tab: 237 x 9 matrix of allele counts
## @[Link]: number of alleles per locus (range: 9-9)
## @[Link]: locus factor for the 9 columns of @tab
## @[Link]: list of allele names for each locus
## @ploidy: ploidy of each individual (range: 2-2)
## @type: codom
## @call: .local(x = x)
##
## // Optional content
## @pop: population of each individual (group size range: 9-23)
## @other: a list containing: xy
identical(tab(sepCats$fca45), tab(nancycats[,loc="fca45"]))
## [1] TRUE
Following the same idea, seppop allows one to separate genotypes in a genind object by
population. For instance, we can separate genotype of cattles in the dataset microbov by
breed:
data(microbov)
obj <- seppop(microbov)
class(obj)
## [1] "list"
names(obj)
obj$Borgou
35
## @tab: 50 x 373 matrix of allele counts
## @[Link]: number of alleles per locus (range: 5-22)
## @[Link]: locus factor for the 373 columns of @tab
## @[Link]: list of allele names for each locus
## @ploidy: ploidy of each individual (range: 2-2)
## @type: codom
## @call: .local(x = x, i = i, j = j, treatOther = ..1, quiet = ..2, drop = drop)
##
## // Optional content
## @pop: population of each individual (group size range: 50-50)
## @other: a list containing: coun breed spe
The returned object obj is a list of genind objects each containing genotypes of a given breed.
A last, rather vicious trick is to separate data by population and by marker. This is easy
using lapply; one can first separate population then markers, or the contrary. Here, we
separate markers inside each breed in obj:
class(obj$Borgou)
## [1] "list"
names(obj$Borgou)
obj$Borgou$INRA63
36
## @tab: 50 x 9 matrix of allele counts
## @[Link]: number of alleles per locus (range: 9-9)
## @[Link]: locus factor for the 9 columns of @tab
## @[Link]: list of allele names for each locus
## @ploidy: ploidy of each individual (range: 2-2)
## @type: codom
## @call: .local(x = x)
##
## // Optional content
## @pop: population of each individual (group size range: 50-50)
## @other: a list containing: coun breed spe
For instance, obj$Borgou$INRA63 contains genotypes of the breed Borgou for the marker
INRA63.
Lastly, one may want to pool genotypes in different datasets, but having the same markers,
into a single dataset. This is more than just merging the @tab components of all datasets,
because alleles can differ (they almost always do) and markers are not necessarily sorted
the same way. The function repool is designed to avoid these problems. It can merge any
genind provided as arguments as soon as the same markers are used. For instance, it can be
used after a seppop to retain only some populations:
37
## @call: repool(obj$Borgou, obj$Charolais)
##
## // Optional content
## @pop: population of each individual (group size range: 50-55)
popNames(newObj)
Done !
Note that the content of @other can be processed during the conversion from genind to
genpop if the argument [Link] is set to TRUE. Only vectors of a length, or matrices
with a number of rows matching the number individuals will be processed. The way they
are processed is defined by a function passed as the argument [Link] (defaulting to
’mean’). Let us illustrate this using sim2pop:
data(sim2pop)
sim2pop
nInd(sim2pop)
## [1] 130
head(other(sim2pop)$xy)
## x y
## [1,] 35.11291 99.595997
38
## [2,] 22.57033 6.682107
## [3,] 76.99371 51.900514
## [4,] 44.31948 18.037868
## [5,] 94.40902 82.948821
## [6,] 51.29493 25.007193
dim(other(sim2pop)$xy)
## [1] 130 2
other(genind2genpop(sim2pop, [Link]=TRUE))
##
## Converting data from a genind to a genpop object...
##
## ...done.
## $xy
## x y
## P01 58.43405 48.37065
## P02 19.06501 61.00044
In this case, numeric vectors with a length corresponding to the number of individuals
will we averaged per groups; note that any other function than mean can be used by
providing any function to the argument [Link]. Matrices with a number of rows
corresponding to the number of individuals are processed similarly.
##
## # Total number of genotypes: 237
##
## # Population sample sizes:
## P01 P02 P03 P04 P05 P06 P07 P08 P09 P10 P11 P12 P13 P14 P15 P16 P17
## 10 22 12 23 15 11 14 10 9 11 20 14 13 17 11 12 13
##
## # Number of alleles per locus:
39
## fca8 fca23 fca43 fca45 fca77 fca78 fca90 fca96 fca37
## 16 11 10 9 12 8 12 12 18
##
## # Number of alleles per population:
## P01 P02 P03 P04 P05 P06 P07 P08 P09 P10 P11 P12 P13 P14 P15 P16 P17
## 36 53 50 67 48 56 42 54 43 46 70 52 44 61 42 40 35
##
## # Percentage of missing data:
## [1] 2.344116
##
## # Observed heterozygosity:
## fca8 fca23 fca43 fca45 fca77 fca78 fca90
## 0.6682028 0.6666667 0.6793249 0.7083333 0.6329114 0.5654008 0.6497890
## fca96 fca37
## 0.6184211 0.4514768
##
## # Expected heterozygosity:
## fca8 fca23 fca43 fca45 fca77 fca78 fca90
## 0.8657224 0.7928751 0.7953319 0.7603095 0.8702576 0.6884669 0.8157881
## fca96 fca37
## 0.7603493 0.6062686
names(toto)
par(mfrow=c(2,2))
40
Alleles numbers and sample sizes Number of alleles per locus
P11
P04
15
65
Number of alleles
Number of alleles
P14
P06
55
10
P08 P02
P12
P03
P05
P10
45
5
P09 P15 P13
P07
P16
P01
35
P17
0
10 12 14 16 18 20 22 fca8 fca43 fca77 fca90 fca37
20
Number of genotypes
0.15
Hexp − Hobs
15
0.10
10
0.05
5
0.00
P01
P02
P03
P04
P05
P06
P07
P08
P09
P10
P11
P12
P13
P14
P15
P16
P17
fca8 fca43 fca77 fca90 fca37
[Link](list(toto$Hexp,toto$Hobs))
##
## Bartlett test of homogeneity of variances
##
## data: list(toto$Hexp, toto$Hobs)
## Bartlett's K-squared = 0.046962, df = 1, p-value = 0.8284
[Link](toto$Hexp,toto$Hobs,pair=T,[Link]=TRUE,alter="greater")
##
## Paired t-test
##
## data: toto$Hexp and toto$Hobs
## t = 8.3294, df = 8, p-value = 1.631e-05
## alternative hypothesis: true difference in means is greater than 0
## 95 percent confidence interval:
41
## 0.1134779 Inf
## sample estimates:
## mean of the differences
## 0.1460936
Yes, it is.
library(pegas)
data(nancycats)
[Link] <- [Link](nancycats, B=0)
[Link]
Note that B=0 is used for the parametric version; larger numbers will indicate the number
of permutations to use for a Monte-Carlo version.
library(devtools)
install_github("jgx65/hierfstat")
Can we find any population structure in the cat colonies from Nancy? The basic F
statistics are provided by:
42
library("hierfstat")
fstat(nancycats)
## pop Ind
## Total 0.08494959 0.1952946
## pop 0.00000000 0.1205890
library(pegas)
Fst([Link](nancycats))
Are these values significant? This question can be addressed using the G-statistic test
[3]; it is implemented for genind objects and produces a randtest object (package ade4).
## Monte-Carlo test
## Call: [Link](x = nancycats, nsim = 99)
##
## Observation: 3372.926
##
## Based on 99 replicates
## Simulated p-value: 0.01
## Alternative hypothesis: greater
##
## [Link] Expectation Variance
## 29.13043 1741.19292 3137.64697
plot(Gtest)
43
Histogram of sim
15
10
Frequency
5
0
sim
44
The resulting matrix is Euclidean when there are no missing values:
[Link](matFst)
## [1] TRUE
The inbreeding coefficient F is defined as the probability that at a given locus, two
identical alleles have been inherited from a common ancestor. In the absence ofP inbreeding,
the probability of being homozygote at one loci is (for diploid individuals) simply i p2i where
i indexes the alleles and pi is the frequency of allele i. This can be generalized incorporating
F as: X
p(homozygote) = F + (1 − F ) p2i
i
This therefore allows for computing the likelihood of a given state (homozygote/heterozygote)
in a given genotype (log-likelihood are summed across loci for more than one marker).
data(microbov)
sal <- seppop(microbov)$Salers
sal
45
## /// GENIND OBJECT /////////
##
## // 50 individuals; 30 loci; 373 alleles; size: 135.4 Kb
##
## // Basic content
## @tab: 50 x 373 matrix of allele counts
## @[Link]: number of alleles per locus (range: 5-22)
## @[Link]: locus factor for the 373 columns of @tab
## @[Link]: list of allele names for each locus
## @ploidy: ploidy of each individual (range: 2-2)
## @type: codom
## @call: .local(x = x, i = i, j = j, treatOther = ..1, quiet = ..2, drop = drop)
##
## // Optional content
## @pop: population of each individual (group size range: 50-50)
## @other: a list containing: coun breed spe
We first compute the mean inbreeding for each individual, and plot the resulting
distribution:
## [1] "list"
head(names(temp))
head(temp[[1]],20)
temp is a list of values sampled from the likelihood distribution of each individual; means
values are obtained for all individuals using sapply:
46
hist(Fbar, col="firebrick", main="Average inbreeding in Salers cattles")
15
Frequency
10
5
0
Fbar
We can see that some individuals (actually, a single one) have higher inbreeding (>0.4).
We can recompute inbreeding for this individual, asking for the likelihood function to be
returned:
which(Fbar>0.4)
## FRBTSAL9266
## 37
## $FRBTSAL9266
## function (F)
## {
## args <- lapply([Link]([Link]())[-1L], eval, [Link]())
## names <- if ([Link](names(args)))
47
## character(length(args))
## else names(args)
## dovec <- names %in% [Link]
## [Link]("mapply", c(FUN = FUN, args[dovec], MoreArgs = list(args[!dovec]),
## SIMPLIFY = SIMPLIFY, [Link] = [Link]))
## }
## <environment: 0x901de80>
The output object F can seem a bit cryptic: it is an function embedded within a hidden
environment. This does not matter, however, since it is easily represented:
4e−09
2e−09
0e+00
Inbreeding (F)
Indeed, this individual shows subsequent inbreeding, with about 50% chances of being
homozygote through inheritance from a common ancestor of its parents.
48
6 Multivariate analysis
6.1 General overview
Multivariate analysis consists in summarising a strongly multivariate information into a few
synthetic variables. In genetics, such approaches are useful to get a simplified picture of
the genetic diversity obersved amongst individuals or populations. A review of multivariate
analysis in population genetics can be found in [7]. Here, we aim at providing an overview
of some applications using methods implemented in ade4 and adegenet.
• scaleGen (adegenet): centre/scale allele frequencies and replaces missing data; useful,
among other things, before running a principal component analysis (PCA).
• [Link] (ade4 ): implements Correspondance Analysis (CA); can be used on raw allele
counts of populations (@tab slot in genpop objects).
• sPCA (adegenet): implements the spatial Principal Component Analysis (sPCA [5]), a
method for the analysis of spatial genetic structures; see dedicated tutorial (dapc).
• glPca (adegenet): implements PCA for genome-wide SNP data stored as genlight
objects; see dedicated tutorial (genomics).
49
Besides the procedures themselves, graphic functions are also often of the utmost
importance; these include:
• [Link] (ade4 ): displays two quantitative variables with known groups of observations,
using inertia ellipses for the groups; useful to represent principal components when
groups are known.
• [Link] (ade4 ): same as [Link], except convex polygons are used rather than ellipses.
• assignplot (adegenet): specific plot of group membership probabilities for DAPC; see
dedicated tutorial (dapc).
In the sections below, we briefly illustrate how these tools can be combined to extract
information from genetic data.
50
6.2 Performing a Principal Component Analysis on genind objects
The tables contained in genind objects can be submitted to a Principal Component Analysis
(PCA) to seek a summary of the genetic diversity among the sampled individuals. Such
analysis is straightforward using adegenet to prepare data and ade4 for the analysis per
se. One has first to replace missing data (NAs) and transform the allele frequencies in an
appropriate way. These operations are achieved by scaleGen. NAs are replaced by the mean
allele frequency; different scaling options are available (argument method), but in general
centring is sufficient since allele frequencies have inherently comparable variances.
data(microbov)
sum([Link](microbov$tab))
## [1] 6325
There are 6325 missing data. They will all be replaced by scaleGen:
## [1] "matrix"
dim(X)
X[1:5,1:5]
Note that alternatively, we could have used [Link] to replace missing data, and then
left the centring/scaling to [Link].
The analysis can now be performed. We disable the scaling in [Link], which would
erase the scaling choice made earlier in scaleGen. Note: in practice, retained axes can be
chosen interactively by removing the arguments scannf=FALSE,nf=3.
51
PCA eigenvalues
15
10
5
0
pca1
## Duality diagramm
## class: pca dudi
## $call: [Link](df = X, center = FALSE, scale = FALSE, scannf = FALSE,
## nf = 3)
##
## $nf: 3 axis-components saved
## $rank: 343
## eigen values: 17.04 9.829 6.105 4.212 3.887 ...
## vector length mode content
## 1 $cw 373 numeric column weights
## 2 $lw 704 numeric row weights
## 3 $eig 343 numeric eigen values
##
## [Link] nrow ncol content
## 1 $tab 704 373 modified array
## 2 $li 704 3 row coordinates
52
## 3 $l1 704 3 row normed scores
## 4 $co 373 3 column coordinates
## 5 $c1 373 3 column normed scores
## other elements: cent norm
The output object pca1 is a list containing various information; of particular interest are:
• $eig: the eigenvalues of the analysis, indicating the amount of variance represented by
each principal component (PC).
• $li: the principal components of the analysis; these are the synthetic variables
summarizing the genetic diversity, usually visualized using scatterplots.
• $c1: the allele loadings, used to compute linear combinations forming the PCs; squared,
they represent the contribution to each PCs.
The basic scatterplot for this analysis can be obtained by:
[Link](pca1$li)
title("PCA of microbov dataset\naxes 1-2")
[Link](pca1$eig[1:20], 3,1,2)
d=5
PCA of microbov dataset
axes 1−2
AFBTLAG9446
AFBTLAG9443
AFBTLAG9421
AFBTLAG9402
AFBTLAG9426
AFBTLAG9407
AFBTLAG9451
AFBTLAG9437
AFBTLAG9413
AFBTLAG9412
AFBTLAG9435
AFBTLAG9442
AFBTLAG9416
AFBTLAG9432
AFBTLAG9427
AFBTLAG9431
AFBTLAG9425
AFBTLAG9414
AFBTLAG9405
AFBTLAG9406
AFBTLAG9417
AFBTLAG9448
AFBTLAG9444
AFBTLAG9436
AFBTLAG9439
AFBTLAG9430
AFBTLAG9410
AFBTLAG9428
AFBTLAG9447
AFBTLAG9408
AFBTLAG9424
AFBTLAG9411 AFBTLAG9403
AFBTLAG9423
AFBTLAG9433
AFBTLAG9438
AFBTLAG9419
AFBTLAG9452
AFBTND215
AFBTLAG9449
AFBTLAG9404
AFBTLAG9445
AFBTLAG9434AFBTSOM9385
AFBTLAG9418
AFBTLAG9450
AFBTSOM9388
AFBTLAG9409
AFBTLAG9441
AFBTLAG9440
AFBTLAG9429
AFBTLAG9420
AFBTLAG9415 AFBTND253
AFBTLAG9422 AFBTSOM9371
AFBTSOM9356
AFBTSOM9374
AFBTSOM9400
AFBTSOM9361
AFBTSOM9377
AFBTND221
AFBTND216
AFBTND211
AFBTSOM9389
AFBTSOM9353
AFBTND207
AFBTSOM9352
AFBTND222 AFBTND258
AFBTSOM9362
AFBTSOM9372
AFBTSOM9358AFBTND255
AFBTSOM9391
AFBTSOM9366
AFBTSOM9379 AFBTND205
AFBTND248
AFBTND217
AFBTSOM9365
AFBTSOM9381
AFBTND242
AFBTND202
AFBTSOM9392
AFBTSOM9368
AFBTSOM9399
AFBTSOM9396 AFBTND241
AFBTSOM9363
AFBTND213
AFBTSOM9398
AFBTSOM9373
AFBTSOM9384
AFBTSOM9390
AFBTSOM9397
AFBTND285
AFBTND292
AFBTSOM9360
AFBTSOM9376
AFBTSOM9354
AFBTSOM9395 AFBTSOM9393
AFBTND244
AFBTND257
AFBTSOM9355
AFBTSOM9394
AFBTSOM9370
AFBTND254
AFBTSOM9375
AFBTSOM9364
AFBTND214 AFBTSOM9359
AFBTND212
AFBTND223
AFBTSOM9382
AFBTSOM9380
AFBTSOM9367AFBTSOM9386
AFBTND209
AFBTND233
AFBTND259
AFBTND284
AFBTND206
AFBTSOM9387
FRBTMBE1503
FRBTBAZ26469 AFBTSOM9401
AFBTSOM9378 AFBIBOR9508
AFBIBOR9505
FRBTGAS9057
FRBTBPN1937
FRBTAUB9213 AFBTSOM9383
AFBTSOM9369
AFBTSOM9357
FRBTBAZ29246
FRBTBDA29877
FRBTMBE1514
FRBTGAS9193
FRBTMA25282
FRBTMA25614FRBTCHA25326
FRBTMA25522
FRBTBDA36120
FRBTBPN1898
FRBTBPN25810
FRBTBDA35281
FRBTBDA29852
FRBTBPN1896
FRBTGAS9177
FRBTBAZ29253
FRBTLIM5137
FRBTMA25588
FRBTBAZ26401
FRBTMA25409
FRBTMBE1532
FRBTLIM5133
FRBTLIM30818
FRBTMA25433
FRBTBPN1913 AFBIBOR9511
FRBTBPN1915
FRBTBAZ30420
FRBTMBE1536
FRBTMBE1516
FRBTCHA26199
FRBTBAZ26078
FRBTBAZ30418
FRBTBDA29860
FRBTMA25917
FRBTGAS9197
FRBTBPN1907
FRBTMA25922
FRBTCHA15994FRBTLIM30833
FRBTCHA26798
FRBTBAZ26112
FRBTBDA29859
FRBTMBE1507
FRBTGAS9176
FRBTLIM30846
FRBTMA25982
FRBTLIM30850
FRBTMA29572
FRBTBAZ29259
FRBTCHA25654
FRBTMBE1520
FRBTCHA30893
FRBTGAS9058
FRBTBDA35268
FRBTBAZ30540
FRBTGAS9178
FRBTCHA30353 AFBTND208 AFBIBOR9541
FRBTBPN1894
FRBTCHA25009
FRBTMA29945FRBTCHA26246
FRBTLIM30826
FRBTLIM30842
FRBTBDA29866
FRBTBPN1932
FRBTCHA30356
FRBTMA25896
FRBTMBE1510
FRBTBPN1904
FRBTBDA29863
FRBTMBE1529
FRBTCHA25024
FRBTGAS14187
FRBTBAZ26352
FRBTMA25436
FRBTCHA30878
FRBTCHA15946
FRBTLIM30816
FRBTCHA30884
FRBTBAZ29262
FRBTLIM30859
FRBTMA26280
FRBTLIM30820
FRBTSAL9266
FRBTBAZ25576
FRBTGAS9170
FRBTBAZ30440
FRBTBPN1895
FRBTMA29561
FRBTMA26035
FRBTBAZ26388
FRBTLIM30847
FRBTCHA25018
FRBTCHA26074
FRBTBAZ26110
FRBTBPN1876
FRBTBDA35278
FRBTLIM30821FRBTMA26321
FRBTBPN1914
FRBTBDA29856
FRBTBAZ30531
FRBTBDA35941
FRBTGAS9179
FRBTBAZ29244
FRBTBAZ29254
FRBTBDA35269
FRBTGAS9175
FRBTMA25820 AFBIBOR9509
FRBTLIM30825
FRBTBAZ15654
FRBTBDA35255
FRBTBDA29882
FRBTBDA35248
FRBTLIM30849
FRBTBAZ29598
FRBTMBE1519
FRBTMBE1497
FRBTLIM30841
FRBTBAZ25957
FRBTCHA30896
FRBTCHA25543
FRBTBDA35955
FRBTMA29952
FRBTMA29943
FRBTGAS14184FRBTLIM30830
FRBTCHA25295
FRBTBPN1870
FRBTBAZ26439
FRBTBAZ29281
FRBTMBE1538 FRBTBDA35864
FRBTGAS9205
FRBTBAZ30429
FRBTLIM30831
FRBTGAS9190
FRBTBAZ29261
FRBTLIM30843
FRBTLIM30832 FRBTMA25273
FRBTCHA26789
FRBTBAZ25950
FRBTBPN1930
FRBTBAZ26092
FRBTAUB9287
FRBTLIM30844
FRBTMA26168 FRBTLIM5135
FRBTMBE1531
FRBTGAS9195
FRBTCHA26792
FRBTMBE1534
FRBTBAZ26354
FRBTMA25387
FRBTMA26022
FRBTBDA35283
FRBTMA25530
FRBTLIM30853
FRBTLIM30845
FRBTBDA35877 AFBIBOR9542
FRBTCHA26040
FRBTCHA26800
FRBTBAZ26375
FRBTGAS9059
FRBTLIM30829
FRBTMA25978
FRBTMA26491
FRBTCHA15957
FRBTMA29950
FRBTMBE1513
FRBTBDA35274
FRBTCHA26014
FRBTCHA30382
FRBTCHA25069
FRBTMA29571
FRBTSAL9280
FRBTBDA29880
FRBTSAL9268
FRBTCHA26793
FRBTBAZ25578
FRBTMA29812
FRBTBPN1906FRBTMBE1549
FRBTBPN1873
FRBTCHA26011
FRBTMBE1540
FRBTBPN1911
FRBTCHA25322
FRBTMBE1547
FRBTLIM30858
FRBTAUB9231
FRBTBAZ25954
FRBTSAL9089
FRBTMA29806 FRBTGAS9174
FRBTBAZ26396
FRBTBDA35286
FRBTAUB9230
FRBTMA26019
FRBTBPN1928
FRBTBDA35262
FRBTLIM30836
FRBTCHA30335
FRBTMA25439
FRBTMBE1502
FRBTMBE1535FRBTMBE1505
FRBTBDA35243
FRBTCHA25995
FRBTBAZ26386
FRBTBDA29879
FRBTMA29948
FRBTSAL9272
FRBTCHA15985
FRBTBPN1927
FRBTBAZ30421
FRBTMA29819 FRBTMA25298
FRBTBDA29868
FRBTCHA26193
FRBTLIM30835
FRBTMA25612
FRBTGAS9053
FRBTBAZ26400
FRBTBDA35259
FRBTSAL9253
FRBTAUB9076
FRBTBAZ29272
FRBTSAL9248 FRBTSAL9093
FRBTSAL9242
FRBTCHA30344
FRBTGAS9051 FRBTBDA29855
FRBTGAS14188
FRBTCHA30391
FRBTBPN1899
FRBTCHA30879
FRBTGAS9055
FRBTMA25684
FRBTSAL9246
FRBTBAZ25956
FRBTCHA26785
FRBTBAZ30539
FRBTCHA30373
FRBTBAZ30436
FRBTBAZ26457
FRBTBAZ26097
FRBTMA25488
FRBTMA26232
FRBTBDA29870
FRBTBDA35267
FRBTBDA29857
FRBTCHA26285
FRBTAUB9220
FRBTGAS9204
FRBTBAZ26463
FRBTLIM30828
FRBTMBE1508 FRBTGAS9056
FRBTBPN1910
FRBTCHA26786
FRBTMA25423 FRBTBDA29872
FRBTCHA25015
FRBTBPN1934
FRBTBDA29854
FRBTCHA26274
FRBTLIM3001
FRBTLIM30848
FRBTMBE1496
FRBTLIM30834
FRBTLIM30857
FRBTCHA26054
FRBTBPN1897 FRBTGAS9180
FRBTMBE1506
FRBTCHA26196
FRBTGAS9172 FRBTGAS9202 AFBIBOR9510
FRBTCHA25390
FRBTSAL9250 AFBIBOR9517
FRBTLIM30840
FRBTCHA26783
FRBTBAZ29247
FRBTLIM30827
FRBTAUB9235
FRBTMA25412
FRBTBDA35284
FRBTLIM30819
FRBTBDA35916
FRBTBDA29858
FRBTCHA30886
FRBTBAZ30533FRBTAUB9290
FRBTBDA35446
FRBTGAS14185
FRBTBDA35256
FRBTBPN1902
FRBTSAL9276
FRBTLIM30860
FRBTGAS9052
FRBTGAS9181FRBTBDA29853
FRBTBDA35379
FRBTCHA25513
FRBTGAS9184
FRBTCHA30341
FRBTAUB9210
FRBTCHA26784
FRBTBDA29881
FRBTCHA26205
FRBTAUB9064
FRBTSAL9090
FRBTSAL9247
FRBTMBE1541
FRBTBDA29862
FRBTBDA29865
FRBTGAS9182
FRBTLIM30817
FRBTBDA29869
FRBTSAL9285
FRBTBPN1872
FRBTBDA35245
FRBTAUB9232
FRBTBDA35899
FRBTAUB9070
FRBTMA25594
FRBTLIM30824
FRBTAUB9226
FRBTMBE1511
FRBTBAZ15655
FRBTMA25428
FRBTAUB9228
FRBTCHA26202
FRBTBDA29875 AFBIBOR9521
FRBTGAS9183
FRBTGAS9185
FRBTSAL9273
FRBTAUB9288
FRBTCHA26790
FRBTGAS14183
FRBTMA25278
FRBTGAS9189
FRBTAUB9286
FRBTAUB9074
FRBTSAL9249
FRBTBDA29864
FRBTBPN1935
FRBTLIM30851
FRBTSAL9100
FRBTGAS9050
FRBTGAS9198
FRBTMBE1548
FRBTSAL9260 FRBTGAS9199
FRBTAUB9227
FRBTGAS9049
FRBTSAL9094
FRBTBDA35931
FRBTAUB9078
FRBTBPN25811
FRBTAUB9222
FRBTMA25902
FRBTGAS9186
FRBTSAL9256 FRBTAUB9237
FRBTGAS9171
FRBTLIM30838
FRBTBDA35260
FRBTBPN1875
FRBTMBE1544
FRBTAUB9079
FRBTCHA26797 AFBIBOR9548
AFBIBOR9519
AFBIBOR9512
FRBTBAZ26403 FRBTBDA35485
FRBTLIM30822
FRBTSAL9277
FRBTGAS9201
FRBTBDA35258
FRBTBDA29851
FRBTGAS14180
FRBTGAS9060
FRBTAUB9067
FRBTBPN1877
FRBTAUB9069
FRBTGAS9200
FRBTSAL9259
FRBTSAL9283
FRBTAUB9212
FRBTSAL9284
FRBTMBE1517
FRBTAUB9061
FRBTSAL9261 FRBTMA25382
FRBTGAS9173
FRBTBDA36124
FRBTLIM30854
FRBTLIM30855
FRBTAUB9221
FRBTAUB9229
FRBTMBE1523
FRBTBDA35244
FRBTLIM30852
FRBTLIM30823 AFBIBOR9533
AFBIBOR9549
FRBTAUB9081
FRBTBDA35280
FRBTGAS9054
FRBTGAS14186
FRBTBPN1901
FRBTSAL9257
FRBTLIM30839 FRBTAUB9068
FRBTSAL9101
FRBTAUB9075
FRBTSAL9252
FRBTGAS9203
FRBTSAL9091
FRBTAUB9073
FRBTAUB9219
FRBTSAL9088
FRBTAUB9216
FRBTBDA29873
FRBTGAS9188 AFBIBOR9528 AFBIBOR9529
AFBIBOR9507
FRBTMA29809
FRBTSAL9262 FRBTAUB9225
FRBTBDA29861
FRBTSAL9265
FRBTAUB9066
FRBTAUB9223
FRBTAUB9077
FRBTLIM30856
FRBTAUB9234 FRBTLIM5136
FRBTAUB9208
FRBTSAL9275
FRBTMA25418
FRBTSAL9270
FRBTSAL9271
FRBTSAL9095
FRBTAUB9211
FRBTSAL9099FRBTAUB9062 AFBIBOR9543
AFBIBOR9536
AFBIBOR9540
FRBTSAL9097
FRBTAUB9072
FRBTLIM30837
FRBTSAL9243
FRBTAUB9238
FRBTSAL9258
FRBTSAL9241
FRBTSAL9267
FRBTSAL9245 AFBIBOR9532
AFBIBOR9530
FRBTBDA29878
FRBTSAL9096
FRBTSAL9255
FRBTSAL9103
FRBTBDA29874
FRBTSAL9102
FRBTSAL9251
FRBTAUB9063 AFBIZEB9465
AFBIBOR9531
AFBIBOR9545
FRBTSAL9087
FRBTAUB9224
FRBTAUB9218
FRBTAUB9289
FRBTAUB9071
FRBTAUB9065 AFBIBOR9513
AFBIBOR9527
AFBIBOR9539
AFBIBOR9524 AFBIBOR9535
AFBIBOR9518
AFBIBOR9515
AFBIBOR9514
AFBIZEB9468
AFBIBOR9537 AFBIBOR9538
AFBIZEB9478
AFBIZEB9489
AFBIBOR9522
AFBIBOR9516
AFBIBOR9525
AFBIBOR9520
AFBIBOR9544
AFBIBOR9506
AFBIBOR9547
AFBIBOR9504 AFBIBOR9534
AFBIZEB9485
AFBIBOR9546
AFBIBOR9552
AFBIZEB9458
AFBIBOR9523
AFBIBOR9526
AFBIZEB9463
AFBIZEB9491
AFBIZEB9467
AFBIBOR9551
AFBIZEB9480
AFBIZEB9497
AFBIZEB9486
AFBIZEB9464
AFBIZEB9481
AFBIZEB9475
AFBIZEB9490
AFBIZEB9461
AFBIZEB9476
AFBIZEB9473
AFBIZEB9470
AFBIZEB9482
AFBIZEB9479
AFBIBOR9503
Eigenvalues AFBIZEB9471 AFBIZEB9495
AFBIZEB9498
AFBIZEB9500
AFBIZEB9487
AFBIZEB9457
AFBIZEB9488
AFBIZEB9462
AFBIZEB9484
AFBIZEB9466
AFBIBOR9550
AFBIZEB9456
AFBIZEB9483
AFBIZEB9493
AFBIZEB9453
AFBIZEB9492
AFBIZEB9472
AFBIZEB9494
AFBIZEB9501
AFBIZEB9469
AFBIZEB9502
AFBIZEB9477 AFBIZEB9474
AFBIZEB9459AFBIZEB9499
AFBIZEB9455 AFBIZEB9460
AFBIZEB9454
AFBIZEB9496
53
However, this figure can largely be improved. First, we can use [Link] to represent both
the genotypes and inertia ellipses for populations.
[Link](pca1$li, pop(microbov))
title("PCA of microbov dataset\naxes 1-2")
[Link](pca1$eig[1:20], 3,1,2)
d=5
PCA of microbov dataset
axes 1−2 ● ●
●
●● ●
●● ●
● ●●
● ●● ●
● ●
● ●
●● ●● ●
Lagunaire
●
●●
●● ●
●
●
●
●●●
● ● ● ● ● ●
●● ●
●
● ●
● ●
● ● ●
● ● ● ●●
● ●
●● ●●
● ● ●
● ● ●
● ● ●●
● ● ● ● ●●● ●
●● ● ●●●●● ●
● Somba
NDama
● ●
● ● ●● ●
●
● ● ●● ●
● ● ●● ● ●
● ●●● ● ●
●
●● ●
●
● ●
● ●
● ●● ●
●● ●
●● ● ●
●● ●●● ● ● ●
● ●●● ● ●● ●● ● ● ●
● ●
● ●●● ●●● ● ●● ● ●● ●
●
●●●●● ● ● ●●●●●
● ● ●
●
● ●
●● ●● ●●●●●●● ● ●
●● ●●● ●● ●● ● ●
●●●●
●●●●●●●●●
●●●●
● ●
●● ●● ●● ●●●● ●
●● Bazadais
● ●●●●● ●●
MaineAnjou
●●
BretPieNoire
Montbeliard
●● ●●
Charolais
●● ●●
●●●●●●●
●
●●●●
●
●●●
●
●●
●
●● ●
●
●
●●●●●
●●
●
●
●●●●
●●
●●●
●
●● ●
● ●●
● ●
Limousin
● ●● ●●
●
BlondeAquitaine
●
●
●
● ● ●
● ●●●●
Gascon
● ● ●●
●
●
●
●● ●
●
●
●●
●
●●
●
●●
●
●
●●
●●●●
●
●
●
●
● ● ●
● ●
●●
●● ●●●●● ●
●●
● ●●●
●●
●●●
● ●●
●●
●
●●
● ●●
●●● ●● ● ●
●●
●
●
●
● ●●●●●
● ●●●
● ●
● ● ●
●
● ●●
●● ●●●●
●
●
● ●●
●
● ● ●
● ● ● ●● ● ●
●
● ●●●● ● ● ● ●
● ●● ● ●● ●● ● ● ●●●● ● ● ●
● ●● ●●● ●
●● ● ● ●
●
●
● ●
●
Aubrac
Salers
●● ●
● ● ●● ●
●
●●
● ●
●●
●
●
●● ●
●● ●
●● ●● ●
●
●
●
●●●●● ● ● ● ●●
● ● ●
● ●●
● ● ●● ● ● ●
●● ●
●
● ●● ● ● ●
● ●●
●
●
●● ●
● ●
● Borgou
● ●●
●●
●● ● ● ●
● ●
● ●
● ●
●● ●●
●●
● ●
●
●
●
●●
●●
●● ●
●
● ● ●●
●●
● ● ●
● ●
●● ● ● ●
Eigenvalues ●
●
Zebu ●●●
●●●
●
●
● ●
●● ●
●
●
●
● ●
●● ●
● ● ●
●
This plane shows that the main structuring is between African an French breeds, the second
structure reflecting genetic diversity among African breeds. The third axis reflects the
diversity among French breeds:
[Link](pca1$li,pop(microbov),xax=1,yax=3,sub="PCA 1-3",csub=2)
title("PCA of microbov dataset\naxes 1-3")
[Link](pca1$eig[1:20],nf=3,xax=1,yax=3)
54
d=5
PCA of microbov dataset
● axes 1−3
●
●
●
●
●
●
●
●
● ● ●
●
●
● ●●
● ● ●
● ●
●
● MaineAnjou
● ●
● ● ●
●
●
●
●
● ● ●●
● ●
●
●
● ● ●
● ●
●
● ●● ●●
● ●
●
●● ●
● ●
● ● ●
●
●
● ● ● ●● ●
● ● ● ● ●
● ●● ●●
● ● ●● ●
●●●● ● ● ●
● ● ●
Charolais
●
●●● ●
●
●
● ●
● ●
●
●
BretPieNoire
● ●●● ●●●
●●
● ●
● ●
●
● ● ●●
● ● ● ● ●● ●● ● ●
●● ● ● ● ● ● ●
●● ● ● ● ● ● ●● ● ●●● ● ●
●● ● ●
● ●● ●● ●
●● ●● ●
● ● ● ●
● ●● ● ● ●●● ● ● ●●● ●● ● ●●
●●● ● ●● ● ● ●● ● ●
●
● ● ●● ●
● ● ●
●● ●
●
● ●● ● ●
●●
● ● ●●
●
●● ● ●●
●
Zebu
●●
● ●
●● ● ●
●
●● ●
●
● ● ●
●
● ● ● ●●
● ●●
●
● ●● ●
●● ●
●●
● ● ●●●
●
Lagunaire
●● ● ●
NDama●● ● ●
●● ● ● ●
● ●●
Borgou
●● ● ●●
● ● ●● ● ●
●
●●
●
Montbeliard
● ● ●● ● ●●
●● ●
● ● ● ●●
● ●● ● ● ●● ●
● ● ●●
●●●● ● ● ●●● ● ●
●●● ● ●●
● ● ●
●
● ●●●
●● ● ●
●
BlondeAquitaine
●
●●●●●
●●● ●●
●●●● ●● ●●● ●●
● ● ●● ●
●●● ●● ● ●●
●
●
Somba
●●
●●
●● ● ●
● ● ●
● ●● ● ●
●
●
● ●● ●
● ●
●● ● ●●
●
● ●● ● ● ●●●● ●●● ● ● ● ●
● ●●●● ● ● ●● ● ●● ● ● ● ●● ● ● ● ● ● ●
●
Salers
● ●● ● ●● ●●
Gascon
●
●● ● ●● ●● ● ●
●● ●
●
●
●
●
●● ●
● ● ● ● ● ●●
● ●● ● ● ●
●
●●
● ●
● ●
●
● ●
● ● ●
Limousin
● ● ●●●
Aubrac
Eigenvalues
●● ● ●●● ●
● ●● ● ●●
●
●●●● ● ●●
●●
● ●● ●
●●●
●●
●
● ●
● ●
● ● ●●●● ● ●● ● ●
● ● ●
●● ● ●● ●● ● ● ●
●● ● ● ● ●● ●●● ●
●●● ●● ● ●●
● ●● ● ●● ●● ● ●●
●●● ● ● ● ●
●
● ● ●
●
Bazadais
●
●●
●●●● ●
●
●●
●
●
● ● ●
● ● ●● ●● ● ● ●●
● ●● ●
● ● ● ●●
● ●●
● ●
● ●
●
●
●
●
●
PCA 1−3
Overall, all breeds seem well differentiated.
However, we can yet improve these scatterplots, which are fortunately easy to customize.
For instance, we can remove the grid, choose different colors for the groups, use larger dots
and transparency to better assess the density of points, and remove internal segments of the
ellipses:
55
MaineAnjou
Charolais
BretPieNoire
Zebu
Lagunaire
NDama Borgou
Montbeliard
BlondeAquitaine Somba
Salers
Gascon
Limousin
Aubrac
Bazadais
Let us now assume that we ignore the group memberships. We can still use color in an
informative way. For instance, we can recode the principal components represented in the
scatterplot on the RGB scale:
56
PCA of microbov dataset
axes 1−2
5
0
PC 2
−5
−10
−5 0 5 10
PC 1
Colors are based on the first three PCs of the PCA, recoded respectively on the red, green,
and blue channel. In this figure, the genetic diversity is represented in two complementary
ways: by the distances (further away = more genetically different), and by the colors (more
different colors = more genetically different).
57
PCA of microbov dataset
axes 1−3
10
5
PC 3
0
−5
−5 0 5 10
PC 1
data(microbov)
obj <- genind2genpop(microbov)
##
## Converting data from a genind to a genpop object...
##
## ...done.
58
Correspondance Analysis eigenvalues
0.25
0.20
0.15
0.10
0.05
0.00
59
d = 0.5
Zebu
Borgou
Salers
Aubrac
BlondeAquitaine
MaineAnjou
Gascon
Limousin
Charolais
Montbeliard
BretPieNoire
Bazadais
NDama
Somba
Eigenvalues
Lagunaire
CA 1−2
The same graph is derived for the axes 2-3:
[Link](ca1$li,xax=2,yax=3,lab=popNames(obj),sub="CA 1-3",csub=2)
[Link](ca1$eig,nf=3,xax=2,yax=3,posi="topleft")
60
Eigenvalues d = 0.5
MaineAnjou
Charolais
BretPieNoire
Zebu
Lagunaire NDama Borgou
Somba Montbeliard
BlondeAquitaine
Gascon
Salers
Limousin
Aubrac
Bazadais
CA 1−3
As in the PCA above, axes are to be interpreted separately in terms of continental
differentiation, and between-breeds diversity. Importantly, as in any analysis carried out
at a population level, all information about the diversity within populations is lost in this
analysis. See the tutorial on DAPC for an individual-based approach which is nontheless
optimal in terms of group separation (dapc).
library(wordcloud)
[Link](1)
[Link](ca1$li*1.2, sub="CA 1-2",csub=2, clab=0, cpoint="")
textplot(ca1$li[,1], ca1$li[,2], words=popNames(obj),
cex=1.4, new=FALSE, xpd=TRUE)
[Link](ca1$eig,nf=3,xax=1,yax=2,posi="bottomright")
61
d = 0.5
Zebu
Borgou Salers
Gascon
Aubrac MaineAnjou
●
BlondeAquitaine
●
●
● ●
Bazadais ●
●
BretPieNoire
Charolais Limousin
Montbeliard
NDama●
Somba
Eigenvalues
Lagunaire
CA 1−2
However, only general trends can be interpreted: labels positions are randomised to avoid
overlap, so they no longer accurately position populations on the factorial axes.
62
7 Spatial analysis
The R software probably offers the largest collection of spatial methods among statistical
software. Here, we briefly illustrate two methods commonly used in population genetics.
Spatial multivariate analysis is covered in a dedicated tutorial; see spca tutorial for more
information.
data(nancycats)
toto <- genind2genpop(nancycats)
##
## Converting data from a genind to a genpop object...
##
## ...done.
## Monte-Carlo test
## Call: [Link](m1 = Dgen, m2 = Dgeo)
##
## Observation: 0.00492068
##
## Based on 999 replicates
## Simulated p-value: 0.488
## Alternative hypothesis: greater
##
## [Link] Expectation Variance
## 0.018023759 0.002993049 0.011438193
plot(ibd)
63
Histogram of sim
150
Frequency
100
50
0
sim
The original value of the correlation between the distance matrices is represented by the dot,
while histograms represent permuted values (i.e., under the absence of spatial structure).
Significant spatial structure would therefore result in the original value being out of the
reference distribution. Here, isolation by distance is clearly not significant.
Let us provide another example using a dataset of individuals simulated under an IBD
model:
data(spcaIllus)
x <- spcaIllus$dat2B
Dgen <- dist(x$tab)
Dgeo <- dist(other(x)$xy)
ibd <- [Link](Dgen,Dgeo)
ibd
## Monte-Carlo test
## Call: [Link](m1 = Dgen, m2 = Dgeo)
##
## Observation: 0.1267341
64
##
## Based on 999 replicates
## Simulated p-value: 0.002
## Alternative hypothesis: greater
##
## [Link] Expectation Variance
## 3.533869077 -0.002448621 0.001336312
plot(ibd)
Histogram of sim
200
150
Frequency
100
50
0
sim
65
plot(Dgeo, Dgen)
abline(lm(Dgen~Dgeo), col="red",lty=2)
●
●● ● ● ●
● ● ● ●
● ● ●● ●
7
●●
●● ● ● ● ●
●● ● ● ●
●●●● ●● ●● ● ● ● ● ●● ● ● ● ●
●● ●
● ●● ●●● ● ●●●
●●
● ●●●
●● ● ●
● ●●● ●● ● ● ●● ● ● ●
● ●●
● ●
● ●● ●●● ● ● ● ● ●● ●
● ●●
●●●●
●● ● ●●
●●●
●●●●●●
●●●●
●
●●●● ●
●●●● ● ● ●
● ● ●
●●● ●●
●
●●●●
● ●●●
●●●
●
●●●●●● ●●
●●●●
●
●●●● ●
●●●●
● ●● ●
●●●●
●●
●●●
●●●
●●●
●
● ● ●●● ● ● ●
● ●● ●
●
●● ●
●●●
●
● ●●
●●●
●
●●●●
●●
●
●●
●● ●
●
●●
●●●●
●
●●●
●● ●●●●
●●●●●
●●
●
●●●●
●
●●●
●
●●● ●
●●
●●
●●
●●
●●●●●
●●
●●●●
●●
●●●
●●●
●●
●●●●● ●●
●●
● ●●●●
●●●●●●
●
●●●
●
●●●
●●
●
●●
●●
●●●
●●●
●
●●●
●
●●●●
●
●●
●●●
●●
●●●
●●●●
●●●
●●
●●●
●
●●●●●
●●
●●
●●
●●
●●
●
●●
●●
●●
●●●
●
●●
●●●
●●
●●●●●
●
●●
●●●
●
●●●
●●●
●●●●
● ●●● ● ● ● ●
6
●●
●● ●
●●●
●
●●●
●●
●
●●
●
●●
●●
●
●●●
●●
●●
●
●●
●
●●
●●
●
●●●
●●●
●
●●
●●
●●
●●
●●●
●
●●
●●
●
●●
●●
●
●●●
●●
●●●
●
●
●●
●●●
●●
●●
●●
●
●●
●
●●
●●
●
●●
●●
●●
●●
●
●●
●
●●
●●
●●
●●●
●
●●
●●
●
●●
●●
●●
●●
●
●●
●●●
●
●●●●
●
●●●
●
●●
●●
●
●●●● ●●●
●●●
●●●●●
● ●●
●
● ●●
●●● ●●
●●● ●
●
●
●●
●●●
●●●
●●
●
●●
●
●●
●●●
●
●●
●●
●
●●
●
●●
●
●●
●●
●
●●
●
●●
●
●●
●●●
●
●●●
●●
●
●●
●
●●
●
●●
●●
●
●●●
●●
●●
●
●●
●
●●●
●●●
●
●●
●●
●●
●
●●
●
●●
●
●
●●
●
●●
●
●●
●●●
●
●
●●
●
●●
●●
●●
●
●●●
●●●
●
●●
●
●●
●●
●●
●
●●●
●
●●●●●
●
●●
●●
●●
●
●●●
●●●●●●
●●
●● ●●●●
● ●●
● ●
Dgen
●● ●●●
●
●●●
●●●
●
●●
●
●●
●
●●
●
●●●
●
●●
●●
●
●●●
●
●●
●
●●
●●
●●●
●
●●
●●
●
●●
●●
●
●●
●●
●
●●
●
●●
●
●●
●●
●●
●
●●
●
●
●●
●
●●●
●
●●
●●
●●
●
●●
●●
●●
●
●●
●●
●●
●
●●●
●●
●●●
●
●●
●●
●●
●
●●
●●
●●
●
●●
●
●●
●
●●
●●
●
●●
●
●●
●●●
●
●●
●●
●●
●●
●
●●●
●●
●
●●
●
●●
●●●
●
●●●
●●
●●●
●●
●●
●●●● ●
●● ●
●●
●●
●●●
●●●●
●
●●●
●
●●
●●●●
●
●●
●●
●●
●●●
●●
●
●
●●
●
●●
●
●●●
●
●●
●●
●
●●
●
●
●●
●
●●
●
●●
●
●●
●
●●
●
●●●
●
●●
●●
●●●
●
●●
●
●●
●
●●
●●
●
●
●●
●
●●
●
●●
●
●●
●
●●
●
●●
●
●●
●●
●
●●
●●
●●
●●
●
●●
●●
●●
●●
●●
●●
●●●
●●
●●
●●
●
●●
●
●●
●●
●
●●
●
●●
●●
●
●●
●
●●●
●
●●
●
●●
●●
●
●●
●●
●●
●
●●●●
●●
●●●●
●●●
●●● ●
● ● ●
●
●● ●
●●
●●
●●
●●●
●●
●●●
●
●●
●
●●
●●
●
●●●
●
●
●●
●●
●
●●
●●
●
●●
●●●
●
●●
●●●
●
●
●●
●
●●
●●
●
●●
●●
●●
●
●●●
●
●●
●
●●●
●
●●
●
●●
●
●●
●
●●
●
●●
●
●●●
●
●●
●
●
●●
●●
●
●●
●●
●
●●
●●
●
●●
●●
●
●●
●
●●●
●
●
●●
●●
●
●●●
●●
●
●●
●●
●
●●●
●
●●
●●●
●
●●●●
●●
●●●●
●
●●
●●●●●
●
●●● ●● ●
5
● ●
●●
●●
●●●
●
●●
●
●●
●
●●●
●
●●●
●●
●●
●●
●
●●
●●●●●
●●●
●
●
●●
●●
●●
●
●●
●
●●
●●
●●
●
●●●
●
●
●●
●●
●
●●
●
●●
●●
●●
●
●●
●
●●
●●
●
●●●
●
●
●●●
●●
●
●●
●●
●●
●●●
●
●●●
●
●●
●●
●●
●●●
●
●●●
●●
●●
●
●●
●●
●●
●●
●●
●●
●●●
●
●●
●●●
●●●
●●● ●●●
● ● ●
●
●●
●●●
●●●
●●
●●
●
●●●●●
●●
●●●
●●
●●
●
●●●
●●●
●
●●
●●
●●●
●
●●●
●
●●
●●
●●
●●●●
●
●●
●●●
●●
●●
●●●●●
●●
●●●●●●
●●
●●●
●
●●
●●●●●●●
●●●
●●●●
●
●●●
●
●●●
●
●●
●●●●●
●●● ● ● ●
● ●●●
●●●
●● ●
●
● ●●
●●●●●●
●
●●●
●●● ●●
●
●●
●●●●●
●●●
●●●●●●
●●
●●●●
●●●
●●●
●●●
●●
●●●
●●●
●
●●●●●
●●
●●
●●●
●●●●● ● ●●
●● ●● ● ●
●● ● ●
● ●
●●●●
●
● ●● ● ●
●
●●●
●
●●●●●●
●
●●●●●
●●●● ●● ● ● ●
●●●● ●●
●●● ●●●●●
● ●●● ●●● ● ● ● ● ●
4
● ●●●● ●
● ● ●● ●● ●
● ●●
Dgeo
Most of the time, simple scatterplots fail to provide a good picture of the data as the density
of points in the scatterplot is badly displayed. Colors can be used to provide better (and
prettier) plots. Local density is measured using a 2-dimensional kernel density estimation
(kde2d), and the results are displayed using image; colorRampPalette is used to generate a
customized color palette:
library(MASS)
dens <- kde2d(Dgeo,Dgen, n=300)
myPal <- colorRampPalette(c("white","blue","gold", "orange", "red"))
plot(Dgeo, Dgen, pch=20,cex=.5)
image(dens, col=transp(myPal(300),.7), add=TRUE)
abline(lm(Dgen~Dgeo))
title("Isolation by distance plot")
66
Isolation by distance plot
●● ● ● ●
● ● ● ●
● ● ● ● ●
7
● ●● ● ● ● ● ●● ● ● ● ●
● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ● ●
● ● ●●
● ● ● ● ●● ● ● ● ●● ●● ● ● ●● ● ● ●● ●● ● ● ● ● ● ● ●
● ● ● ●
● ● ●
●● ●● ● ● ●● ● ● ● ● ● ● ● ●●
● ●
● ●● ●● ●● ● ● ● ●
●●
●● ● ●
● ●● ●
● ● ●●
●●
● ● ●●● ●● ● ● ●● ●● ● ● ● ●
● ● ●● ● ● ● ●●● ●
●● ●● ●● ●●
● ● ●●●●
● ● ● ●
●● ● ●● ● ● ●
●●● ● ●● ●● ●
●●● ●●
● ● ●
● ●● ● ● ●●
● ●
●
●● ●●
●● ●●●
●● ●
● ●
● ● ● ● ● ●
● ● ● ●●● ● ●●
● ●●●● ● ●● ● ●●● ●● ●
●●●●●●●
●● ●
●
●●●
●●●● ● ●●
●● ● ●●
● ● ●
●
● ●● ●
●
● ● ●
● ●
●
● ●●●●
●●●
●
●● ●
●
●● ● ●●●
●
●●● ●●
●●●
●●
●● ●●●● ●● ● ●● ●●● ● ●● ●●● ●● ● ●●●●● ●
● ●● ● ●
6
● ●● ● ● ●●
●● ● ● ●
● ●
● ●
●●●● ●
●●●
●● ●●
●●●● ●●
●●
●● ●
● ●●● ●
●●●
●●●●●●
●●
●●●●
●
●●●●
●
●● ●
●
●●●
●
●● ● ●●
● ● ● ●●
●●● ●
●●●● ●●
●●
●●●
●●●
●●●●●●
●●●●
●●●
●●●●●
●●●●
●●●
●●●● ●●
●●●●
●●
●● ●● ●● ● ● ● ●
●●●
●●●
● ●
●●●● ●
●● ●●● ● ● ●● ●● ● ● ● ● ●
● ●● ● ●●● ●●●● ● ●
●●●●●●
●
●●●
●
●●●●●
●●●●●●●●●●●●●
●
●●
●●●
●●
●●
●●●
● ●● ● ●●●●
●●●● ●●●●●
● ●●●●●●●
●
●●●●
●●●●●●
● ●●●
●
●●● ●
●
●●●●
●
●●●● ●
●●●
●●●●
●●●●
●●
●●●●
●●●
●●●●●
●● ●
●
● ●●
●●●
●●●●●●●●
●
●●●●●
●● ●●●
●
●●
●●
●●●●
●●●
●
●●● ●
●●●
●●●
●
●●●●● ●●
●● ●●
●●●
●●●●●●
●
●●● ●●● ● ● ●
● ● ●●
●● ●
● ●● ● ●
●● ●● ● ●●● ● ●
● ● ● ●
●● ●
●● ●
●
● ●●●●
●●●● ●● ●●●
●●●
●●●●●●
●●●
●●●●
●
●●●●●
●●●
●●
●●
●
●●
●●●
●●●●
●●●
●●
●●
●●
●●●
●●
●●●
●●
●●
●●●
●
● ●
●
●●●
●●●●●
●
●●
●●●
●●●●
●●
●●●●●
●● ●●
●●●●
●●
●●●●●
●●● ●●
●●
● ●
●●
●●● ●●●
●●●
●●
●●
●●
●
●●●
●●●●●
●
●●●●●●●●●
● ●●
●●●●
●
●●
●●●
●
●●●●
●●●●
●●●
●●
●● ●
●●●
●
●●●●●●●
●●●●
●●●●
● ●
●
●●●●● ●
● ●●●
●●●
●●●●●
●●● ● ●
●● ● ●● ●●
● ●● ● ● ● ● ●● ● ●● ●
Dgen
● ●
● ● ● ●●●
●● ●●
● ●●●●
●●●●●
●●●●●●●
●●●
●●●
●●
●●●●●●●
●
●●●●
●●●
●●●
●●●
●●●●●● ●●
●
●
●●
●●
●
●●
●●
●
●●●
●
●●●
●●●● ●
●●●●●●●●
●● ●
●●●●
●
●●●●●
●
●●
●●
●
●●●●
●
●●● ●
●●●
●●●
●
●●
●●●
●●
●●●
●
●●●
●●●
●●●
●●●
●●
●●●
●●●
●
●●●
●
●●●
●● ●
●●
●●
●●●
●
●●●
●
● ●
●
●●●●
●●
●●●
●●●●
●●●
●●●●●●●●●●
●●●●
●
●●
●
●●
●●
●●
●● ● ●
●●
●●
●●●
●●●● ●
●●●●
●●●
●●●
●●●●●
●●●●●●
●●●● ●
●●●●
●●●● ●●
●
●●●●● ●● ●● ● ●● ● ●
● ●●●● ● ●●● ●
●●●● ●●●●●●
●● ● ●
●
●●●
●
●●●●
●● ●●● ●●
●●●
●
●●
●●
●●
●
●●●
●● ●●
●
●
●●●●●●●
●●●
●
●●
●
●●●
●
●●
●●●
●
●●●●
●●●●●
●
●●●●
●●●● ●●●
●●●
●●●
● ●
●●●
●●●●
●●●
●
●●●
●
●●
●●
●●
●
●●●
●
●●●
●
●●●
●
●●
●
●●
●●●●
●
●●
●●
●●●
●●
●
●●●
●
●●
●●●
●●●●
●●●
●
●●●●
●●●●
●
●●●●
●●
●
●●
●●●
●●●
●●
●●●
●●
●●●●
● ●●●
●●●
● ●●●●●
●
●●
●●
●●● ●●●
●●
●●●
●●●
●
●●●●
●
●●● ●
●●●●●●●●● ●●●
●● ●
●●●
●●●
●●●
●●●●
●● ●●● ●● ●● ●
● ● ●● ● ●● ● ●
●
●●●● ●
●●●●
●●●
●●●
●● ●●●● ●●
●●
●●
●●
●●●
●
●●●
●●
●● ●●
●
●●
●● ●●●
●●
●●●●
●
●●● ●●
●● ●●●
●●●● ●●
●
●●●●
●●
●●
●●●
●●
●●
●●●
●●●
●●
●●●
●●
●●
● ●●●
●●
●●●
●
●●●●●
●
●●●
●●●●
●●●
●
●●●
●
●●
●●
●
●●●
●●●●
●●●●●●●●●
●●●
●
●●
●●●●●
●●●●●
●
●●●
●
●●●
●●●●●
●●●
●
●●●
●●
●●●●●
●●●
●
● ●●
●●●
●
●●●
●●●
●
●● ●
●
●●●●●
●
●●
● ●●● ●
●
●● ●●●●
●●
●● ● ●●●
●●●
●● ●
● ● ●●● ●● ● ●
● ●
5
● ●● ●●●● ●●●
●●●●
●●●●
●
●●●
●
●●●●
●
●● ●
●●●●●●
●●●●
●●●●
●● ●
● ● ●● ● ●●●
●●
●
●●●●
●●●●●●●●● ●●
●
●●●
●● ●
●
●●
●●●●
●●
●●●
●●
●●
●
●●●
●
●●●
●●
●●●
●●
●
●●●
●●●●●
●●●
●
●●
●●●● ●●●
●●
●●
●●●●
●● ●●
●●● ●●●●
● ●
●●
●●●●
●●
●●
●●
●●●●
●●● ●
●
●●
● ●●●●●
●●●●●●
●●●
●●●● ● ● ●
●●● ●●
●
● ●●● ●●●●
● ●
●● ● ●
● ●● ●●
● ● ●●
● ●● ● ●
●● ●●●
●● ●●●
●●● ●●
●●●
●●● ●● ●
●
●● ●
●●●
●●●●
●●●●
●●●
●●●●
●●●
●●● ● ●●● ●
●
●●●●●●●
●● ●●
●●
●●● ●●●●●
● ●
●
●●●
●●●
●●●
●
●●● ●
●●●
●
● ●●
● ● ●
●●●
● ●●●
●●●
●
●●●● ● ● ● ● ●● ●
● ●● ●● ●●●● ●●●
● ●●●●●●
● ●● ● ●● ● ● ●
● ● ●
● ● ● ●● ●● ● ● ●
●●● ●
● ●● ●
●● ● ●●
●●●
●●●● ●● ● ● ●●●●●● ● ● ●● ●
●●●●
●● ● ●
●
● ● ●● ●●● ● ●● ● ●
●●
● ●
●●●● ●● ●●
●● ●●● ●●●
●● ●
● ● ●●
●●● ●● ●●
●● ● ● ● ●● ● ●●
● ● ● ● ● ●● ●
● ●
● ●
●● ●● ●● ●●●
● ●
● ● ● ●●
●● ● ●●●● ● ● ●●
●●● ●● ● ●
●● ●● ● ● ● ● ● ●
4
● ● ● ● ● ●● ● ● ●● ● ● ● ●● ● ●● ● ● ● ● ● ● ● ●
● ●● ● ● ●● ● ●● ● ● ●
● ● ●
Dgeo
The scatterplot clearly shows one single consistent cloud of point, without discontinuities
which would have indicated patches. This is reassuring, since the data were actually simulated
under an IBD (continuous) model.
67
monmonier. Indeed, the very purpose of this tutorial is simply to show how it can be used
on genetic data.
Let’s take the example from the function’s manpage and detail it. The dataset used is
sim2pop.
data(sim2pop)
sim2pop
summary(sim2pop$pop)
## P01 P02
## 100 30
68
100
Pop A
Pop B
80
60
y
40
20
0
0 20 40 60 80 100
There are two sampled populations in this dataset, with inequal sample sizes (100 and 30).
Twenty microsatellite-like loci are available for all genotypes (no missing data). monmonier
requires several arguments to be specified:
args(monmonier)
D <- dist(sim2pop$tab)
The next argument (cn) is a connection network. Routines for building such networks are
scattered over several packages, but all made available through the function chooseCN. Here,
69
we disable the interactivity of the function (ask=FALSE) and select the second type of graph
which is the graph of Gabriel (type=2).
● ● ● ● ●
●
● ●
● ● ● ●
● ●
●
● ● ●
●
●● ● ●
● ●
●
● ● ●
● ● ●
● ● ● ● ●
●
● ●
●
●● ●
●
●
● ●
●
● ●● ●
●
● ● ● ●
●
●
● ● ●
●
● ●
● ●
● ● ●
●● ● ● ● ●
●
● ●
● ● ● ● ●
●
● ●
● ●
●
●● ●
●
● ● ●
● ●
● ● ● ●
● ●
● ● ● ● ●
● ●
●
●
● ●
●
● ● ● ●●
●
● ●
●
● ●
The obtained network is automatically plotted by the function. It seems we are now ready
to proceed to the algorithm.
70
This plot shows all local differences sorted in decreasing order. The idea behind this is that
a significant boundary would cause local differences to decrease abruptly after the boundary.
This should be used to choose the threshold difference for the algorithm to stop extending
the boundary. Here, there is no indication af an actual boundary.
Why do the algorithm fail to find a boundary? Either because there is no genetic
differentiation to be found, or because the signal differentiating both populations is too
weak to overcome the random noise in genetic distances. What is the Fst between the two
samples?
[Link](sim2pop)
## 1
## 2 0.02960988
This value would be considered as very weak differentiation (FST = 0.023). Is it significant?
We can easily ellaborate a permutation test of this FST value; to save computational time,
we use only a small number of replicates to generate FST values in absence of population
structure:
FST values in absence of population structure would be one order of magnitude lower
(more replicate would give a very low p-value — just replace 10 by 200 in the above
command). In fact, the two samples are indeed genetically differentiated.
71
Can Monmonier’s algorithm find a boundary between the two populations? Yes, if we
get rid of the random noise. This can be achieved using a simple ordination method such as
Principal Coordinates Analysis.
Eigenvalues
2.0
1.5
1.0
0.5
0.0
We retain only the first eigenvalue. The corresponding coordinates are used to redefine the
genetic distances among genotypes. The algorithm is then re-run.
D <- dist(pco1$li)
72
##
## ###########################################################
## # List of paths of maximum differences between neighbours #
## # Using a Monmonier based algorithm #
## ###########################################################
##
## $call:monmonier(xy = sim2pop$other$xy, dist = D, cn = gab, scanthres = FALSE)
##
## # Object content #
## Class: monmonier
## $nrun (number of successive runs): 1
## $run1: run of the algorithm
## $threshold (minimum difference between neighbours): 1.631
## $xy: spatial coordinates
## $cn: connection network
##
## # Runs content #
## # Run 1
## # First direction
## Class: list
## $path:
## x y
## Point_1 14.98299 93.81162
##
## $values:
## 4.563555
## # Second direction
73
## Class: list
## $path:
## x y
## Point_1 14.98299 93.81162
## Point_2 30.74508 87.57724
## Point_3 33.66093 86.14115
## ...
##
## $values:
## 4.563555 3.23581 3.906439 ...
This may take some time... but never more than five minutes on an ’ordinary’ personnal
computer. The object mon1 contains the whole information about the boundaries found. As
several boundaries can be seeked at the same time (argument nrun), you have to specify
about which run and which direction you want to get informations (values of differences or
path coordinates). For instance:
names(mon1)
names(mon1$run1)
mon1$run1$dir1
## $path
## x y
## Point_1 14.98299 93.81162
##
## $values
## [1] 4.563555
It can also be useful to identify which points are crossed by the barrier; this can be done
using [Link]:
[Link](mon1)
## $run1
## $run1$dir1
## [Link] [Link] first second
## Point_1 14.98299 93.81162 11 125
##
## $run1$dir2
74
## [Link] [Link] first second
## Point_1 14.98299 93.81162 11 125
## Point_2 30.74508 87.57724 44 128
## Point_3 33.66093 86.14115 20 128
## Point_4 35.28914 81.12578 68 128
## Point_5 33.85756 74.45492 68 117
## Point_6 38.07622 71.47532 68 122
## Point_7 41.97494 70.02783 35 122
## Point_8 43.45812 67.12026 69 122
## Point_9 42.20206 59.59613 22 122
## Point_10 42.48613 52.55145 22 124
## Point_11 40.08702 48.61795 13 124
## Point_12 39.20791 43.89978 13 127
## Point_13 38.81236 40.34516 62 127
## Point_14 37.32112 36.35265 62 130
## Point_15 37.96426 30.82105 94 130
## Point_16 32.79703 28.00517 16 130
## Point_17 30.12832 28.60376 85 130
## Point_18 20.92496 29.21211 63 119
## Point_19 16.05811 22.72600 61 126
## Point_20 11.72524 21.15519 89 126
## Point_21 10.18696 16.61536 74 89
The returned dataframe contains, in this order, the x and y coordinates of the points of the
barrier, and the identifiers of the two ’parent’ points, that is, the points whose barycenter is
the point of the barrier.
Finally, you can plot very simply the obtained boundary using the method plot:
plot(mon1)
75
● ● ● ●
●
●
● ●
●
● ● ●
● ●
●
● ●
●
●
● ●
●●
● ●
●
● ●
●
● ● ●
● ●
● ●
● ●
●
● ●
●
● ●
●
●
●
● ●
●
● ●●
●
● ●
● ●
●
●
● ●
● ●
● ●
●
●
● ●
●
●
● ● ●
● ●
●
● ●
● ● ● ●
●
●
● ●
●
●
●
●● ●
●
●
● ●
●
● ●
● ● ● ●
●
●
● ● ● ● ●
● ●
●
●
● ●
●
● ● ●
● ● ●
●
●● ●
●
plot(mon1,[Link]=FALSE,bwd=10,col="black")
points(sim2pop$other$xy, cex=2, pch=20,
col=fac2col(pop(sim2pop), [Link]=spectral))
legend("topright",leg=c("Pop A", "Pop B"), pch=c(20),
col=spectral(2), [Link]=2)
76
● Pop A
● ● ● ● Pop B
●
●
●
●
●
● ● ●
●
●
●
●
●
●
● ●
● ●
●
●
●
●
●
●
●
●
●
●
●
●
● ●
●
●
●
●
●
●● ●
● ●
●
●
● ●
●
●
●
●
●
●
● ●
●
●
● ●
● ●
●
● ● ●
●
●
●
●
● ● ●
●
●
● ●
●
●
● ●
● ●
●
●
● ●
●
●
●
●
●●
●
●
●
●
● ●●
●● ●●
●
●
●
●
●
●
●
●●
●
●
●
●
●
●
●
●
●
● ●
●
●
●
●
●
●
● ●●
●
●
●
●
●
●
●
●
● ●
●
●
●
●
●
●
● ● ●
●
●●
●
●
●
●
●
● ●
● ●
●
●
● ●
●
●
●
●
●● ●
●
●
●
●
●
●
●
●
●
●●
● ●
●
●
●
● ●
●
●
●
●
● ●
●
●●
●
● ●
●
●
●
●
●
●
●
●
● ●
●
● ●
● ● ●
●
●● ●
●
●
●
●
●
●
●
●
● ●
●
●
●
● ●
● ●
●
●
●
● ● ●
● ●
●
●
●
●● ●
●
●
8 Simulating hybridization
The function hybridize allows to simulate hybridization between individuals from two
distinct genetic pools, or more broadly between two genind objects. Here, we use the
example from the manpage of the function, to go a little further. Please have a look at
the documentation, especially at the different possible outputs (outputs for the software
STRUCTURE is notably available).
77
salers <- temp$Salers
zebu <- temp$Zebu
zebler <- hybridize(salers, zebu, n=40, pop="zebler")
Finally, note that despite this example shows hybridization between diploid organisms,
hybridize is not restrained to this case. In fact, organisms with any even level of ploidy can
be used, in which case half of the genes is taken from each reference population. Ultimately,
more complex mating schemes could be implemented... suggestion or (better) contributions
are welcome!
78
References
[1] D. Charif and J.R. Lobry. SeqinR 1.0-2: a contributed package to the R project
for statistical computing devoted to biological sequences retrieval and analysis. In
H.E. Roman U. Bastolla, M. Porto and M. Vendruscolo, editors, Structural approaches
to sequence evolution: Molecules, networks, populations, Biological and Medical Physics,
Biomedical Engineering, pages 207–232. Springer Verlag, New York, 2007. ISBN : 978-
3-540-35305-8.
[2] S. Dray and A.-B. Dufour. The ade4 package: implementing the duality diagram for
ecologists. Journal of Statistical Software, 22(4):1–20, 2007.
[4] T. Jombart. adegenet: a R package for the multivariate analysis of genetic markers.
Bioinformatics, 24:1403–1405, 2008.
[5] T. Jombart, S. Devillard, A.-B. Dufour, and D. Pontier. Revealing cryptic spatial
patterns in genetic variability by a new multivariate method. Heredity, 101:92–103,
2008.
[7] T. Jombart, D. Pontier, and A-B. Dufour. Genetic markers in the playground of
multivariate analysis. Heredity, 102:330–341, 2009.
[8] Thibaut Jombart, Sebastien Devillard, and Francois Balloux. Discriminant analysis
of principal components: a new method for the analysis of genetically structured
populations. BMC Genetics, 11(1):94, 2010.
[11] M. Nei. Analysis of gene diversity in subdivided populations. Proc Natl Acad Sci U S
A, 70(12):3321–3323, Dec 1973.
[12] R Development Core Team. R: A Language and Environment for Statistical Computing.
R Foundation for Statistical Computing, Vienna, Austria, 2011. ISBN 3-900051-07-0.
79