问题遇到的现象和发生背景
尝试使用RcisTarget进行单细胞转录因子分析时,无法读取从官网下载的feather文件
代码
library(RcisTarget)
motif.anno=importAnnotations('motifs-v10nr_clust-nr.mgi-m0.001-o0.0.tbl')
motifRankings <- importRankings("mm10_10kbp_up_10kbp_down_full_tx_v10_clust.genes_vs_motifs.rankings.feather")
mm10=read_feather('mm10_10kbp_up_10kbp_down_full_tx_v10_clust.genes_vs_motifs.rankings.feather')
mm10=write_feather('mm10_10kbp_up_10kbp_down_full_tx_v10_clust.genes_vs_motifs.rankings.feather',version = 1)
报错
motifRankings <- importRankings("mm10_10kbp_up_10kbp_down_full_tx_v10_clust.genes_vs_motifs.rankings.feather")
Error in openFeather(path) : Invalid: Not a feather file
我的解答思路和尝试过的方法
网上查询说有可能是feather文件版本的问题,但是尝试用arrow包去更改文件版本时也报错
library(arrow)
mm10=read_feather('mm10_10kbp_up_10kbp_down_full_tx_v10_clust.genes_vs_motifs.rankings.feather')
mm10=write_feather(mm10,'.',version = 1)
再次报错
mm10=write_feather(mm10,'.',version = 1)
Error: IOError: Failed to open local file 'D:/R-4.0.3/training/2022.12.09'. Detail: [Windows error 5] 拒绝访问。
求各位指点