ExtractBy | R Documentation |
DNAStringSets
s.
Return organized DNAStringSet
s based on three currently supported object combinations. First return a single DNAStringSet
of feature sequences from a DFrame of genecalls and a DNAStingSet
of the source assembly. Second return a list of DNAStringSet
s of predicted pairs from a PairSummaries
object and a character string of the location of a DECIPHER
SQLite database. Third return a list of DNAStringSet
s of predicted single linkage communities from a PairSummaries
object, a character string of the location of a DECIPHER
SQLite database, and a list of identifiers generated by DisjointSet
.
ExtractBy(x,
y,
z,
Verbose = FALSE)
x |
A |
y |
A character vector of length 1 indicating the location of a |
z |
Optional; a list of identifiers generated by |
Verbose |
Logical indicating whether to print progress bars and messages. Defaults to |
All sequences are forced into the same direction based on the Strand
column supplied by either the gene calls DFrame
specified by x
, or the GeneCalls
attribute of the PairSummaries
object specified by y
.
Return a DNAStringSet
, or list of DNAStringSet
s arranged depending upon the objects supplied. See description.
Nicholas Cooley npc19@pitt.edu
FindSynteny
, Synteny-class
, PairSummaries
, DisjointSet
DBPATH <- system.file("extdata",
"Endosymbionts_v02.sqlite",
package = "SynExtend")
data("Endosymbionts_Pairs03", package = "SynExtend")
data("Endosymbionts_Sets", package = "SynExtend")
# extract the first 10 disjoint sets
Sets <- ExtractBy(x = Endosymbionts_Pairs03,
y = DBPATH,
z = Endosymbionts_Sets[1:10],
Verbose = TRUE)
# extract just the pairs
Sets <- ExtractBy(x = Endosymbionts_Pairs03,
y = DBPATH,
Verbose = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.