(int[] x, int[] y)
| 1780 | } |
| 1781 | |
| 1782 | private static int intervalOverlapSize(int[] x, int[] y) { |
| 1783 | int start = Math.max(x[0], y[0]); |
| 1784 | int end = Math.min(x[1], y[1]); |
| 1785 | |
| 1786 | return Math.max(0, end-start); |
| 1787 | } |
| 1788 | |
| 1789 | private class TranscriptAssemblyWorker implements Runnable { |
| 1790 | private TranscriptWriter writer; |