Learn R Programming

optiSel (version 2.0.7)

freqlist: Combines Objects Computed with Function haplofreq() into a List

Description

The function combines objects computed with function haplofreq into a list with class HaploFreq and adds some attributes.

Usage

freqlist(...)

Value

A list with class HaploFreq

Arguments

...

R-objects computed with function haplofreq.

Author

Robin Wellmann

Details

The function combines objects computed with function haplofreq into a list with class HaploFreq.

Examples

Run this code
data(map)
data(Cattle)
dir   <- system.file("extdata", package="optiSel")
files <- paste(dir, "/Chr", 1:2, ".phased", sep="")

Freq <- freqlist(
 haplofreq(files, Cattle, map, thisBreed="Angler", refBreeds="Rotbunt",   minL=2.0),
 haplofreq(files, Cattle, map, thisBreed="Angler", refBreeds="Holstein",  minL=2.0),
 haplofreq(files, Cattle, map, thisBreed="Angler", refBreeds="Fleckvieh", minL=2.0)
  )

#The component names are the reference breeds by default:
names(Freq)

plot(Freq, ID=1, hap=2, refBreed="Rotbunt")

plot(Freq, ID=1, hap=2, refBreed="Holstein", Chr=1)

Run the code above in your browser using DataLab