Example #1
0
 private void writeResultsToSPOTProjectCache() {
   runCommand(
       "inputConfig$alg.currentResult <- read.table(textConnection(\""
           + currentRES.toString()
           + "\"), header=TRUE)",
       false);
 }
Example #2
0
 private void initResultHeading() {
   runCommand(
       "inputConfig$alg.currentResult <- read.table(textConnection(\""
           + currentRES.toString()
           + "\"), header=TRUE)",
       false);
 }
Example #3
0
  public void feedbackSpot(IDesign result) throws InPUTException {
    if (noResultsSoFar) {
      String fileId = fileId(investigationId, SPOTQ.FILE_RES_ENDING);
      if (!new File(fileId).exists())
        createFile(SPOTQ.FILE_RES_ENDING, currentRES, investigationId);
      noResultsSoFar = false;
    }
    SpotResult spotResult = currentRES.append(result, currentDES);

    if (isFileMode()) feedbackResultInRESFile(spotResult);

    saveSPOTWorkspace();
  }