Changeset 1258
- Timestamp:
- Nov 2, 2010, 2:20:34 PM (13 years ago)
- Location:
- plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins/BackgroundCorrection.java
r1217 r1258 581 581 for (BioAssay assay : assays) 582 582 { 583 checkInterrupted();583 ThreadSignalHandler.checkInterrupted(); 584 584 // calculate background correction for this bioassay 585 585 short bioassayColumn = assay.getDataCubeColumnNo(); … … 645 645 for (BioAssay assay : assays) 646 646 { 647 checkInterrupted();647 ThreadSignalHandler.checkInterrupted(); 648 648 if (progress != null) 649 649 { -
plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins/BeadSummaryImporter.java
r1226 r1258 698 698 { 699 699 // Check if user has aborted 700 checkInterrupted();700 ThreadSignalHandler.checkInterrupted(); 701 701 702 702 // Progress reporting … … 777 777 778 778 // Check if user has aborted 779 checkInterrupted();779 ThreadSignalHandler.checkInterrupted(); 780 780 781 781 // Progress reporting -
plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins/DetectionPValue.java
r1235 r1258 531 531 for (BioAssay assay : assays) 532 532 { 533 checkInterrupted();533 ThreadSignalHandler.checkInterrupted(); 534 534 if (progress != null) 535 535 { … … 578 578 } 579 579 580 checkInterrupted();580 ThreadSignalHandler.checkInterrupted(); 581 581 582 582 // calculate detection P-value for all beadsets -
plugins/base2/net.sf.basedb.illumina/trunk/src/net/sf/basedb/illumina/plugins/SnpIntensityCalculator.java
r1226 r1258 210 210 int jobId = job.getId(); 211 211 Job thisJob = Job.getById(dc, jobId); 212 checkInterrupted();212 ThreadSignalHandler.checkInterrupted(); 213 213 214 214 // Create transformation and root bioassay set … … 553 553 while (ffp.hasMoreData()) 554 554 { 555 checkInterrupted();555 ThreadSignalHandler.checkInterrupted(); 556 556 currentSpot++; 557 557 dataLine = ffp.nextData(); … … 618 618 while (ffp.hasMoreData()) 619 619 { 620 checkInterrupted();620 ThreadSignalHandler.checkInterrupted(); 621 621 currentSpot++; 622 622 FlatFileParser.Data dataLine = ffp.nextData(); … … 667 667 if (proxy != null) 668 668 { 669 checkInterrupted();669 ThreadSignalHandler.checkInterrupted(); 670 670 currentSpot++; 671 671 proxy.setTheId(reporter.getInt(1)); … … 710 710 for (Map.Entry<String, ReporterProxy> entry : preloaded.entrySet()) 711 711 { 712 checkInterrupted();712 ThreadSignalHandler.checkInterrupted(); 713 713 currentSpot++; 714 714 ReporterProxy proxy = entry.getValue(); … … 738 738 if (currentSpot % interval == 0 && progress != null) 739 739 { 740 checkInterrupted();740 ThreadSignalHandler.checkInterrupted(); 741 741 progress.displayAbsolute(baseProgress + currentSpot, 742 742 "Mapping reporters to positions: " +
Note: See TracChangeset
for help on using the changeset viewer.