diff --git a/NAMESPACE b/NAMESPACE index 8b6dded..887ac8a 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -21,6 +21,7 @@ export(linkage) export(load_fasta) export(logml2String) export(lueGenePopData) +export(lueGenePopDataPop) export(lueNimi) export(noIndex) export(ownNum2Str) diff --git a/R/lueGenePopDataPop.R b/R/lueGenePopDataPop.R index 1080f12..7b199ed 100644 --- a/R/lueGenePopDataPop.R +++ b/R/lueGenePopDataPop.R @@ -1,3 +1,9 @@ +#' @title Read GenePop Data +#' @note The data is given in the form where the last column tells the +#' group. popnames are as before. +#' @param tiedostonNimi Name of the file +#' @return List containing data and popnames +#' @export lueGenePopDataPop <- function(tiedostonNimi) { # Data annetaan muodossa, jossa viimeinen sarake kertoo ryhmän. # popnames on kuten ennenkin. diff --git a/man/lueGenePopDataPop.Rd b/man/lueGenePopDataPop.Rd new file mode 100644 index 0000000..0f55482 --- /dev/null +++ b/man/lueGenePopDataPop.Rd @@ -0,0 +1,21 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/lueGenePopDataPop.R +\name{lueGenePopDataPop} +\alias{lueGenePopDataPop} +\title{Read GenePop Data} +\usage{ +lueGenePopDataPop(tiedostonNimi) +} +\arguments{ +\item{tiedostonNimi}{Name of the file} +} +\value{ +List containing data and popnames +} +\description{ +Read GenePop Data +} +\note{ +The data is given in the form where the last column tells the +group. popnames are as before. +}