Description Usage Arguments Details Value Author(s) References See Also Examples
Reads .blast6out files (NCBI Blast Format) generated by the VSEARCH clustering and alignment algorithms.
1 2 3 4 5 6 7 8 9 |
file |
The file path of the blast file. |
minE |
Blast results with e values greater than the specified cutoff will be ignored. |
length |
Blast results alignment lengths lower below this value will be ignored |
identity |
Blast results with target sequence identities below this value will be ignored. |
removeExactMatches |
If true, matches with 100 be ignored to prevent self-hits. |
scope |
If specified, blast results below the specified value will be ignored. Note that the dataframe of transposon matches must also be supplied to calculate scope. Scope is the proportion of the transposon's internal sequence occupied by the BLAST hit. |
packMatches |
taframe containing genomic ranges and names referring
to sequences to be extracted. Can be obtained from
|
blast6out file is tab-separated text file compatible with NCBI BLAST m8 and NCBI BLAST+ outfmt 6 formats. One cluster/alignment can be found for each line.
A dataframe containing the converted .blast6out file. The file contains the following features:
Query sequence ID
Target sequence ID
Percenty sequence identity
Alignment length
Number of mismatches
Number of gaps
Base position of alignment start in query sequence
Base position of alignment end in query sequence
Base position of alignment start in target sequence
Base position of alignment end in target sequence
E-value
Bit score
Jack Gisby
For further information, see the NCBI BLAST+ application documentation and help pages (https://www.ncbi.nlm.nih.gov/pubmed/20003500?dopt=Citation). VSEARCH may be downloaded from https://github.com/torognes/vsearch; see https://www.ncbi.nlm.nih.gov/pubmed/27781170 for further information.
codeblastAnalysis, codeblastAnnotate, codepackAlign, codereadUc, codepackClust
1 2 3 4 5 | readBlast(system.file(
"extdata",
"packMatches.blast6out",
package = "packFinder"
))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.