sim_nei_qtl: Phenotype simulation for neighbor QTL effects

Description Usage Arguments Details Value Author(s) Examples

View source: R/sim_nei_qtl.R

Description

A function to simulate neighbor effects with given QTL effects, distance scale, and causal markers.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
sim_nei_qtl(
  genoprobs,
  a2,
  d2,
  smap,
  scale,
  grouping = rep(1, nrow(smap)),
  n_QTL = 1,
  contrasts = NULL
)

Arguments

genoprobs

Conditional genotype probabilities as taken from qtl::calc.genoprob().

a2

A numeric scalar indicating additive deviation.

d2

A numeric scalar indicating dominance deviation.

smap

A matrix showing a spatial map for individuals. The first and second column include spatial positions along an x-axis and y-axis, respectively.

scale

A numeric scalar indicating the maximum spatial distance between a focal individual and neighbors to define neighbor effects.

grouping

An integer vector assigning each individual to a group. This argument can be used when smap contains different experimental replicates. Default setting means that all individuals are belong to a single group.

n_QTL

A positive integer indicating the number of causal markers.

contrasts

An optional vector composed of three TRUE/FALSE values, which represents the presence/absence of specific genotypes as c(TRUE/FALSE, TRUE/FALSE, TRUE/FALSE) = AA, AB, BB. If NULL, it is compiled from genoprobs automatically.

Details

Major genetic effects, a2 and d2, are allocated to causal loci randomly selected by n_QTL, while minor polygenic effects (i.e., 1% of a2) are allocated to the other loci.

Value

A numeric matrix containing individuals x marker elements for neighbor QTL effects.

Author(s)

Yasuhiro Sato (sato.yasuhiro.36c@kyoto-u.jp)

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
set.seed(1234)
test_map <- qtl::sim.map(len=rep(20,5),n.mar=3,include.x=FALSE)
test_cross <- qtl::sim.cross(test_map,n.ind=50)
test_smap <- cbind(runif(50,1,100),runif(50,1,100))
test_genoprobs <- qtl::calc.genoprob(test_cross,step=2)

nei_eff <- sim_nei_qtl(genoprobs=test_genoprobs, a2=0.5, d2=0.5,
                       smap=test_smap,
                       scale=20, n_QTL=1)

test_scan <- scan_neighbor(genoprobs=test_genoprobs,
                           pheno=nei_eff$nei_y,
                           smap=test_smap, scale=20
                           )
plot_nei(test_scan)

rNeighborQTL documentation built on April 9, 2021, 9:06 a.m.