2020-05-20 15:34:40 +02:00
|
|
|
#' @title Clustering of individuals
|
2020-06-24 11:48:23 +02:00
|
|
|
#' @param tietue File
|
2020-06-08 13:42:36 +02:00
|
|
|
#' @param format Format of the data ("BAPS", "GenePop" or "Preprocessed")
|
|
|
|
|
#' @param savePreProcessed Save the pre-processed data?
|
2020-06-24 11:48:23 +02:00
|
|
|
#' @param filePreProcessed Is the file already processed?
|
|
|
|
|
#' @importFrom utils read.delim
|
2020-05-20 15:34:40 +02:00
|
|
|
#' @export
|
2020-06-08 13:42:36 +02:00
|
|
|
greedyMix <- function(
|
|
|
|
|
tietue,
|
|
|
|
|
format = NULL,
|
|
|
|
|
savePreProcessed = NULL,
|
|
|
|
|
filePreProcessed = NULL
|
|
|
|
|
) {
|
2021-08-23 06:40:49 +02:00
|
|
|
stop(
|
|
|
|
|
"greedyMix() has been superseded by load_fasta().",
|
|
|
|
|
" Please change your code to use the latter instead of the former.",
|
|
|
|
|
" If you believe the error is internal to rBAPS, please open",
|
|
|
|
|
" a new issue (link on the package DESCRIPTION file)."
|
|
|
|
|
)
|
2020-05-20 15:34:40 +02:00
|
|
|
}
|