X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src2%2Ffr%2Forsay%2Flri%2Fvarna%2Fmodels%2Ftemplates%2FDrawRNATemplateMethod.java;fp=src2%2Ffr%2Forsay%2Flri%2Fvarna%2Fmodels%2Ftemplates%2FDrawRNATemplateMethod.java;h=0000000000000000000000000000000000000000;hb=d27359893c99db0e749a59d8a7ab73ea751da09e;hp=9fd5f67a87659ae221a9b8eb4e97a57cb40173db;hpb=9f55415c9f8005e9dcd8243453883ff853fd5b76;p=jalview.git diff --git a/src2/fr/orsay/lri/varna/models/templates/DrawRNATemplateMethod.java b/src2/fr/orsay/lri/varna/models/templates/DrawRNATemplateMethod.java deleted file mode 100644 index 9fd5f67..0000000 --- a/src2/fr/orsay/lri/varna/models/templates/DrawRNATemplateMethod.java +++ /dev/null @@ -1,38 +0,0 @@ -/** - * File written by Raphael Champeimont - * UMR 7238 Genomique des Microorganismes - */ -package fr.orsay.lri.varna.models.templates; - -/** - * What to do in case some helices are of a different length - * in the template and the actual helix. - * Possibles values are: - * 0 - No adjustment is done. - * A longer than expected helix might bump into an other helix. - * 1 - Scaling factors (actual length / template length) are calculated, - * the maximum scaling factor L is extracted, then all helix positions - * are multiplied by L. - * 2 - Same as 1, but L is computed as the minimum value such that there - * are no backbone intersections. - */ -public enum DrawRNATemplateMethod { - NOADJUST("No Adjust"), MAXSCALINGFACTOR("Max Scaling"), NOINTERSECT("Non-crossing"), HELIXTRANSLATE("Helix Translation"); - - String _msg; - - public static DrawRNATemplateMethod getDefault() { - return HELIXTRANSLATE; - } - - - public String toString() - { - return _msg; - } - - private DrawRNATemplateMethod(String msg) - { - _msg = msg; - } -} \ No newline at end of file