MCPcopy Create free account
hub / github.com/BirolLab/RNA-Bloom / shiftRight

Method shiftRight

src/rnabloom/util/SeqUtils.java:110–114  ·  view source on GitHub ↗
(byte[] bytes, int len)

Source from the content-addressed store, hash-verified

108 }
109
110 public static final byte[] shiftRight(byte[] bytes, int len) {
111 byte[] bytes2 = new byte[len];
112 System.arraycopy(bytes, 0, bytes2, 1, len-1);
113 return bytes2;
114 }
115
116 public static final byte[] shiftLeft(byte[] bytes, int len) {
117 byte[] bytes2 = new byte[len];

Callers 4

getPredecessorsMethod · 0.80
getMaxCovPredecessorMethod · 0.80
getPredecessorsMethod · 0.80
getMaxCovPredecessorMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected