The following methods allow the user to quickly change the population of a genind object.
setPop(x, formula = NULL)setPop(x) <- value
a genind or genlight object
a nested formula indicating the order of the population strata.
same as formula
Zhian N. Kamvar
data(microbov)
strata(microbov) <- data.frame(other(microbov))
# Currently set on just
head(pop(microbov))
# setting the strata to both Pop and Subpop
setPop(microbov) <- ~coun/breed
head(pop(microbov))
if (FALSE) {
# Can be used to create objects as well.
microbov.old <- setPop(microbov, ~spe)
head(pop(microbov.old))
}
Run the code above in your browser using DataLab