parseHeader | R Documentation |
Parses the header section of an ADAT file.
parseHeader(file)
file |
Character. The elaborated path and file name of the
|
A list of relevant file information required by read_adat()
in order to complete loading the ADAT file, including:
Header.Meta |
list of notes and other information about the adat |
Col.Meta |
list of vectors that contain the column meta data about individual analytes, includes information about the target name and calibration and QC ratios |
file_specs |
list of values of the file parsing specifications |
row_meta |
character vector of the clinical variables; assay information that is included in the adat output along with the RFU data |
Stu Field
Other IO:
loadAdatsAsList()
,
read_adat()
,
soma_adat
,
write_adat()
f <- system.file("extdata", "example_data10.adat",
package = "SomaDataIO", mustWork = TRUE)
header <- parseHeader(f)
names(header)
header$Header.Meta
header$file_specs
header$row_meta
head(as.data.frame(header$Col.Meta))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.