Author: pjmcswee
Date: 2008-09-18 13:37:47 -0700 (Thu, 18 Sep 2008)
New Revision: 14927

Modified:
   csplugins/trunk/soc/pjmcswee/plugin.props
   
csplugins/trunk/soc/pjmcswee/src/cytoscape/randomnetwork/gui/RandomizeExistingPanel.java
Log:
Change default number of shuffles to 10*E

Modified: csplugins/trunk/soc/pjmcswee/plugin.props
===================================================================
--- csplugins/trunk/soc/pjmcswee/plugin.props   2008-09-18 15:43:21 UTC (rev 
14926)
+++ csplugins/trunk/soc/pjmcswee/plugin.props   2008-09-18 20:37:47 UTC (rev 
14927)
@@ -28,10 +28,10 @@
 pluginAuthorsIntsitutions=Patrick J. McSweeney:Syracuse University
 
 # Date this plugin/plugin version was released
-releaseDate=August 18, 2008
+releaseDate=September 19, 2008
 
 # URL to a website that gives more information about your plugin, Ex. 
http://my-lab-site.org
-projectURL=http://sites.google.com/sites/randomnetworkplugin
+projectURL=http://sites.google.com/site/randomnetworkplugin
 
 
 

Modified: 
csplugins/trunk/soc/pjmcswee/src/cytoscape/randomnetwork/gui/RandomizeExistingPanel.java
===================================================================
--- 
csplugins/trunk/soc/pjmcswee/src/cytoscape/randomnetwork/gui/RandomizeExistingPanel.java
    2008-09-18 15:43:21 UTC (rev 14926)
+++ 
csplugins/trunk/soc/pjmcswee/src/cytoscape/randomnetwork/gui/RandomizeExistingPanel.java
    2008-09-18 20:37:47 UTC (rev 14927)
@@ -195,7 +195,7 @@
 
                int E = net.getEdgeCount();
                numIterTextField = new javax.swing.JTextField();
-               numIterTextField.setText("" + 4*E);
+               numIterTextField.setText("" + 10*E);
                numIterTextField.setPreferredSize(new Dimension(80,25));        
                numIterTextField.setHorizontalAlignment(JTextField.RIGHT);
                numIterLabel = new javax.swing.JLabel();
@@ -415,7 +415,7 @@
                        CyNetwork net = Cytoscape.getCurrentNetwork();
        
                        int E = net.getEdgeCount();
-                       numIterTextField.setText("" + (4*E));
+                       numIterTextField.setText("" + (10*E));
                        
          }
 


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"cytoscape-cvs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cytoscape-cvs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to