Searches a folder for all files with a filename ending with "_link", and then all the files found are loaded and merged into one data frame. This is done by searching the files for all unique scaffold pairs and summing the number of connections per pair. The files must contain 3 columns called "scaffold1", "scaffold2", and "connections".

mmmerge_linkfiles(path, verbose = TRUE)

Arguments

path

(required) Path to a folder.

verbose

(Logical) Whether to print status messages of the process. (Default: TRUE)

Value

A tibble

Examples

if (FALSE) { links <- mmmerge_linkfiles("path/to/folder") }