Skip to contents

Query the available biotypes in the annotation and their counts.

Usage

gene_types(x)

transcript_types(x)

Arguments

x

A GTFParquet object.

Value

A table of biotype counts.

Examples

if (FALSE) { # \dontrun{
gtf <- GTFParquet(system.file("gc49", package="lkparq"))
gene_types(gtf)
# protein_coding      lncRNA     pseudogene ...
#         19950        16880          15200 ...

transcript_types(gtf)
} # }