R/run.decreasing.with.overlap.R

run.decreasing.with.overlap <- function(budget, infile, outfile, seed = NULL) {
	if (valection::check.for.library()) {
		command <- paste(
			"valection",
			budget,
			"d",
			valection::quoted(infile),
			valection::quoted(outfile),
			seed,
			sep = " "
			);
		system(command);
	} else {
		valection::handle.missing.library();
		}
	}

Try the valection package in your browser

Any scripts or data that you put into this service are public.

valection documentation built on May 2, 2019, 7 a.m.