View source: R/gff3_preprocessing.r View source: R/.ipynb_checkpoints/gff3_preprocessing-checkpoint.r
gff3_preprocess | R Documentation |
gff3_preprocess process gff3 file from database for multiple usage
gff3_preprocess processes the gff3 file extracting gene names and locus_tag from all coding regions (CDS), UTRs/ncRNA/asRNA are also extracted if available.
gff3_preprocess(path)
path |
path: path to the directory containing the gff3 file. |
The resulting dataframe contains region, positions, strand, gene and locus_tag.
A list with 2 items:
String, the region from the gff file
Integer, the start of the annotation
Integer, the end of the annotation
Boolean, the strand of the annotation
String, the annotated gene name
String, the annotated locus tag
a numeric vector containing the length of the genome
gff3_preprocess(
path = gzfile(system.file("extdata", "gff_e_coli.gff3.gz", package = "rifi"))
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.