Get an integer in the range (0=N, ... 4=T) @param charAt character to be converted. @return integer representation of nucleotide.
(final char charAt)
| 286 | * @return integer representation of nucleotide. |
| 287 | */ |
| 288 | public static int getDNA(final char charAt) { |
| 289 | return valueOf(charAt).ordinal(); |
| 290 | } |
| 291 | } |
| 292 |