Description Usage Arguments Details Author(s) See Also Examples
Gene prediction consist of delimiting the boundaries of regions that function as genes within a genome. Class Genes
provides objects and functions for storing the boundaries of genes and associated information resulting from gene prediction.
1 2 3 4 5 6 7 8 9 10 11 12 |
x |
An object of class |
xlim |
Numeric vector of length 2 specifying the x-axis limits for plotting. |
ylim |
Numeric vector of length 2 specifying the y-axis limits for plotting. |
interact |
Logical determining whether the plot is interactive. If |
i |
Numeric or character vector of row indices to extract from |
j |
Numeric or character vector of column indices to extract from |
... |
Other optional parameters. |
Objects of class Genes
are stored as numeric matrices containing information pertaining to gene predictions. The matrix columns include the index ("Index"
) of the corresponding sequence in the original genome, the strand ("Strand"
) where the gene is located (either "+"
(0
) or "-"
(1
), the beginning ("Begin"
) and ending ("End"
) positions of the gene, several scores used for prediction, the fraction of replicates ("FractionReps"
) where the gene was included in the prediction, and whether (> 0
) or not (0
) the region was predicted to be a gene. Note that the start codon is at the beginning position when the strand is "+"
and end when the strand is "-"
.
The print
method displays summary information about the genes, including their length range, coding density, number of different initiation codons, and the range of correlations among the different scores used in prediction. Note that subsetting a Genes
object will result in a lower coding density being displayed because the density is calculated relative to the entire genome originally used for prediction.
The plot
method will show the total score of each prediction along the genome. This is most useful when displaying the result of setting allScores
to TRUE
in FindGenes
. Here, possible genes on either strand will be shown, with the predicted genes highlighted. The start (solid) and stop (dashed) positions are denoted by vertical lines. Note that the x-axis is cumulative genome position and changes between genome sequences indices are demarcated by dashed vertical lines.
Erik Wright eswright@pitt.edu
ExtractGenes
, FindGenes
, WriteGenes
1 2 3 4 5 6 7 8 9 10 11 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.