You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(hopefully final commit for KEGGtranslator version 2.2.0)
- Added separate format options for SBML_L2V4 and SBML_L3V1
- Massively changed how relations are translated to BioPAX, especially in Level 3:
o Added support for controller/control combinations
o Added support for modified proteins with a modificaiton feature, that point to the same protein instance
o Added complexAssembly and biochemicalReaction for some relations
o ...
- Various other improvements to 2BioPAX translations
- Added PSI-MI and PSI-MOD ontologies
- Improved command-line usage
Stringmessage = "SBML supports extensions since Level 3. You've chosen to translate a document to Level 2 including the layout or groups extension, what is not possible.\nDo you want to deactivate the extensions for this translation?";
318
+
intret = GUITools.showQuestionMessage(this, message, "Conflict between selected Level and extension support", JOptionPane.OK_CANCEL_OPTION);
319
+
if (ret == JOptionPane.CANCEL_OPTION) {
320
+
returnfalse;
321
+
}
322
+
}
323
+
}
324
+
325
+
returntrue;
326
+
}
327
+
328
+
/**
293
329
* Searches for any JComponent with
294
-
* "TranslatorOptions.FORMAT.getOptionName()" on it and returns the selected
330
+
* {@link KEGGtranslatorIOOptions#FORMAT}.getOptionName() on it and returns the selected
295
331
* format. Use it e.g. with {@link #translateToolBar}.
296
332
*
297
333
* @param r
@@ -774,7 +810,6 @@ public URL getURLOnlineHelp() {
0 commit comments