Opened 16 years ago
Closed 16 years ago
#151 closed enhancement (fixed)
Use two queries instead of one in DetectionPValue.run() method
Reported by: | Nicklas Nordborg | Owned by: | Nicklas Nordborg |
---|---|---|---|
Priority: | critical | Milestone: | Illumina package v1.2 |
Component: | net.sf.basedb.illumina | Keywords: | |
Cc: |
Description
The plug-in uses a single query instance to get data from bioassaysets. The same instance is used two times for each bioassay set. The code is adding and removing a restriction between each invocation. This is not very efficient since the query has to be rebuilt every time. It is better to create two queries that can be built once and the just be executed with different parameters.
By the way... it may be this adding/removing that causes #149.
Change History (2)
comment:1 by , 16 years ago
Status: | new → assigned |
---|
comment:2 by , 16 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [873]) Fixes #151: Use two queries instead of one in DetectionPValue.run() method