subset.sim_geno: Subsetting imputed genotypes

Description Usage Arguments Value Examples

Description

Pull out a specified set of individuals and/or chromosomes from the results of sim_geno().

Usage

1
2
3
4
5
## S3 method for class 'sim_geno'
subset(x, ind = NULL, chr = NULL, ...)

## S3 method for class 'sim_geno'
x[ind = NULL, chr = NULL]

Arguments

x

Imputed genotypes as output from sim_geno().

ind

A vector of individuals: numeric indices, logical values, or character string IDs

chr

A vector of chromosomes: logical values, or character string IDs. Numbers are interpreted as character string IDs.

...

Ignored.

Value

The input imputed genotypes, with the selected individuals and/or chromsomes.

Examples

1
2
3
4
5
6
7
grav2 <- read_cross2(system.file("extdata", "grav2.zip", package="qtl2geno"))

dr <- sim_geno(grav2, n_draws=4)
# keep just individuals 1:5, chromosome 2
drsub <- dr[1:5,2]
# keep just chromosome 2
drsub2 <- dr[,2]

rqtl/qtl2geno documentation built on May 28, 2019, 2:36 a.m.