Changed default npops to 3 (#24)

This commit is contained in:
Waldir Leoncio 2024-04-10 14:25:45 +02:00
parent 58a5e5a2fd
commit c3b8da0012
2 changed files with 2 additions and 2 deletions

View file

@ -24,7 +24,7 @@
#' greedyMix(data, "baps")
#' } # TEMP: unwrap once #24 is resolved
greedyMix <- function(
data, format = gsub("^.*\\.", "", data), partitionCompare = NULL, npops = 1L,
data, format = gsub("^.*\\.", "", data), partitionCompare = NULL, npops = 3L,
counts = NULL, sumcounts = NULL, max_iter = 100L, alleleCodes = NULL,
inp = NULL, popnames = NULL, fixedK = FALSE, verbose = FALSE
) {

View file

@ -8,7 +8,7 @@ greedyMix(
data,
format = gsub("^.*\\\\.", "", data),
partitionCompare = NULL,
npops = 1L,
npops = 3L,
counts = NULL,
sumcounts = NULL,
max_iter = 100L,