MetaboSet is the main class used to represent data in the notame package.
It is built upon the ExpressionSet
class from the
Biobase package. In addition to the slots inherited from
ExpressionSet
, MetaboSet
has three slots of
its own. The extra three slots hold special column names that are stored
purely for convenience, as many functions use these as defaults.
Usage
# S4 method for class 'MetaboSet'
combined_data(object)
# S4 method for class 'MetaboSet'
group_col(object)
# S4 method for class 'MetaboSet'
group_col(object) <- value
# S4 method for class 'MetaboSet'
time_col(object)
# S4 method for class 'MetaboSet'
time_col(object) <- value
# S4 method for class 'MetaboSet'
subject_col(object)
# S4 method for class 'MetaboSet'
subject_col(object) <- value
# S4 method for class 'MetaboSet'
flag(object)
# S4 method for class 'MetaboSet'
flag(object) <- value
# S4 method for class 'MetaboSet,data.frame'
join_fData(object, dframe)
# S4 method for class 'MetaboSet,data.frame'
join_pData(object, dframe)
Methods (by generic)
combined_data(MetaboSet)
: Retrieve both sample information and featuresgroup_col(MetaboSet)
: get name of column for group labelsgroup_col(MetaboSet) <- value
: set name of column for group labelstime_col(MetaboSet)
: get name of column for time pointstime_col(MetaboSet) <- value
: set name of column for time pointssubject_col(MetaboSet)
: get name of column for subject subject identifierssubject_col(MetaboSet) <- value
: set name of column for subject identifiersflag(MetaboSet)
: get flagsflag(MetaboSet) <- value
: set flagsjoin_fData(object = MetaboSet, dframe = data.frame)
: join new information to feature datajoin_pData(object = MetaboSet, dframe = data.frame)
: join new information to pheno data
Slots
group_col
character, name of the column holding group information
time_col
character, name of the column holding time points
subject_col
character, name of the column holding subject identifiers
Constructor
See construct_metabosets
for constructor function.