Learn R Programming

relSim (version 1.0.0)

writeCSV: Saves/writes population frequencies to disk

Description

Writes a population of profiles to disk using the original allele designations rather than the internal integer representations that are used for the other functions.

Usage

writeCSV(fileName, pop, n = 100, delim = ",")

Value

a matrix which contains the table written to file.

Arguments

fileName

the name and path where the population profiles are to be saved to.

pop

a list containing elements loci and freqs. loci is a vector with the loci in the data set. freqs is a list of vectors with elements named after the elements in loci. Each locus in freqs is a vector of allele frequencies with the allele names given by the named elements. TRUE then an Amelogenin marker is added to the population, and all the profiles are set to male XY, although this is coded to 1,2 to keep the allele designations numeric.

n

the number of people in the database. This is arbitrarily set to 100 by default.

delim

The allele delimiter.

Author

James M. Curran

See Also

breedFst USCaucs

Examples

Run this code

data(USCaucs)
if (FALSE) {
  writeCSV("USCaucs.csv", USCaucs)
}

Run the code above in your browser using DataLab