rbind.sim_geno: Join genotype imputations for different individuals

View source: R/rbind_sim_geno.R

rbind.sim_genoR Documentation

Join genotype imputations for different individuals

Description

Join multiple genotype imputation objects, as produced by sim_geno(), for the same set of markers but for different individuals.

Usage

## S3 method for class 'sim_geno'
rbind(...)

Arguments

...

Genotype imputation objects as produced by sim_geno(). Must have the same set of markers and genotypes.

Value

An object of class "sim_geno", like the input; see sim_geno().

See Also

cbind.sim_geno(), sim_geno()

Examples

grav2 <- read_cross2(system.file("extdata", "grav2.zip", package="qtl2"))
map <- insert_pseudomarkers(grav2$gmap, step=1)
drawsA <- sim_geno(grav2[1:5,], map, error_prob=0.002, n_draws=4)
drawsB <- sim_geno(grav2[6:12,], map, error_prob=0.002, n_draws=4)
draws <- rbind(drawsA, drawsB)


rqtl/qtl2 documentation built on March 20, 2024, 6:35 p.m.