@@ -46,11 +46,11 @@ public static String formatExonStructure(GeneChromosomePosition chromosomePositi
4646 * @param chromosomePosition
4747 * @return
4848 */
49- public static String printHTMLExonStructure (GeneChromosomePosition chromosomePosition ){
49+ public static String getHTMLExonStructure (GeneChromosomePosition chromosomePosition ){
5050 if ( chromosomePosition .getOrientation () == '+' )
51- return printHTMLExonStructureForward (chromosomePosition );
51+ return getHTMLExonStructureForward (chromosomePosition );
5252
53- return printHTMLExonStructureReverse (chromosomePosition );
53+ return getHTMLExonStructureReverse (chromosomePosition );
5454
5555 }
5656
@@ -108,7 +108,7 @@ private static String formatExonStructureForward(GeneChromosomePosition chromPos
108108 }
109109
110110
111- private static String printHTMLExonStructureForward (GeneChromosomePosition chromPos ) {
111+ private static String getHTMLExonStructureForward (GeneChromosomePosition chromPos ) {
112112 StringWriter s = new StringWriter ();
113113
114114 List <Integer > exonStarts = chromPos .getExonStarts ();
@@ -189,7 +189,7 @@ private static String showGenePosLink(GeneChromosomePosition chromPos, Integer p
189189 return buf .toString ();
190190 }
191191
192- private static String printHTMLExonStructureReverse (GeneChromosomePosition chromPos ) {
192+ private static String getHTMLExonStructureReverse (GeneChromosomePosition chromPos ) {
193193 StringWriter s = new StringWriter ();
194194
195195 List <Integer > exonStarts = chromPos .getExonStarts ();
@@ -783,7 +783,7 @@ public static int getCDSLengthReverse(List<Integer> exonStarts,
783783
784784 logger .debug (" no translation!" );
785785 }
786-
786+
787787 }
788788
789789 logger .debug ("length exons: " + lengthExons + " codin length: " + (codingLength - 3 ));
0 commit comments