Takes one or more delimited numeric text files and converts each of them to separate dataframes.

readQBasic(files = NULL)

Arguments

files

A character or character vector of one or more delimited text files. Use choose.files(multi=TRUE) to select interactively.

Value

A list of lists with dataframes is returned. List items are named by input filename.

Details

Input files can be Admixture run files, fastStructure meanQ files. or any tab-delimited, space-delimited or comma-delimited tabular data without header. See the vignette for more details.

Examples

afiles <- list.files(path=system.file("files/admixture",package="pophelper"), full.names=TRUE) # create a qlist alist <- readQBasic(afiles)