View source: R/normalization.R
find_fit_nms | R Documentation |
Finds sample IDS for used in the current fitting.
find_fit_nms(universe, selected, pat = NULL)
universe |
A name list from data table. |
selected |
A name list from metadata. |
pat |
A pattern in regular expression. |
pat <- "^N_log2_R[0-9]{3}[NC]{0,1}\\s+\\("
# special character of "+" and pointed brackets
universe <- c("N_log2_R000 (<Mix1+Mix2> [base])", "N_log2_R000 (Mix1 [heavy])",
"N_log2_R000 (Mix2 [heavy])")
selected <- c("<Mix1+Mix2> [base]", "Mix2 [heavy]")
# special character of "+" and round parenthesis
universe <- c("N_log2_R000 ((Mix1+Mix2) [base])", "N_log2_R000 (Mix1 [heavy])",
"N_log2_R000 (Mix2 [heavy])")
selected <- c("(Mix1+Mix2) [base]", "Mix2 [heavy]")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.