View source: R/read_files_functions.R
| extract_bg | R Documentation |
A generic function to extract the background data for micro array data.
extract_bg(iden, data_files, genepix_vars = genepix_vars)
iden |
A character indicating the name of the object to be used under data_files. |
data_files |
A list of data objects with names utilised by iden. |
genepix_vars |
A list of specific definitions of the experiment design.
See |
Extract the background values
A data frame of background values
## Not run:
genepix_vars <- array_vars(
channel = "635",
chip_path = system.file("extdata", "array_data/machine1/",
package="protGear"),
totsamples = 21,
blockspersample = 2,
mig_prefix = "_first",
machine = 1,
## optional
date_process = "0520"
)
#Define the data path
data_path <- paste0(genepix_vars$chip_path)
# List the file names to use
filenames <- list.files(genepix_vars$chip_path,
pattern = '*.txt$|*.gpr$', full.names = FALSE
)
data_files <- purrr::map(
.x = filenames,
.f = read_array_files,
data_path = data_path,
genepix_vars = genepix_vars
)
data_files <- purrr::set_names(data_files,
purrr::map(filenames, name_of_files))
names(data_files)
extract_bg(iden ="KK2-06" , data_files=data_files,genepix_vars=genepix_vars)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.