inst/doc/grex.R

## ----echo=FALSE-------------------------------------------------------------------------
options(width = 90)

## ---------------------------------------------------------------------------------------
library("grex")
data("gtexv7")
id <- gtexv7[101:200]
df <- grex(id)
tail(df)

## ---------------------------------------------------------------------------------------
filtered_genes <-
  df[
    !is.na(df$"entrez_id"),
    c("ensembl_id", "entrez_id", "hgnc_symbol", "gene_biotype")
  ]
head(filtered_genes)

Try the grex package in your browser

Any scripts or data that you put into this service are public.

grex documentation built on May 18, 2019, 1:03 a.m.