Usage
blastSequences(x, database, hitListSize, filter, expect, program, timeout=40, as=c("DNAMultipleAlignment", "data.frame", "XML"))
Arguments
x
A sequence as a character vector or an integer corresponding to an
entrez gene ID. Submit multiple sequences as a length-1 character
vector, x = ">ID-1\nACATGCTA\n>ID-2\nAAACCACTT"
.
database
Which NCBI database to use. If not blastn, then set
as="XML"
hitListSize
Number of hits to keep.
filter
Sequence filter; L for Low Complexity, R for Human Repeats,
m for Mask lookup
expect
The BLAST expect value above which matches will be
returned.
program
Which program do you want to use for blast.
timeout
Approximate maximum length of time, in seconds, to wait for a result.
as
character(1) indicating whether the result from the NCBI server
should be parsed to a list of DNAMultipleAlignment
instances,
represented as a data.frame
, or returned as XML.