So I am looking for a straight forward smith waterman program which hasnt been "enhanced" and just accepts fasta files and compares to find common parts. The reason for not wanted enhanced versions is that we want to compare a few different aligners and need the smith waterman program to use as the gold standard and enhancements may use heuristics and therefore skip a few alignments which will reduce the reliability in the program. Does anyone know of a program like this? One which provides e-values / bitscores would be perfect.
Unconfigured Ad
Collapse
X
-
-
How big is the reference genome you're using and how much RAM do you have? This actually becomes the limiting factor for any implementation.
One old school program that can do this is "swat" from the phred/phrap package, which I believe also produces E values.
-
If you can do protein-protein searches then you may want to try SSearch from FASTA suite: http://fasta.bioch.virginia.edu/fast...sta_down.shtml
Comment
-
Recently I was facing a similar question. I needed to find the best alignment between query and reference, both small (100s bp) and not very many (~1000s), no euristics, no filtering, just give me the best match. I ended up writing a simple program in Java which is here https://github.com/dariober/SequenceMatcher. The alignment part is delegated to BioJava.Originally posted by thh32 View PostSo I am looking for a straight forward smith waterman program which hasnt been "enhanced" and just accepts fasta files and compares to find common parts.
I'm not sure it suites you though since in the most permissive mode it finds the best match between each query and each reference sequence. if one query aligns to one reference sequence in multiple locations equally well, you will get only one of them.
Comment
-
My solution is a bit more work perhaps, but how about pulling one of the versions of Smith-Waterman from SHRiMP? It has a basic Vector S-W with basic scoring that it uses to filter for a more detail Scalar S-W down the line. The Vector version could be what you're looking for, if I'm reading the request correctly.
As for the extra work, we used this program as a framework for testing our hardware Smith-Waterman implementation and it was fairly easy to use due to the nice, clean code. It should be possible for you to pull out the bits you need in the same manner.
http://compbio.cs.toronto.edu/shrimp/
I'm not sure what the update rate of the codebase is like now, but I've been in contact with one of the original developers who was very nice about helping out with our questions.
Comment
Latest Articles
Collapse
-
by SEQadmin2
The immune system’s power comes from its genetic diversity, allowing myriad threats to be neutralized through first recognizing foreign antigens. That diversity is also what makes the immune system so difficult to study. Recent advances in sequencing technology and computational biology, however, are giving researchers new tools to understand immune responses and immune-related diseases in greater detail.
This convergence of genetics, immunology, and computation...-
Channel: Articles
09-01-2026, 05:41 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 09-03-2026, 10:22 AM
|
0 responses
23 views
0 reactions
|
Last Post
by SEQadmin2
09-03-2026, 10:22 AM
|
||
|
Started by SEQadmin2, 09-02-2026, 12:32 PM
|
0 responses
24 views
0 reactions
|
Last Post
by SEQadmin2
09-02-2026, 12:32 PM
|
||
|
Started by SEQadmin2, 08-24-2026, 10:32 AM
|
0 responses
67 views
0 reactions
|
Last Post
by SEQadmin2
08-24-2026, 10:32 AM
|
||
|
Started by SEQadmin2, 08-20-2026, 11:17 AM
|
0 responses
66 views
0 reactions
|
Last Post
by SEQadmin2
08-20-2026, 11:17 AM
|
Comment