From 6dc15d5ed0d13df8068a75ea772cffe6cf6a004e Mon Sep 17 00:00:00 2001 From: kjvdheide Date: Thu, 1 Feb 2018 16:53:55 +0000 Subject: [PATCH] JAL-2890 made tool name a class value instead of method params --- src/jalview/ext/cipres/TreeJob.java | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/jalview/ext/cipres/TreeJob.java b/src/jalview/ext/cipres/TreeJob.java index 4bfd7da..5955c36 100644 --- a/src/jalview/ext/cipres/TreeJob.java +++ b/src/jalview/ext/cipres/TreeJob.java @@ -18,6 +18,8 @@ public class TreeJob private final CiApplication app = CiApplication.getInstance(); + private String toolName; + private Map> vParams = new HashMap<>(); private Map inputParams = new HashMap<>(); @@ -111,6 +113,16 @@ public class TreeJob metadata.clear(); } + public String getTool() + { + return toolName; + } + + public void setTool(String toolName) + { + this.toolName = toolName; + } + /** * Sends this job with all given parameters to the given Cipres tool but * doesn't actually run the job. This is a lightweight way to validate that -- 1.7.10.2