cross.saturate: Saturate an existing genetic map.

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/cross.saturate.R

Description

Saturating an existing genetic map using markers derived from phenotype data.

Usage

1
2
3
cross.saturate(population, cross, map=c("genetic","physical"), placeUsing=c("qtl",
  "correlation"), flagged = c("remove","warn","ignore"), threshold=3, chr, env,
  use.orderMarkers=FALSE, verbose=FALSE, debugMode=0)

Arguments

population

An object of class population. See create.population for details.

cross

An object of class cross. See read.cross for details. If not supplied, it will be created using data from the population object

map

Which map should be used for comparison:

  • genetic - genetic map from cross$maps$genetic.

  • physical - physical map from cross$maps$physical.

placeUsing

How should the position of the new markers on the saturated map be determinated:

  • qtl - position the new markers between / next to markers with high LOD score (see threshold).

  • correlation - position the new markers on the locations with the highest correction to markers on the physical map from cross$maps$physical.

flagged

How to handle the markers influenced by epistatic or environmental interactions:

  • remove - warn about every marker affected and remove them.

  • warn - warn about every marker affected but leave them in.

  • ignore - leave them in.

threshold

Specifies a threshold for the selection of new phenotype markers (see markerPlacementPlot).

chr

When specified the algorithm only saturates a subset of chromosomes. If not specified, all the chromosomes will be saturated.

env

Vector of environmental conditions - for each of the individuals specifies a condition. Ignored if missing.

use.orderMarkers

If true the algorithm (after initial saturation) performs an orderMarkers on the newly created map.

verbose

Be verbose.

debugMode

Either use 1 or 2, this will modify the amount of information returned to the user. 1) Print out checks, 2) Print additional time information.

Details

This function saturates an existing map with markers derived from the phenotype data provided inside either the cross or population object. A correlation matrix between those two sets of markers is made, and new markers are assigned to the 'optimal' location on the map.

Value

An object of class population. See create.population for details.

Author(s)

Konrad Zych k.zych@rug.nl, Danny Arends Danny.Arends@gmail.com Maintainer: Konrad Zych k.zych@rug.nl

See Also

Examples

1
2
	data(testPopulation)
	cross <- cross.saturate(testPopulation,map="genetic",verbose=TRUE,debugMode=2)

pheno2geno documentation built on May 2, 2019, 6:35 a.m.