简体   繁体   English

gzfile(fname,open =“ rt”)中的错误:无效的'description'参数

[英]Error in gzfile(fname, open = “rt”) : invalid 'description' argument

library(Biobase)    
library(GEOquery)    
gds4577 <- getGEO(filename='c:/test/GDS4577_full.soft.gz')    
eset <- GDS2eSet(gds4577, do.log2=TRUE)    
>  eset <- GDS2eSet(gds4577, do.log2=TRUE)    
File stored at:     
C:\DOCUME~1\sanya\LOCALS~1\Temp\RtmpQtuak0/GPL1261.annot.gzC:\DOCUME~1\sanya\LOCALS~1\Temp\RtmpQtuak0/GPL1261.annot.gz    
Error in gzfile(fname, open = "rt") : invalid 'description' argument    
In addition: Warning messages:    
1: In if (GSEMatrix & geotype == "GSE") { :    
  the condition has length > 1 and only the first element will be used    
2: In if (geotype == "GDS") { :    
  the condition has length > 1 and only the first element will be used    
3: In if (geotype == "GSE" & amount == "full") { :    
  the condition has length > 1 and only the first element will be used    
4: In if (geotype == "GSE" & amount != "full" & amount != "table") { :    
  the condition has length > 1 and only the first element will be used    
5: In if (geotype == "GPL") { :    
  the condition has length > 1 and only the first element will be used    
6: In if (!file.exists(destfile)) { :    
  the condition has length > 1 and only the first element will be used    
7: In download.file(myurl, destfile, mode = mode, quiet = TRUE, method = getOption("download.file.method.GEOquery")) :    
  only first element of 'url' argument used    
8: In download.file(myurl, destfile, mode = mode, quiet = TRUE, method = getOption("download.file.method.GEOquery")) :    
  only first element of 'destfile' argument used    
> eset    
Error: object 'eset' not found    

what is the matter with my computer? 我的电脑怎么了?

> sessionInfo()
R version 3.0.2 (2013-09-25)
Platform: i386-w64-mingw32/i386 (32-bit)

locale:
[1] LC_COLLATE=Chinese_People's Republic of China.936  LC_CTYPE=Chinese_People's Republic of China.936   
[3] LC_MONETARY=Chinese_People's Republic of China.936 LC_NUMERIC=C                                      
[5] LC_TIME=Chinese_People's Republic of China.936    

attached base packages:
[1] parallel  stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] GEOquery_2.28.0      BiocInstaller_1.12.0 affy_1.40.0          Biobase_2.22.0       BiocGenerics_0.8.0  

loaded via a namespace (and not attached):
[1] affyio_1.30.0         preprocessCore_1.24.0 RCurl_1.95-4.1        tools_3.0.2           XML_3.98-1.1          zlibbioc_1.8.0    

GEOquery currently does not handle the case of the "full_soft" file, a file that is a combination of the GDS expression and the GPL information associated with the GDS. GEOquery当前不处理“ full_soft”文件的情况,该文件是GDS表达式和与GDS相关联的GPL信息的组合。 I've put parsing the full_soft format on my TODO list. 我将解析full_soft格式放在我的TODO列表中。 For the time being, avoiding the "full_soft" file format is what I would recommend, also. 就目前而言,我也建议避免使用“ full_soft”文件格式。 Doing so is not a problem since GEOquery will reconstruct the "full_soft" file contents when importing a GDS using the standard GEOquery workflow. 这样做不是问题,因为当使用标准GEOquery工作流程导入GDS时,GEOquery将重建“ full_soft”文件内容。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 gzfile(file,“ rb”)中的错误:无效的&#39;description&#39;参数调用自:gzfile(file,“ rb”) - Error in gzfile(file, “rb”) : invalid 'description' argument Called from: gzfile(file, “rb”) R闪亮:文件错误(文件,“ rt”):无效的“描述”参数 - R shiny: Error in file(file, “rt”) : invalid 'description' argument 文件(文件,“rt”)中的错误:调用函数时“描述”参数无效 - Error in file(file, "rt") : invalid 'description' argument , when calling the function 文件错误(文件,“rt”):读取 csv 文件时“描述”参数无效 - Error in file(file, "rt") : invalid 'description' argument when reading csv files 文件错误(文件,“rt”):complete.cases 程序中的“描述”参数无效 - Error in file(file, "rt") : invalid 'description' argument in complete.cases program for(seq_along(data_file)中的i:file(file,“ rt”)中的错误:无效的&#39;description&#39;参数 - for(i in seq_along(data_file): Error in file(file, “rt”) : invalid 'description' argument 文件错误(描述 = xlsxFile):使用 lapply 时“描述”参数无效 - Error in file(description = xlsxFile) : invalid 'description' argument when using lapply 错误保存:gzfile(文件,“wb”)出错:无法打开连接 - error saving: Error in gzfile(file, “wb”) : cannot open the connection gzfile(file, "wb") 错误:无法打开连接或压缩文件 - Error in gzfile(file, "wb"): cannot open the connection or compressed file 头(df)gzfile(文件,“wb”)中的错误:无法打开连接 - head(df) Error in gzfile(file, "wb") : cannot open the connection
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM