Package org.moltools.apps.probemaker

Examples of org.moltools.apps.probemaker.NoDesignLogWriter


    badTagsAll = new List[0];
  }

  public void setup(DefiniteSequenceDB<Probe> probes, TagAllocationTable tat, TagSettings tagSettings, Settings settings, Analyzer analyzer, DesignLogWriter log) {
    this.analyzer = analyzer;
    this.designlog = log == null ? new NoDesignLogWriter() : log;

    //Set older probes
    this.probes = probes;
    if (probes == null) {
      probes = new ListSequenceDB<Probe>();
View Full Code Here


    Map<String,String> params = p.getSettings().getDesignParameters();

    allocator.setup(p.getProbes(),p.getTagAllocationTable(),p.getTagSettings(), p.getSettings(), analyzer, log);
    addParameters(params);

    this.log = log == null ? new NoDesignLogWriter() : log;   
    writeProjectInfoToLog();
  }
View Full Code Here

TOP

Related Classes of org.moltools.apps.probemaker.NoDesignLogWriter

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.