从FlowJo导入手动门控(stream式细胞仪分析)

我正遇到将R.xls或.wspt文件读入R的问题。这是stream式细胞术手动门控模式的表格。 我的代码如下:

flowData = system.file("extdata",package="flowWorkspace") file = list.files(flowData,pattern="manual.xls"/"manual.wspt", full=TRUE) ws = openWorkspace(file) 

当我尝试用openWorkspace读取时,.xls文件给出了一个错误:

 Start tag expected. "(" not found. 

我在另一篇文章中看到过这个错误,但似乎没有解释我的情况。 而对于打开.wspt文件,我收到一个错误:

 error in data.frame...arguments imply differing number of rows:1,0. 

这两个文件(.xls和.wspt)都包含相同的信息。 我只是想尝试阅读他们两个。