Description Usage Arguments Details Value See Also Examples
blastn is the traditional BLASTN requiring an exact
match of 11.
blastn_short is the BLASTN programme optimised for sequences
shorter than 50 bases.
megablast is the traditional megablast used to find
very similar sequences (intracpecies or closely related species).
dc_megablast is discontiguous megablast used to find
more distant (e.g. interspecies) sequences.
1 2 3 4 5 6 7 8 9 10 11 | blastn(query, db = "nt", out = NULL, outfmt = "xml", max_hits = 20,
evalue = 10, remote = FALSE, ...)
blastn_short(query, db = "nt", out = NULL, outfmt = "xml", max_hits = 20,
evalue = 10, remote = FALSE, ...)
megablast(query, db = "nt", out = NULL, outfmt = "xml", max_hits = 20,
evalue = 10, remote = FALSE, ...)
dc_megablast(query, db = "nt", out = NULL, outfmt = "xml", max_hits = 20,
evalue = 10, remote = FALSE, ...)
|
... |
Additional parameters passed on to the BLAST commmand line tools. See here for a description of common options. |
query |
Query sequences as path to a FASTA file,
an |
db |
The database to BLAST against (default: nt). |
out |
(optional) Output file for alignment.
If |
outfmt |
Output format, |
max_hits |
How many hits to return (default: 20). |
evalue |
Expect value cutoff (default: 10). |
remote |
Execute search remotely at the NCBI servers. |
Run blastn() without arguments to print usage and
arguments description.
A BlastReport or BlastTable object,
depending on the value of outfmt.
BLAST documentation at http://www.ncbi.nlm.nih.gov/books/NBK1763/.
Other blast functions: blastp,
blastp_short, blastp_short;
blastx; makeblasttdb;
qblast; rpsblast;
tblastn; tblastx
1 | ##
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.