我在 R-studio 中编码,并有一个名为saveResults()
. 它需要:
sce
- 单细胞实验对象。opt
- 包含五件事的清单clusterLabels
- 具有两列的简单数据框
重要的是我收到一条错误消息:
Error: unexpected symbol in:
"saveResults(sce = sce, opt = opt, clusteInputs()
zhengMix"
这与我传递给函数的参数完全不同。您可以在下面代码块的最后一行看到这一点:我传入了正确的参数,但我收到一个错误,说我已经传入clusteInputs()
,而zhengMix
不是clusterLabels
. 我没有一个名为 的函数clusteInputs()
,并且zhengMix
在上面几行。
# Save the clustering data
InstallAndLoadPackagesForSC3Clustering()
opt <- GetOptionInputs()
zhengMix <- FetchzhengMix(opt)
sce <- CreateSingleCellExperiment(zhengMix)
clusterLabels <- getClusterLabels(sce)
opt <- createNewDirectoriesToSaveData(opt)
saveResults <- function(sce, opt, clusterLabels){
print("Beginning process of saving results...")
maxClusters = ncol(clusterLabels)/2+1
for (n in 2:maxClusters){
savePCAasPDF(sce, opt, numOfClusters = n, clusterLabels)
saveClusterLabelsAsRDS(clusterLabels, numOfClusters = n, opt)
}
saveSilhouetteScores(sce, opt)
print("Done.")
}
saveResults(sce = sce, opt = opt, clusterLabels = clusterLabels)
有谁知道发生了什么?我很坚持这一点。