Skip to contents

Exports an Individual building block to a pkml file that can be loaded by MoBi.

Usage

saveIndividualToPKML(individualBuildingBlock, filePath)

Arguments

individualBuildingBlock

A BuildingBlock object of type Individual, as returned by createIndividualBuildingBlock().

filePath

Path where the pkml file will be created. Must end with the .pkml extension.

Value

filePath, invisibly.

Examples

if (FALSE) { # \dontrun{
individual <- createIndividualBuildingBlock(
  species = Species$Human,
  population = HumanPopulation$European_ICRP_2002
)
saveIndividualToPKML(individual, "Individual.pkml")
} # }