Tools for importing and working with SomaLogic ADAT files.
Read the paper in BMC Bioinformatics: readat: An R package for reading and working with SomaLogic ADAT files
To install the package, you first need the devtools package.
install.packages("devtools")
Then you can install the readat package using
devtools::install_bitbucket("graumannlabtools/readat")
readAdat
let's you import data from the SomaLogic ADAT file format. The
result is stored in an object of class WideSomaData
. This is a data.table
with one sample per row, and includes both the intensities and sample metadata.
The object also has an attribute named sequenceData
that contains a data.table
of sequence metadata. There are also attributes for experiment metadata and a
checksum.
getSequenceData
, getMetadata
, and getChecksum
provide shortcuts to access
these attributes.
There is a melt
method for WideSomaData
that converts the object to
LongSomaData
format, which is a data.table with one intensity per row.
soma2eset
converts an object of class WideSomaData
to a
Biobase::ExpressionSet
.
You can retrieve additional annotations by SomaLogic Sequence ID uisng
getEnsemblIds
, getUniProtKeywords
, getChromosomalPositions
, getPfam
,
getKeggDefinitions
, getKeggModules
, getKeggPathways
,
getGoMolecularFunctions
, getGoBiologicalProcesses
, getGoCellularComponents
.
getSequencesWithLargestBetweenGroupVariation
find the sequences with the
largest amount of variation between specified sample groups.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.