Author: pwang
Date: 2008-09-11 10:36:00 -0700 (Thu, 11 Sep 2008)
New Revision: 14883
Modified:
csplugins/trunk/ucsd/pwang/SessionForWebPlugin/src/SessionForWebPlugin/SessionForWebPlugin.java
Log:
If species is null, set it to "unknown"
Modified:
csplugins/trunk/ucsd/pwang/SessionForWebPlugin/src/SessionForWebPlugin/SessionForWebPlugin.java
===================================================================
---
csplugins/trunk/ucsd/pwang/SessionForWebPlugin/src/SessionForWebPlugin/SessionForWebPlugin.java
2008-09-11 17:34:42 UTC (rev 14882)
+++
csplugins/trunk/ucsd/pwang/SessionForWebPlugin/src/SessionForWebPlugin/SessionForWebPlugin.java
2008-09-11 17:36:00 UTC (rev 14883)
@@ -247,7 +247,8 @@
String networkTitle = network.getTitle();
String species =
cyNetworkAttrs.getStringAttribute(networkID, "species");
if (species == null) {
- species = "Saccharomyces cerevisiae";
+ //species = "Saccharomyces cerevisiae";
+ species = "unknown";
}
map.put(networkTitle, species);
}
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---