change for new char/byte in BaseUtils
git-svn-id: file:///humgen/gsa-scr1/gsa-engineering/svn_contents/trunk@1467 348d0f76-0448-11de-a6fe-93d51630548a
This commit is contained in:
parent
a639459112
commit
7cf9a54b64
|
|
@ -121,9 +121,9 @@ public class CovariateCounter {
|
||||||
char prevBase = (char)bases[offset - 1];
|
char prevBase = (char)bases[offset - 1];
|
||||||
|
|
||||||
if (read.getReadNegativeStrandFlag()) {
|
if (read.getReadNegativeStrandFlag()) {
|
||||||
ref = (char)BaseUtils.simpleComplement(ref);
|
ref = BaseUtils.simpleComplement(ref);
|
||||||
base = (char)BaseUtils.simpleComplement(base);
|
base = BaseUtils.simpleComplement(base);
|
||||||
prevBase = (char)BaseUtils.simpleComplement((char)bases[offset+1]);
|
prevBase = BaseUtils.simpleComplement((char)bases[offset+1]);
|
||||||
cycle = read.getReadLength() - (offset + 1);
|
cycle = read.getReadLength() - (offset + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue