Convert from a 0-4 based numerical base to an uppercase NACGT style character. @param b byte representing the numerical value of the base @return character representation of the byte ( NACGT )
(final int b)
| 132 | * @return character representation of the byte (<code>NACGT</code>) |
| 133 | */ |
| 134 | public static char getBase(final int b) { |
| 135 | return BASES[b]; |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Converts an encoded base into a uppercase <code>ACGTN</code> character. |
no outgoing calls
no test coverage detected