美文网首页
2018-08-19

2018-08-19

作者: 灵动的小猪 | 来源:发表于2018-08-19 22:08 被阅读50次

在运行rsem-to-matrix是会出现R读取文件错误

/home/zz/miniconda3/opt/trinity-2.5.1/util/support_scripts/run_TMM_scale_matrix.pl --matrix genes.isoform.TPM.not_cross_norm > genes.isoform.TMM.EXPR.matrixCMD: R --vanilla -q < __tmp_runTMM.R 1>&2
> library(edgeR)
载入需要的程辑包:limma
>
> rnaseqMatrix = read.table("genes.isoform.TPM.not_cross_norm", header=T, row.names=1, com='', check.names=F)
Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec,  :
  16行没有10元素
Calls: read.table -> scan
停止执行
Error, cmd: R --vanilla -q < __tmp_runTMM.R 1>&2  died with ret (256)  at /home/zz/miniconda3/opt/trinity-2.5.1/util/support_scripts/run_TMM_scale_matrix.pl line 105.
Error, CMD: /home/zz/miniconda3/opt/trinity-2.5.1/util/support_scripts/run_TMM_scale_matrix.pl --matrix genes.isoform.TPM.not_cross_norm > genes.isoform.TMM.EXPR.matrix died with ret 5632 at /home/zz/miniconda3/bin/abundance_estimates_to_matrix.pl line 383.

下面是在网上找的答案R语言读取文件错误

> otu=read.table("otu_table.txt",header=F) Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, : line 2 did not have 26 elements
更改为
> otu=read.table("otu_table.txt",sep="\t",header=T)
正确读入数据

所以将 /home/zz/miniconda3/opt/trinity-2.5.1/util/support_scripts/run_TMM_scale_matrix.pl 的74行添加 sep="\t"

这样不行,可能是合并的文件有问题

使用不当导致环境变量被conda污染

相关文章

  • 2018-08-20

    2018-08-19 赵元元1 2018-08-19 22:54 · 字数 345 · 阅读 16 · 日记本 2...

  • 2018-08-19

    2018-08-19 张勤快 2018-08-19 打卡日期:2010年8月19日 打卡累计天数:67/90 #父...

  • 2018-08-20

    从下一篇文开始 使用第一人称。 2018-08-19 废花 2018-08-19 21:34 · 字数 396 ·...

  • 2018-08-19第十天

    2018-08-19数据库 数据库操作 Tab 自动补全代码 精确查询: = 模糊匹配 like 通配符 "%" ...

  • # 2018-08-19数据库

    2018-08-19数据库 数据库操作 Tab 自动补全代码 精确查询: = 模糊匹配 like 通配符 "%" ...

  • 皓月诗选

    皓月诗选诗选 褚江明 2018-08-19 21:24 · 字数 595 · 阅读 122 · 日记本 《秋天的爱...

  • 在难过的时候想起你

    2018-08-19 14:15 三亚·春光中巷B04栋别墅·飞咖啡花园 俞岭

  • 转载:Aria2

    如何配置 Aria2 来进行文件下载: https://mofiter.com/2018-08-19/%E5%A6...

  • 2018-08-19

    2018-08-19 事件:今天一直下雨,继续在家休息,听歌,读书,睡觉。 感受:惬意,自由,享受。 想法:没有特...

  • 长投学堂:投资是最好的修行

    2018-08-19 还有2天,我在长投学堂小白理财训练营就要毕业了,我的心里特...

网友评论

      本文标题:2018-08-19

      本文链接:https://www.haomeiwen.com/subject/kchhiftx.html