Description Usage Arguments Details Value Author(s) Examples
Return summaries of individual- and multi- locus genotypes for adults and progeny.
1 | multilocusTypes(adata)
|
adata |
data frame: the checked and preprocessed dataset
returned by |
Function multilocusTypes summarises the different genotypes
present at each locus in the dataset (separately for progeny and
adults), and across the loci (again, separately for progeny and
adults). multilocusTypes returns a list structure with
several elements.
A list structure, with the following components:
uniqueProgenyTypesA data frame containing, for each locus, the distinct genotypes that are present in the progeny in the dataset, and the numbers of progeny containing each genotype at that locus.
numUniqueProgenyTypesThe number of unique genotypes at each locus in the progeny in the dataset.
uniqueAdultTypesA data frame containing, for each locus, the distinct genotypes that are present in the adults in the dataset, and the numbers of adults containing each genotype at that locus.
numUniqueAdultTypesThe number of unique genotypes at each locus in the adult set.
uniqueProgenyMLTypesA data frame containing the distinct genotypes across all loci that are present in the progeny in the dataset, and the numbers of progeny containing each multilocus genotype.
numUniqueProgenyMLTypesThe total number of progeny multilocus genotypes.
uniqueAdultMLTypesA data frame containing, the distinct genotypes across all loci that are present in the adults in the dataset, and the numbers of adults containing each multilocus genotype.
numUniqueAdultMLTypesThe total number of adult multilocus genotypes.
Alexander Zwart (alec.zwart at csiro.au)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ## Using the example dataset 'FR_Genotype':
data(FR_Genotype)
## Since we did not load this dataset using inputData(), we must
## first process it with preprocessData() before doing anything
## else:
gData <- preprocessData(FR_Genotype,
numLoci=7,
ploidy=4,
dataType="genotype",
dioecious=TRUE,
mothersOnly=TRUE)
head(gData) ## Checked and Cleaned version of FR_Genotype
mTypes <- multilocusTypes(gData)
## mTypes is a list structure - individual components can be
## printed to the screen, or saved to file via, e.g. read.csv().
mTypes$numUniqueProgenyTypes
## Components of mTypes
names(mTypes)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.