Description Usage Arguments Value Note Author(s) References See Also Examples
A global pairwise alignment of pack-TYPE elements by
sequence similarity. mIt may be useful to run
packClust
to identify groups of similar
transposable elements, before generating alignments of
each group.
1 2 3 4 5 6 7 8 9 10 | packAlign(
packMatches,
Genome,
identity = 0,
threads = 1,
identityDefinition = 2,
maxWildcards = 0.05,
saveFolder,
vSearchPath = "vsearch"
)
|
packMatches |
A dataframe of potential Pack-TYPE transposable elements,
in the format given by |
Genome |
A DNAStringSet object containing sequences referred to in
|
identity |
The sequence identity of two transposable elements in
|
threads |
The number of threads to be used by VSEARCH. |
identityDefinition |
The pairwise identity definition used by VSEARCH. Defaults to 2, the standard VSEARCH definition. |
maxWildcards |
The maximal allowable proportion of wildcards in the
sequence of each match (defaults to |
saveFolder |
The folder to save saveFolder files (uc, blast6out, FASTA) |
vSearchPath |
When the package is run on windows systems, the location of the VSEARCH executable file must be given; this should be left as default on Linux/MacOS systems. |
Saves alignment information, including a uc
,
blast6out
and a pairwise alignment fasta
file, to the specified location. Returns the uc summary
file generated by the alignment.
In order to align sequences using VSEARCH, the executable file must first be installed.
Jack Gisby
VSEARCH may be downloaded from https://github.com/torognes/vsearch, along with a manual documenting the program's parameters. See https://www.ncbi.nlm.nih.gov/pubmed/27781170 for further information.
tirClust
, packClust
,
readBlast
, readUc
,
filterWildcards
, packSearch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | data(arabidopsisThalianaRefseq)
data(packMatches)
# packAlign run on a Linux/MacOS system
## Not run:
packAlign(packMatches, Genome)
## End(Not run)
# packAlign run on a Windows system
## Not run:
packAlign(packMatches, Genome,
vSearchPath = "path/to/vsearch/vsearch.exe")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.