saveSBML(SBMLR)
saveSBML()所属R语言包:SBMLR
Saves an R model object as an SBML file
SBML文件保存为R模型对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function converts a class SBML model object in R into an SBML level 2 file.
此功能SBML 2级文件转换成类研发SBML模型对象。
用法----------Usage----------
saveSBML(model,filename)
参数----------Arguments----------
参数:model
The model object in R.
在河的模型对象
参数:filename
The name of the SBML file
的SBML文件的名称
Details
详情----------Details----------
The output file is SBML level 2.
输出文件是SBML 2级。
值----------Value----------
No value returned.
没有返回值。
警告----------Warning ----------
SBML events and
SBML事件和
注意----------Note----------
For speed, the SBML file is written incrementally, rather than first built as a DOM in R and then saved using xmlSave.
速度,SBML文件被写入增量,而不是先建一个研发的DOM,然后使用xmlSave保存。
作者(S)----------Author(s)----------
Tom Radivoyevitch
参考文献----------References----------
参见----------See Also----------
saveSBMLR
saveSBMLR
举例----------Examples----------
library(SBMLR)
library(odesolve)
curtoR=readSBMLR(file.path(system.file(package="SBMLR"), "models/curto.r"))
saveSBML(curtoR,"curtoR.xml")
curtoX=readSBML("curtoR.xml")
curtoX==curtoR
summary(curtoR)
unlink("curtoR.xml")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|