Save an Expression Profile Building Block to pkml
Source:R/utilities-mobi-expression-profile.R
saveExpressionProfileToPKML.RdExports an Expression Profile building block to a pkml file that can be
loaded by MoBi.
Arguments
- expressionProfileBuildingBlock
A
BuildingBlockobject of typeExpression Profile, as returned bycreateExpressionProfileBuildingBlock().- filePath
Path where the pkml file will be created. Must end with the
.pkmlextension.
Examples
if (FALSE) { # \dontrun{
expressionProfile <- createExpressionProfileBuildingBlock(
type = ExpressionProfileCategories$`Metabolizing Enzyme`,
moleculeName = "CYP3A4",
speciesName = "Human"
)
saveExpressionProfileToPKML(expressionProfile, "CYP3A4-Human.pkml")
} # }