美文网首页
R语言读入gmt文件后转换为list

R语言读入gmt文件后转换为list

作者: yingyonghui | 来源:发表于2023-06-28 15:46 被阅读0次
    inflam.path <- scan('mh.all.v2023.1.Mm.symbols.gmt',sep='\n',what="c")
    inflam.path <- strsplit(inflam.path, "\t")
    names(inflam.path) <- sapply(inflam.path, `[[`, 1)
    inflam.path <- lapply(inflam.path, `[`, c(-1,-2))
    

    相关文章

      网友评论

          本文标题:R语言读入gmt文件后转换为list

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