| This type of search is similar to what FASTA and
BLAST (Basic Local Alignment Search Tool) do.
The main difference between them and AlignOneAll is that AlignOneAll
does not use approximations, it does rigorous dynamic programming
against all the sequences in the database.
Its speed is comparable to the other programs, so we see no reason
to use shortcuts when the exact results are easy to obtain.
|
| Examples
| > DB := ReadDb('/home/darwin/DB/SwissProt.Z'):;
Peptide file(/home/darwin/DB/SP45.0/SwissProt45.0(169638448), 163235
entries, 59631787 aminoacids)
> AlignOneAll('NKRSPAASQPPVSRVNPQEESYQKLAMETLEELDWCLD',DB,DM,110);
[Match(168.3,9748355,71916164,38,38,250),
Match(147.5,9749450,71916164,38,38,250),
Match(122.2,9752627,71916164,38,38,250),
Match(122.2,9754188,71916164,38,38,250)]
|