Package org.moltools.design.data.impl

Examples of org.moltools.design.data.impl.DefaultChangeablePropertyNucleotideSequence


/**Factory class for creating certain kinds of ProbeMaker-specific sequence types*/
public class ProbeMakerSequenceFactory {
 
  public static PropertyAcceptorNucleotideSequence createTSS(NucleotideSequence seq, String targetID) {
    PropertyAcceptorNucleotideSequence tss = new DefaultChangeablePropertyNucleotideSequence(seq.getID(),seq.seqString(),seq.getType());       
    tss.getMutablePropertySet().setProperty(new SimpleProperty(Targetted.KEY_TARGET_ID,targetID,false));
    return tss;
  }
View Full Code Here


/**Factory class for creating certain kinds of ProbeMaker-specific sequence types*/
public class ProbeMakerSequenceFactory {
 
  public static PropertyAcceptorNucleotideSequence createTSS(NucleotideSequence seq, String targetID) {
    PropertyAcceptorNucleotideSequence tss = new DefaultChangeablePropertyNucleotideSequence(seq.getID(),seq.seqString(),seq.getType());       
    tss.getMutablePropertySet().setProperty(new SimpleProperty(Targetted.KEY_TARGET_ID,targetID,false));
    return tss;
  }
View Full Code Here

TOP

Related Classes of org.moltools.design.data.impl.DefaultChangeablePropertyNucleotideSequence

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.