Examples of CyTable


Examples of org.cytoscape.model.CyTable

   *         used for scoring at the time
   */
  public double setNodeAttributesAndGetMaxScore() {
    for (CyNode n : network.getNodeList()) {
      Long rgi = n.getSUID();
      CyTable netNodeTbl = network.getDefaultNodeTable();
     
      if (netNodeTbl.getColumn(CLUSTER_ATTR) == null)
        netNodeTbl.createListColumn(CLUSTER_ATTR, String.class, false);
      if (netNodeTbl.getColumn(NODE_STATUS_ATTR) == null)
        netNodeTbl.createColumn(NODE_STATUS_ATTR, String.class, false);
     
      if(currentParamsCopy.getAlgorithm().equals(ParameterSet.MCODE)){
            if (netNodeTbl.getColumn("Score") == null) {
              netNodeTbl.createColumn("Score", Double.class, false);
            }
          }
      /*if (netNodeTbl.getColumn(SCORE_ATTR) == null)
        netNodeTbl.createColumn(SCORE_ATTR, Double.class, false);*/

 
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.