Skip to contents

Helper functions to quickly extract genes of common biotypes.

Usage

protein_coding_genes(x, ...)

lncRNA_genes(x, ...)

Arguments

x

A GTFParquet object.

...

Additional arguments passed to genes,GTFParquet-method.

Value

A GRanges object.

Examples

if (FALSE) { # \dontrun{
gtf <- GTFParquet(system.file("gc49", package="lkparq"))
pc <- protein_coding_genes(gtf)
lnc <- lncRNA_genes(gtf)
} # }