Description Usage Arguments Details Value Author(s) Examples
Read one or more NPX files from Olink NPX manager and one metadata file in excel format.
1 |
npxFn |
Path to NPX files |
metaFn |
Path to metadata excel file |
panel |
|
The metadata excel file shall have column “SampleID” and other metadata column that ends with “_Factor” (mandatory )or “_Numeric” (optional). If some samples from NPX don't exist in metadata file, it gives a warning. Only the samples in metadata file are kept. If some samples from metadata file don't exists in NPX file, it gives an error.
A tibble
in long format with following columns:
The sample name
The internal Olink IDs
The UniProt IDs
The protein name
The percentage of samples that have intensities lower than LOD
The panel name
The panel version
The unique plate ID
If the splot passes QC
The limit of detection
NPX value
The intr-plate normalization method
Ge Tan
1 2 3 4 5 6 7 8 9 10 11 12 | npxFn <- system.file("extdata",
c("20200507_Inflammation_NPX_1.xlsx",
"20200625_Inflammation_NPX_2.xlsx"),
package = "OlinkR")
metaFn <- system.file("extdata", "Inflammation_Metadata.xlsx", package = "OlinkR")
npx <- read_npx(npxFn, metaFn)
npxFn <- system.file("extdata", "OlinkAnalyze_extdata", "npx_data2.xlsx",
package = "OlinkR")
metaFn <- system.file("extdata", "OlinkAnalyze_extdata" ,
"npx_data2_meta.xlsx", package = "OlinkR")
npx <- read_npx(npxFn, metaFn)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.