美文网首页ggplot集锦
GPL4381_正则提取

GPL4381_正则提取

作者: 一路向前_莫问前程_前程似锦 | 来源:发表于2018-12-24 16:17 被阅读14次

    https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GPL4381

    image.png
    options(stringsAsFactors = F)
    kk=data.table::fread("C:/Users/Administrator/Downloads/GPL4381-4306.txt")
    patten=".*\\((.*?)\\),.*"
    patten2="[a-zA-Z0-9 ]*\\((.*?)\\),.*"
    res=str_match(kk$GB_DEFINITION,pattern = patten)
    res2=str_match(kk$GB_DEFINITION,pattern = patten2)
    k1=data.frame(res[,2])
    k2=data.frame(res2[,2])
    
    
    image.png
    image.png

    相关文章

      网友评论

        本文标题:GPL4381_正则提取

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