예제 #1
0
  public boolean setProteinFractionFile(ExperimentBean exp) {

    ExperimentBean tempExp = db.readyExper(exp.getExpId()); // confirm that the exp is new
    if (tempExp.getReady() == 0) {
      boolean test = db.setProteinFractionFile(exp);
      return test;
    } else {
      return false;
    }
  }