Learn R Programming

strataG (version 1.0.5)

sequence2gtypes: Convert Sequences To gtypes

Description

Create a gtypes object from sequence data.

Usage

sequence2gtypes(x, strata = NULL, seq.names = NULL, schemes = NULL, description = NULL, other = NULL)

Arguments

x
DNA sequences as a character matrix, a DNAbin object, or multidna object.
strata
a vector or factor giving stratification for each sequence. If not provided all individuals are assigned to the same stratum (Default).
seq.names
names for each set of sequences. If not provided default names are generated.
schemes
an optional data.frame of stratification schemes.
description
an optional label for the object.
other
a slot to carry other related information - unused in package analyses.

Value

a gtypes object.

Examples

Run this code
#--- create a haploid sequence (mtDNA) gtypes object
data(dolph.strata)
data(dolph.seqs)
strata <- dolph.strata$fine
names(strata) <- dolph.strata$ids
dloop.fine <- sequence2gtypes(dolph.seqs, strata, seq.names = "dLoop", 
description = "dLoop: fine-scale stratification")

Run the code above in your browser using DataLab