../
|
util/
|
1597
(9 years ago)
by jmduarteg:
Several changes related to blast:
- now supporting blast+ blastp.
- blast xml parser can now ignore the DTD url, avoiding unnecessary network access if desired
- refactoring: legacy blast related stuff is now refactored to contain "legacy", runBlastp refers to blast+
Also updated uniprot jar.
|
structure/
|
1641
(8 years ago)
by jmduarteg:
Fixed bug: was null pointing on pdb files with a TER record positioned just before a HETATM record in the middle of a poly chain, now added more checks for duplicated PDB chain codes assignments which will catch that problem plus possibly others
|
sequence/
|
1647
(8 years ago)
by jmduarteg:
Fixing bug in jaligner: the NeedlemanWunschGotoh method used by owl.core.sequence.PairwiseSequenceAlignment had a bug causing infinite hanging when using very long sequences. The issue would happen when either of the 2 sequences to align was longer than 32768 (16 bit) and the other sequence would match it after the 32768 region, a test case is included in this commit to demonstrate it. The problem was an overflow: an array used for the traceback procedure was declared as short[] (16 bit), changing it to int[] (32 bit) the issue disappears.
As the development in jaligner seems to be stopped I've simply downloaded the source, fixed the issue there (plus removing the loggers) and repackaged in a jar (jaligner-bugfixed.jar) that includes the sources.
|
runners/
|
1597
(9 years ago)
by jmduarteg:
Several changes related to blast:
- now supporting blast+ blastp.
- blast xml parser can now ignore the DTD url, avoiding unnecessary network access if desired
- refactoring: legacy blast related stuff is now refactored to contain "legacy", runBlastp refers to blast+
Also updated uniprot jar.
|
connections/
|
1372
(11 years ago)
by jmduarteg:
MAJOR INTERFACE CHANGE: the main PDB data loading interface has changed. Now all loading of data occurs through PdbAsymUnit. Refactoring of some classes: Pdb is now PdbChain.
|