(String seq)
| 1293 | } |
| 1294 | |
| 1295 | public static final String smallestStrand(String seq) { |
| 1296 | String rc = reverseComplement(seq); |
| 1297 | |
| 1298 | if (seq.compareTo(rc) > 0) { |
| 1299 | return rc; |
| 1300 | } |
| 1301 | else { |
| 1302 | return seq; |
| 1303 | } |
| 1304 | } |
| 1305 | |
| 1306 | public static final String[] smallestStrand(String seq1, String seq2) { |
| 1307 | String rc2 = reverseComplement(seq2); |
nothing calls this directly
no test coverage detected