poppr (version 2.3.0)

bootgen2genind: Switch between genind and genclone objects.

Description

as.genclone will create a genclone object from a genind object OR anything that can be passed to the genind initializer.

Usage

bootgen2genind(bg)
as.genclone(x, ..., mlg, mlgclass = TRUE)
genclone2genind(x)

Arguments

bg
a bootgen object
x
a genind or genclone object
...
arguments passed on to the genind constructor
mlg
an optional vector of multilocus genotypes as integers
mlgclass
should the mlg slot be of class MLG?

Details

genclone2genind will remove the mlg slot from the genclone object, creating a genind object.

See Also

splitStrata, genclone, read.genalex aboot

Examples

Run this code
data(Aeut)
Aeut
Aeut.gc <- as.genclone(Aeut)
Aeut.gc
Aeut.gi <- genclone2genind(Aeut.gc)
Aeut.gi
data(nancycats)
nan.bg  <- new("bootgen", nancycats[pop = 9])
nan.bg
nan.gid <- bootgen2genind(nan.bg)
nan.gid

Run the code above in your browser using DataLab