estimate_liability_single
estimates the genetic component of the full
liability and/or the full liability for a number of individuals based
on their family history.
estimate_liability_single(
.tbl = NULL,
family_graphs = NULL,
h2 = 0.5,
pid = "pid",
fid = "fid",
family_graphs_col = "fam_graph",
role = NULL,
out = c(1),
tol = 0.01,
useMixture = FALSE,
method = "PA"
)
If family
and threshs
are two matrices, lists or
data frames that can be converted into tibbles, if family
has two
columns named like the strings represented in pid
and fid
, if
threshs
has a column named like the string given in pid
as
well as a column named "lower" and a column named "upper" and if the
liability-scale heritability h2
, out
, tol
and
always_add
are of the required form, then the function returns a
tibble with either four or six columns (depending on the length of out).
The first two columns correspond to the columns fid
and pid
'
present in family
.
If out
is equal to c(1)
or c("genetic")
, the third
and fourth column hold the estimated genetic liability as well as the
corresponding standard error, respectively.
If out
equals c(2)
or c("full")
, the third and
fourth column hold the estimated full liability as well as the
corresponding standard error, respectively.
If out
is equal to c(1,2)
or c("genetic","full")
,
the third and fourth column hold the estimated genetic liability as
well as the corresponding standard error, respectively, while the fifth and
sixth column hold the estimated full liability as well as the corresponding
standard error, respectively.
A matrix, list or data frame that can be converted into a tibble.
Must have at least five columns that hold the family identifier, the personal
identifier, the role and the lower and upper thresholds. Note that the
role must be one of the following abbreviations
- g
(Genetic component of full liability)
- o
(Full liability)
- m
(Mother)
- f
(Father)
- c[0-9]*.[0-9]*
(Children)
- mgm
(Maternal grandmother)
- mgf
(Maternal grandfather)
- pgm
(Paternal grandmother)
- pgf
(Paternal grandfather)
- s[0-9]*
(Full siblings)
- mhs[0-9]*
(Half-siblings - maternal side)
- phs[0-9]*
(Half-siblings - paternal side)
- mau[0-9]*
(Aunts/Uncles - maternal side)
- pau[0-9]*
(Aunts/Uncles - paternal side).
Defaults to NULL
.
A tibble with columns pid and family_graph_col. See prepare_graph for construction of the graphs. The family graphs Defaults to NULL.
A number representing the heritability on liability scale for a single phenotype. Must be non-negative. Note that under the liability threshold model, the heritability must also be at most 1. Defaults to 0.5.
A string holding the name of the column in .tbl
(or family
and
threshs
) that hold the personal identifier(s). Defaults to "PID".
A string holding the name of the column in .tbl
or family
that
holds the family identifier. Defaults to "fid".
Name of column with family graphs in family_graphs. Defaults to "fam_graph".
A string holding the name of the column in .tbl
that
holds the role. Each role must be chosen from the following list of abbreviations
- g
(Genetic component of full liability)
- o
(Full liability)
- m
(Mother)
- f
(Father)
- c[0-9]*.[0-9]*
(Children)
- mgm
(Maternal grandmother)
- mgf
(Maternal grandfather)
- pgm
(Paternal grandmother)
- pgf
(Paternal grandfather)
- s[0-9]*
(Full siblings)
- mhs[0-9]*
(Half-siblings - maternal side)
- phs[0-9]*
(Half-siblings - paternal side)
- mau[0-9]*
(Aunts/Uncles - maternal side)
- pau[0-9]*
(Aunts/Uncles - paternal side).
Defaults to "role".
A character or numeric vector indicating whether the genetic component
of the full liability, the full liability or both should be returned. If out = c(1)
or
out = c("genetic")
, the genetic liability is estimated and returned. If out = c(2)
or
out = c("full")
, the full liability is estimated and returned. If out = c(1,2)
or
out = c("genetic", "full")
, both components are estimated and returned.
Defaults to c(1)
.
A number that is used as the convergence criterion for the Gibbs sampler. Equals the standard error of the mean. That is, a tolerance of 0.2 means that the standard error of the mean is below 0.2. Defaults to 0.01.
Logical indicating whether the mixture model should be used to calculate the genetic liability. Requires K_i and K_pop columns as well as lower and upper. Defaults to FALSE.
Estimation method used to estimate the (genetic) liability. Defaults to "PA". Current implementation of PA only supports estimates of genetic liability. For full or both genetic and full liability estimates use "Gibbs".
This function can be used to estimate either the genetic component of the full liability, the full liability or both. It is possible to input either
future_apply
, estimate_liability_multi
,
estimate_liability
sims <- simulate_under_LTM(fam_vec = c("m","f","s1"), n_fam = NULL,
add_ind = TRUE, h2 = 0.5, n_sim=10, pop_prev = .05)
#
estimate_liability_single(.tbl = sims$thresholds,
h2 = 0.5, pid = "indiv_ID", fid = "fid", role = "role", out = c(1),
tol = 0.01)
#
sims <- simulate_under_LTM(fam_vec = c(), n_fam = NULL, add_ind = TRUE,
h2 = 0.5, n_sim=10, pop_prev = .05)
#
estimate_liability_single(.tbl = sims$thresholds,
h2 = 0.5, pid = "indiv_ID", fid = "fid", role = "role",
out = c("genetic"), tol = 0.01)
Run the code above in your browser using DataLab