Reference

ExpressionData.expression_valuesMethod
expression_values(eset::ExpressionSet)::DataFrame

Extracts the expression values from an ExpressionSet. The feature names are included as a column.

By passing the type Matrix as the first argument, the function will return the expression values as a matrix.

source
ExpressionData.infoMethod
info(m::MIAME)::NamedTuple

Returns a NamedTuple with the name, lab, contact, title, and url fields of an MIAME object. Similar to the expinfo function in the R package from Bioconductor: Biobase.

source
ExpressionData.load_esetMethod
load_eset(file::AbstractString)::ExpressionSet

Loads an ExpressionSet object from a file. The file should be in a serialized format. To save an object, use save_eset.

See also

save_eset

source
ExpressionData.norm_controlsMethod
norm_controls(m::MIAME)::Vector{String}

Extracts the normalization controls from an MIAME object such as house keeping genes.

source
ExpressionData.otherMethod
other(m::MIAME)::Dict{Symbol,String}

Extracts the other metadata from an MIAME object. This can include any additional information that is not covered by the other fields.

source
ExpressionData.preprocessingMethod
preprocessing(m::MIAME)::Vector{String}

Extracts the preprocessing steps from an MIAME object describe the steps taken to process the raw data of the experiment.

source
ExpressionData.save_esetMethod
save_eset(eset::ExpressionSet, file::AbstractString)

Saves an ExpressionSet object to a file. The file is saved in a serialized format. To load the object back, use load_eset.

See also

load_eset

source