#' Simulated autohexaploid dataset.
#'
#' A dataset of a hypothetical autohexaploid full-sib population
#' containing three homology groups
#'
#' @format An object of class \code{mappoly.data} which contains a
#' list with the following components:
#' \describe{
#' \item{plody}{ploidy level = 6}
#' \item{n.ind}{number individuals = 300}
#' \item{n.mrk}{total number of markers = 1500}
#' \item{ind.names}{the names of the individuals}
#' \item{mrk.names}{the names of the markers}
#' \item{dosage.p1}{a vector containing the dosage in
#' parent P for all \code{n.mrk} markers}
#' \item{dosage.p2}{a vector containing the dosage in
#' parent Q for all \code{n.mrk} markers}
#' \item{chrom}{a vector indicating the chromosome each marker
#' belongs. Zero indicates that the marker was not assigned to any
#' chromosome}
#' \item{genome.pos}{Physical position of the markers into the
#' sequence}
#' \item{geno.dose}{a matrix containing the dosage for each markers (rows)
#' for each individual (columns). Missing data are represented by
#' \code{ploidy_level + 1 = 7}}
#' \item{n.phen}{There are no phenotypes in this simulation}
#' \item{phen}{There are no phenotypes in this simulation}
#' \item{chisq.pval}{vector containing p-values for all markers associated to
#' the chi-square test for the expected segregation patterns
#' under Mendelian segregation}
#' }
"hexafake"
#' Simulated autohexaploid dataset with genotype probabilities.
#'
#' A dataset of a hypothetical autohexaploid full-sib population
#' containing three homology groups. This dataset contains the
#' probability distribution of the genotypes and 2\% of missing data,
#' but is essentially the same dataset found in \code{\link[mappoly]{hexafake}}
#'
#' @format An object of class \code{mappoly.data} which contains a
#' list with the following components:
#' \describe{
#' \item{ploidy}{ploidy level = 6}
#' \item{n.ind}{number individuals = 300}
#' \item{n.mrk}{total number of markers = 1500}
#' \item{ind.names}{the names of the individuals}
#' \item{mrk.names}{the names of the markers}
#' \item{dosage.p1}{a vector containing the dosage in
#' parent P for all \code{n.mrk} markers}
#' \item{dosage.p2}{a vector containing the dosage in
#' parent Q for all \code{n.mrk} markers}
#' \item{chrom}{a vector indicating which sequence each marker
#' belongs. Zero indicates that the marker was not assigned to any
#' sequence}
#' \item{genome.pos}{Physical position of the markers into the
#' sequence}
#' \item{prob.thres = 0.95}{probability threshold to associate a marker
#' call to a dosage. Markers with maximum genotype
#' probability smaller than 'prob.thres' are considered
#' as missing data for the dosage calling purposes}
#' \item{geno}{a data.frame
#' containing the probability distribution for each combination of
#' marker and offspring. The first two columns represent the marker
#' and the offspring, respectively. The remaining elements represent
#' the probability associated to each one of the possible
#' dosages}
#' \item{geno.dose}{a matrix containing the dosage for each markers (rows)
#' for each individual (columns). Missing data are represented by
#' \code{ploidy_level + 1 = 7}}
#' \item{n.phen}{There are no phenotypes in this simulation}
#' \item{phen}{There are no phenotypes in this simulation}
#' }
"hexafake.geno.dist"
#' Resulting maps from \code{\link[mappoly]{hexafake}}
#'
#' A list containing three linkage groups estimated using the procedure available in
#' [MAPpoly's tutorial](https://mmollina.github.io/MAPpoly/#estimating_the_map_for_a_given_order)
#'
#' @format A list containing three objects of class \code{mappoly.map}, each one
#' representing one linkage group in the simulated data.
#'
"maps.hexafake"
#' Autotetraploid potato dataset.
#'
#' A dataset of the B2721 population which derived from a cross between
#' two tetraploid potato varieties: Atlantic × B1829-5. The population comprises 160
#' offsprings genotyped with the SolCAP Infinium 8303 potato array. The original data
#' set can be found in [The Solanaceae Coordinated Agricultural Project (SolCAP) webpage](http://solcap.msu.edu/potato_infinium.shtml)
#' The dataset also contains the genomic order of the SNPs from the Solanum
#' tuberosum genome version 4.03. The genotype calling was performed using the
#' fitPoly R package.
#'
#' @format An object of class \code{mappoly.data} which contains a
#' list with the following components:
#' \describe{
#' \item{ploidy}{ploidy level = 4}
#' \item{n.ind}{number individuals = 160}
#' \item{n.mrk}{total number of markers = 4017}
#' \item{ind.names}{the names of the individuals}
#' \item{mrk.names}{the names of the markers}
#' \item{dosage.p1}{a vector containing the dosage in
#' parent P for all \code{n.mrk} markers}
#' \item{dosage.p2}{a vector containing the dosage in
#' parent Q for all \code{n.mrk} markers}
#' \item{chrom}{a vector indicating the chromosome each marker
#' belongs. Zero indicates that the marker was not assigned to any
#' sequence}
#' \item{genome.pos}{Physical position of the markers into the
#' sequence}
#' \item{geno.dose}{a matrix containing the dosage for each markers (rows)
#' for each individual (columns). Missing data are represented by
#' \code{ploidy_level + 1 = 5}}
#' \item{n.phen}{There are no phenotypes in this simulation}
#' \item{phen}{There are no phenotypes in this simulation}
#' \item{chisq.pval}{vector containing p-values for all markers associated to
#' the chi-square test for the expected segregation patterns
#' under Mendelian segregation}
#' }
"tetra.solcap"
#' Autotetraploid potato dataset with genotype probabilities.
#'
#' A dataset of the B2721 population which derived from a cross between
#' two tetraploid potato varieties: Atlantic × B1829-5. The population comprises 160
#' offsprings genotyped with the SolCAP Infinium 8303 potato array. The original data
#' set can be found in [The Solanaceae Coordinated Agricultural Project (SolCAP) webpage](http://solcap.msu.edu/potato_infinium.shtml)
#' The dataset also contains the genomic order of the SNPs from the Solanum
#' tuberosum genome version 4.03. The genotype calling was performed using the
#' fitPoly R package. Although this dataset contains the
#' probability distribution of the genotypes,
#' it is essentially the same dataset found in \code{\link[mappoly]{tetra.solcap}}
#'
#' @format An object of class \code{mappoly.data} which contains a
#' list with the following components:
#' \describe{
#' \item{ploidy}{ploidy level = 4}
#' \item{n.ind}{number individuals = 160}
#' \item{n.mrk}{total number of markers = 4017}
#' \item{ind.names}{the names of the individuals}
#' \item{mrk.names}{the names of the markers}
#' \item{dosage.p1}{a vector containing the dosage in
#' parent P for all \code{n.mrk} markers}
#' \item{dosage.p2}{a vector containing the dosage in
#' parent Q for all \code{n.mrk} markers}
#' \item{chrom}{a vector indicating which sequence each marker
#' belongs. Zero indicates that the marker was not assigned to any
#' sequence}
#' \item{genome.pos}{Physical position of the markers into the
#' sequence}
#' \item{prob.thres = 0.95}{probability threshold to associate a marker
#' call to a dosage. Markers with maximum genotype
#' probability smaller than 'prob.thres' are considered
#' as missing data for the dosage calling purposes}
#' \item{geno}{a data.frame
#' containing the probability distribution for each combination of
#' marker and offspring. The first two columns represent the marker
#' and the offspring, respectively. The remaining elements represent
#' the probability associated to each one of the possible
#' dosages}
#' \item{geno.dose}{a matrix containing the dosage for each markers (rows)
#' for each individual (columns). Missing data are represented by
#' \code{ploidy_level + 1 = 5}}
#' \item{n.phen}{There are no phenotypes in this simulation}
#' \item{phen}{There are no phenotypes in this simulation}
#' }
"tetra.solcap.geno.dist"
#' Resulting maps from \code{\link[mappoly]{tetra.solcap}}
#'
#' A list containing 12 linkage groups estimated using genomic order and dosage call
#'
#' @format A list containing 12 objects of class \code{mappoly.map}, each one
#' representing one linkage group in the \code{\link[mappoly]{tetra.solcap}} dataset.
#'
"solcap.dose.map"
#' Resulting maps from \code{\link[mappoly]{tetra.solcap}}
#'
#' A list containing 12 linkage groups estimated using \code{\link[mappoly]{mds_mappoly}} order and dosage call
#'
#' @format A list containing 12 objects of class \code{mappoly.map}, each one
#' representing one linkage group in the \code{\link[mappoly]{tetra.solcap}} dataset.
#'
"solcap.mds.map"
#' Resulting maps from \code{\link[mappoly]{tetra.solcap.geno.dist}}
#'
#' A list containing 12 linkage groups estimated using genomic order and prior probability distribution
#'
#' @format A list containing 12 objects of class \code{mappoly.map}, each one
#' representing one linkage group in the \code{\link[mappoly]{tetra.solcap.geno.dist}} dataset.
#'
"solcap.prior.map"
#' Resulting maps from \code{\link[mappoly]{tetra.solcap}}
#'
#' A list containing 12 linkage groups estimated using genomic order, dosage call and global calling error
#'
#' @format A list containing 12 objects of class \code{mappoly.map}, each one
#' representing one linkage group in the \code{\link[mappoly]{tetra.solcap}} dataset.
#'
"solcap.err.map"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.