PrepareSeqs | R Documentation |
Given a SynExtend
object with a GeneCalls
attribute, and a DECIPHER
database, add sequence tables named 'AAs' and 'NTs' to the database. The new tables contain all translatable sequences indicated by the genecalls, and all nucleotide feature sequences.
PrepareSeqs(SynExtendObject,
DataBase01,
DefaultTranslationTable = "11",
Identifiers = NULL,
Verbose = FALSE)
SynExtendObject |
An object of class |
DataBase01 |
A character string pointing to a SQLite database, or a connection to a |
DefaultTranslationTable |
A character vector of length 1 identifying the translation table to use if one is not supplied in the |
Identifiers |
By default |
Verbose |
Logical indicating whether or not to display a progress bar and print the time difference upon completion. |
PrepareSeqs
adds two tables to a DECIPHER database. One named 'AAs' that contains all translatable features, i.e. features with a coding length divisible by 3 and designated as coding. And another named 'NTs' which contains all features.
An integer count of the number of feature sets added to the DECIPHER database.
Nicholas Cooley npc19@pitt.edu
SummarizePairs
, NucleotideOverlap
, FindSynteny
DBPATH <- system.file("extdata",
"Endosymbionts_v02.sqlite",
package = "SynExtend")
data("Endosymbionts_LinkedFeatures", package = "SynExtend")
# this will add seqs to the DB
# PrepareSeqs(SynExtendObject = Endosymbionts_LinkedFeatures,
# DataBase = DBPATH,
# Verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.