* @return int[] { from, to pos in range }, int[range.to-range.from+1]
* returning mapped position
*/
- private int[][] posMap(List<int[]> shiftTo, int ratio,
- List<int[]> shiftFrom, int toRatio)
+ private int[][] posMap(List<int[]> shiftTo, int sourceRatio,
+ List<int[]> shiftFrom, int targetRatio)
{
// TODO only used for test - remove??
int iv = 0, ivSize = shiftTo.size();
int mp[][] = new int[to - from + 2][];
for (int i = 0; i < mp.length; i++)
{
- int[] m = shift(i + from, shiftTo, ratio, shiftFrom, toRatio);
+ int[] m = shift(i + from, shiftTo, sourceRatio, shiftFrom, targetRatio);
if (m != null)
{
if (i == 0)
*
* @param start
* @param end
- * @param ranges
- * @param wordLengthFrom
- * @param wordLengthTo
+ * @param sourceRange
+ * @param sourceWordLength
+ * @param targetWordLength
* @return
*/
protected final static BitSet getMappedOffsetsForPositions(int start,
- int end, List<int[]> ranges, int wordLengthFrom, int wordLengthTo)
+ int end, List<int[]> sourceRange, int sourceWordLength, int targetWordLength)
{
BitSet overlaps = new BitSet();
int offset = 0;
- final int s1 = ranges.size();
+ final int s1 = sourceRange.size();
for (int i = 0; i < s1; i++)
{
- int[] range = ranges.get(i);
+ int[] range = sourceRange.get(i);
final int offset1 = offset;
int overlapStartOffset = -1;
int overlapEndOffset = -1;
/*
* found an overlap
*/
- if (wordLengthFrom != wordLengthTo)
+ if (sourceWordLength != targetWordLength)
{
/*
* convert any overlap found to whole words in the target range
* (e.g. treat any partial codon overlap as if the whole codon)
*/
- overlapStartOffset -= overlapStartOffset % wordLengthFrom;
- overlapStartOffset = overlapStartOffset / wordLengthFrom
- * wordLengthTo;
+ overlapStartOffset -= overlapStartOffset % sourceWordLength;
+ overlapStartOffset = overlapStartOffset / sourceWordLength
+ * targetWordLength;
/*
* similar calculation for range end, adding
* (wordLength2 - 1) for end of mapped word
*/
- overlapEndOffset -= overlapEndOffset % wordLengthFrom;
- overlapEndOffset = overlapEndOffset / wordLengthFrom
- * wordLengthTo;
- overlapEndOffset += wordLengthTo - 1;
+ overlapEndOffset -= overlapEndOffset % sourceWordLength;
+ overlapEndOffset = overlapEndOffset / sourceWordLength
+ * targetWordLength;
+ overlapEndOffset += targetWordLength - 1;
}
overlaps.set(overlapStartOffset, overlapEndOffset + 1);
}
/**
* Returns a (possibly empty) list of the [start-end] values (positions) at
- * offsets in the {@code ranges} list that are marked by 'on' bits in the
+ * offsets in the {@code targetRange} list that are marked by 'on' bits in the
* {@code offsets} bitset.
*
- * @param ranges
+ * @param targetRange
* @param offsets
* @return
*/
protected final static List<int[]> getPositionsForOffsets(
- List<int[]> ranges, BitSet offsets)
+ List<int[]> targetRange, BitSet offsets)
{
List<int[]> mapped = new ArrayList<>();
if (offsets.isEmpty())
*/
final int toAdd = offsets.cardinality();
int added = 0;
- final int s2 = ranges.size();
+ final int s2 = targetRange.size();
for (int i = 0; added < toAdd && i < s2; i++)
{
- int[] range = ranges.get(i);
+ int[] range = targetRange.get(i);
added += addOffsetPositions(mapped, traversed, range, offsets);
traversed += Math.abs(range[1] - range[0]) + 1;
}