Skip to content

Commit

Permalink
Removed system output and added latest jar.
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramonche committed May 27, 2024
1 parent 23cfcdc commit 80f1395
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public static JSONObject postJSON(String url, Map<String, String> queryMap,

String args = HttpUtils.getStringArguments(queryMap);
manager.info("URL: " + url + "?" + truncate(args));
System.out.println("URL: " + url + "?" + truncate(args));
// System.out.println("URL: " + url + "?" + truncate(args));
// System.out.println("URL: " + url + "?" + args);

URLConnection connection = null;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,18 +49,18 @@ public ImportNetworkTaskFactory(final StringNetwork stringNet, final String spec

public TaskIterator createTaskIterator() {
if (stringIds == null) {
System.out.println("Calling LoadSpeciesInteractions");
//System.out.println("Calling LoadSpeciesInteractions");
return new TaskIterator(
new LoadSpeciesInteractions(stringNet, speciesName, species, confidence,
species.getName(),
useDATABASE, netType));
} else if (stringNet.getNetwork() == null) {
System.out.println("Calling LoadInteractions");
//System.out.println("Calling LoadInteractions");
return new TaskIterator(new LoadInteractions(stringNet, speciesName, species,
confidence, additionalNodes, stringIds,
queryTermMap, netName, useDATABASE, netType));
}
System.out.println("Calling LoadTermsTask");
//System.out.println("Calling LoadTermsTask");
return new TaskIterator(new LoadTermsTask(stringNet, speciesName, species, confidence,
additionalNodes, stringIds, queryTermMap, useDATABASE, netType));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1360,7 +1360,7 @@ private static CyNode createNodeFromStringDb(CyNetwork network, String id, Strin
CyRow row = network.getRow(newNode);
nodeMap.put(id, newNode);

System.out.println("Creating node "+id);
// System.out.println("Creating node "+id);

row.set(CyNetwork.NAME, id);
// row.set(CyRootNetwork.SHARED_NAME, stringId);
Expand Down
Binary file renamed stringApp-2.0.2.jar → stringApp-2.1.0.jar
Binary file not shown.

0 comments on commit 80f1395

Please sign in to comment.