Description Usage Arguments Value Author(s) Examples
Reads a SomaLogic ADAT data file.
1 2 3 4 5 6 7 |
file |
A string containing the path to the file to be read. |
keepOnlyPasses |
A logical value indicating whether or not to keep only the rows and columns where the data quality was considered to be passable. |
keepOnlySamples |
A logical value indicating whether or not to keep only the rows containing actual samples (as opposed to QC, buffer, and calibrator samples). |
dateFormat |
A string describing the format of the dates contained in
the file's metadata. See |
verbose |
Logical value indicating whether (lots of) diagnostic messages should be shown. |
An object of class WideSomaLogicData
, which inherits from
data.table
.
The return value consists of a data frame where each row represents a
sample. Initial columns contain sample metadata and later columns contain
intensities of proteins. The specific metadata columns are not fixed, but
the most useful ones described below should always be present.
A unique identifier for the sample.
A unique identifier for the person being sampled.
This should have the value "PASS" if the data quality is acceptable.
Columns of proteins intensities have a name beginning SeqId.
.
Return value also has three attributes.
A data frame.
A list of experimental metadata values.
A SHA1 checksum to ensure file integrity.
Richard Cotton
1 2 3 4 5 6 7 | somaFile <- extractSampleData()
wideSomaData <- readAdat(somaFile)
str(wideSomaData, list.len = 35)
unlink(somaFile)
# For compatibility with rest of Bioconductor you may want an ExpressionSet
as.ExpressionSet(wideSomaData)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.