View source: R/extract_strand.R
extract_plus | R Documentation |
This function takes a gtf file from GENCODE or the data frame of extracted introns. It returns as a data frame a specified element; i.e gene, transcript, exon or intron; that are on the forward strand
extract_plus(input, type)
input |
The name of the downloaded gtf file from GENCODE website or a data frame of introns |
type |
A string that specifies the type of element to be reported |
A data frame of elements on the plus strand
extract_minus
df <- load_gtf("gencode.v27.lncRNAs.gtf")
extract_plus(df, type = "gene")
extract_plus(df, type = "transcript")
extract_plus(df, type = "exon")
extract_plus(df, "intron")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.