metadata(mzR)
metadata()所属R语言包:mzR
Access the metadata from an mzR object.
访问元数据从MZR对象。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Accessors to the analytical setup metadata of a run. runInfo will show a summary of the experiment as a named list, including scanCount, lowMZ, highMZ, startMZ, endMZ, dStartTime and dEndTime. The instrumentInfo method returns a named list including instrument manufacturer, model, ionisation technique, analyzer and detector. These individual pieces of information can also be directly accessed by the specific methods.
运行分析设置元数据存取。 runInfo会显示一个名为列表实验的总结,包括scanCount,lowMZ,highMZ,startMZ,endMZ,dStartTime和dEndTime。 instrumentInfo方法返回一个名为list包括仪器制造商,型号,电离技术,分析仪和探测器。这些信息的各个部分,也可以直接访问的具体方法。
用法----------Usage----------
runInfo(object)
analyzer(object)
detector(object)
instrumentInfo(object)
ionisation(object)
manufacturer(object)
model(object)
参数----------Arguments----------
参数:object
An instantiated mzR object.
一个实例mzR对象。
作者(S)----------Author(s)----------
Steffen Neumann and Laurent Gatto
参见----------See Also----------
See for example peaks to access the data for the spectra in a "mzR" class.
例如,见peaks"mzR"类光谱访问的数据。
举例----------Examples----------
library(msdata)
filepath <- system.file("microtofq", package = "msdata")
file <- list.files(filepath, pattern="MM14.mzML",
full.names=TRUE, recursive = TRUE)
mz <- openMSfile(file)
fileName(mz)
runInfo(mz)
close(mz)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|