Package search.genes

Examples of search.genes.GeneType


* @author mat
*/
public abstract class TreeTranslator {

    public static ClusterHead getTree(IChromosome in, ClusterHead originalTree) {
        GeneType type = (GeneType) in.getApplicationData();
        List<Gene> prog = new ArrayList<Gene>();
        for(int i =0; i < in.size(); i++){
            prog.add(in.getGene(i));
        }
       
View Full Code Here

TOP

Related Classes of search.genes.GeneType

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.