tfa: Factor analysis of temporal or ancient DNA samples

Description Usage Arguments Value Author(s) References See Also Examples

View source: R/tfa.R

Description

tfa estimates factors describing population structure for temporal samples of DNA, correcting individual scores for the effect of allele frequency drift through time

Usage

1
2
tfa(sample_ages, Y, k = 2, lambda = 0.001, cov_matrix = NULL,
  center = TRUE, coverage = NULL, log = TRUE)

Arguments

sample_ages

a numeric vector corresponding to the age of each sample where age = 0 is for present-day individuals. By default, ages are converted into normalized dates between 0 and 1 (date = 1 for present-day individuals).

Y

an nxp numeric matrix containing genetic information for n individuals recorded in p columns. Genetic information could be encoded by any numeric value, not necessarily an integer value. Missing data are not allowed.

k

an integer value for the number of factor to compute. The default value is k = 2.

lambda

a nonnegative numeric value which corresponds to the drift parameter (noise-to-temporal-signal ratio).

cov_matrix

a user-specified prior covariance matrix for the n samples. If NULL, the prior matrix is computed as C[i,j] = min(t_i, t_j), where t_i and t_j are the normalized sample dates, taking values between 0 and 1. The option is useful when the sample size is large, and when the user wants to use a pre-computed covariance matrix to save time.

center

a logical value indicating whether the genetic values should be centered by substracting their row mean.

coverage

a numerical vector containing information on DNA sample coverage. Note that coverage differences might strongly bias factor analysis results. Including coverage information allows the program to adjust for coverage bias by using a local regression (loess). We also suggest that correction of the data for low coverage should be performed before analysis by using the function coverage_adjust.

log

a logical value indicating that corrections are performed from log(coverage) instead of coverage.

Value

A list with the following attributes:

u

an nxk numeric matrix containing the k corrected factors

singular.values

a vector of size n containing the singular values (std dev) for the adjusted factors

tn

a vector containing the normalized sample dates

cov

the covariance matrix C used for correction (default: Brownian covariance matrix)

Author(s)

Olivier Francois, olivier.francois@univ-grenoble-alpes.fr

References

François, O., Liégeois, S., Demaille, B., Jay, F. (2019). Inference of population genetic structure from temporal samples of DNA. bioRxiv, 801324. https://www.biorxiv.org/content/10.1101/801324v3

François, O., Jay, F. (2020). Factor analysis of ancient population genomic samples. Under review.

See Also

England_BA, coverage_adjust, choose_lambda, ancestry_coefficients

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
library(tfa)

# Ancient DNA from Bronze Age Great Britain samples
# including Yamnaya, early farmers (Anatolia) and hunter-gatherers (Serbia)
data(england_ba)

attach(England_BA)
coverage <- meta$Coverage
geno <- coverage_adjust(genotype, coverage, K = 4, log = TRUE)

mod  <- tfa(age,
            geno,
            k = 3,
            lambda = 5e-1,
            center = TRUE,
            coverage = coverage,
            log = TRUE)

plot(mod$u, pch = 19, cex = 2, col = "grey90",
     xlab = "Factor 1", ylab = "Factor 2",
     main = "FA")

m_yamnaya <- apply(mod$u[meta$Group.ID == "Russia_Yamnaya",],
                   2, mean)
m_anatolia <- apply(mod$u[meta$Group.ID == "Anatolia_N",],
                    2, mean)
m_hg <- apply(mod$u[meta$Group.ID == "Serbia_HG",],
              2, mean)

points(rbind(m_yamnaya, m_anatolia, m_hg), lwd = 2)

lines(rbind(m_yamnaya, m_anatolia, m_hg, m_yamnaya))

points(mod$u[meta$Group.ID == "Russia_Yamnaya",],
       pch = 8, cex = .6, col = "darkblue")

points(mod$u[meta$Group.ID == "Anatolia_N",],
       pch = 8, cex = .6, col = "salmon3")

points(mod$u[meta$Group.ID ==  "Serbia_HG",],
       pch = 8, cex = .6, col = "olivedrab")

points(mod$u[meta$Group.ID == "England_Bell_Beaker",],
       pch = 19, cex = .6, col = "yellow4")

points(mod$u[meta$Group.ID == "England_BA",],
       pch = 19, cex = .6, col = "yellow3")

points(mod$u[meta$Group.ID %in% c("England_N", "Scotland_N"),],
       pch = 19, cex = .6, col = "salmon1")

legend(x = 10, y = -19, cex = .6,
      legend = c("Early Farmers", "Hunter Gatherers", "Steppe"),
      col = c("salmon3", "olivedrab", "darkblue"), pch = 8)
legend(x = -24, y = -19, cex = .6,
       legend = c("Neolithic GB", "Bronze Age GB", "Bell Beaker"),
       col = c("salmon1", "yellow3", "yellow4"), pch = 19)
detach(England_BA)
# rm(list = ls())

bcm-uga/tfa documentation built on Aug. 28, 2020, 2:46 p.m.