Given an analysis id, returns the corresponding AnalysisConfig. @throws ConfigException when the manager does not contain the AnalysisConfig for the given id.
(String id)
| 63 | * the AnalysisConfig for the given id. |
| 64 | */ |
| 65 | AnalysisConfig getConfig(String id) { |
| 66 | AnalysisConfig config = configs.get(id); |
| 67 | if (config == null) { |
| 68 | throw new ConfigException("Analysis \"" + id + "\" is not found in " + |
| 69 | Configs.getAnalysisConfigURL()); |
| 70 | } |
| 71 | return config; |
| 72 | } |
| 73 | |
| 74 | /** |
| 75 | * Overwrites the AnalysisConfig.options by corresponding PlanConfig.options. |
no test coverage detected