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