CombineReadsAcrossRuns(seqCBS)
CombineReadsAcrossRuns()所属R语言包:seqCBS
Combine multiple read lists
合并多个读取列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Combines multiple lists in the same format of the same sample into one list of the said format.
结合入一个列表,所述的格式相同的样品在相同的格式的多个列表。
用法----------Usage----------
CombineReadsAcrossRuns(seqs)
参数----------Arguments----------
参数:seqs
A list of lists, each containing equal number of numeric vectors that can be concatenated together. Both number of lists and number of variables can be arbitrary.
的名单列表,每个包含相同数量的数字向量,可以被连接在一起。双方的名单数目和数量的变量可以是任意的。
值----------Value----------
Returns a list of the same format as the input lists
返回的相同的格式的输入列表的列表
(作者)----------Author(s)----------
Jeremy J. Shen
参见----------See Also----------
ScanCBS
ScanCBS
实例----------Examples----------
data(JSSim_NormalSim1)
data(JSSim_NormalSim2)
write.table(JSSim_NormalSim1, file="JSSim_NormalSim1.txt", sep="\t", quote=FALSE, row.names=FALSE, col.names=FALSE)
write.table(JSSim_NormalSim2, file="JSSim_NormalSim2.txt", sep="\t", quote=FALSE, row.names=FALSE, col.names=FALSE)
JSSim_Normal1 = readSeqChiang("JSSim_NormalSim1.txt")
JSSim_Normal2 = readSeqChiang("JSSim_NormalSim2.txt")
file.remove(c("JSSim_NormalSim1.txt", "JSSim_NormalSim2.txt"))
combJSNormal = CombineReadsAcrossRuns(list(JSSim_Normal1, JSSim_Normal2))
print(c(length(JSSim_Normal1$seqF), length(JSSim_Normal2$seqF), length(combJSNormal$seqF)))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|