Merge pull request #8 from yfarjoun/master
Huge speedup in initial traversal of BAM index files (x20 speed!)
This commit is contained in:
commit
002ce9c1d5
|
|
@ -23,17 +23,17 @@
|
|||
*/
|
||||
package org.broadinstitute.sting.gatk.datasources.reads;
|
||||
|
||||
import org.broad.tribble.util.SeekableBufferedStream;
|
||||
import org.broad.tribble.util.SeekableFileStream;
|
||||
|
||||
import net.sf.samtools.*;
|
||||
import org.broadinstitute.sting.gatk.CommandLineGATK;
|
||||
|
||||
import org.broadinstitute.sting.utils.exceptions.ReviewedStingException;
|
||||
import org.broadinstitute.sting.utils.exceptions.UserException;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
import java.io.IOException;
|
||||
import java.io.*;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.nio.ByteOrder;
|
||||
import java.nio.channels.FileChannel;
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
|
@ -68,6 +68,9 @@ public class GATKBAMIndex {
|
|||
|
||||
private final File mFile;
|
||||
|
||||
//TODO: figure out a good value for this buffer size
|
||||
private final int BUFFERED_STREAM_BUFFER_SIZE=8192;
|
||||
|
||||
/**
|
||||
* Number of sequences stored in this index.
|
||||
*/
|
||||
|
|
@ -78,8 +81,8 @@ public class GATKBAMIndex {
|
|||
*/
|
||||
private final long[] sequenceStartCache;
|
||||
|
||||
private FileInputStream fileStream;
|
||||
private FileChannel fileChannel;
|
||||
private SeekableFileStream fileStream;
|
||||
private SeekableBufferedStream bufferedStream;
|
||||
|
||||
public GATKBAMIndex(final File file) {
|
||||
mFile = file;
|
||||
|
|
@ -277,12 +280,11 @@ public class GATKBAMIndex {
|
|||
|
||||
for (int i = sequenceIndex; i < referenceSequence; i++) {
|
||||
sequenceStartCache[i] = position();
|
||||
|
||||
// System.out.println("# Sequence TID: " + i);
|
||||
final int nBins = readInteger();
|
||||
// System.out.println("# nBins: " + nBins);
|
||||
for (int j = 0; j < nBins; j++) {
|
||||
skipInteger();
|
||||
final int bin = readInteger();
|
||||
final int nChunks = readInteger();
|
||||
// System.out.println("# bin[" + j + "] = " + bin + ", nChunks = " + nChunks);
|
||||
skipBytes(16 * nChunks);
|
||||
|
|
@ -290,15 +292,18 @@ public class GATKBAMIndex {
|
|||
final int nLinearBins = readInteger();
|
||||
// System.out.println("# nLinearBins: " + nLinearBins);
|
||||
skipBytes(8 * nLinearBins);
|
||||
|
||||
}
|
||||
|
||||
sequenceStartCache[referenceSequence] = position();
|
||||
}
|
||||
|
||||
|
||||
|
||||
private void openIndexFile() {
|
||||
try {
|
||||
fileStream = new FileInputStream(mFile);
|
||||
fileChannel = fileStream.getChannel();
|
||||
fileStream = new SeekableFileStream(mFile);
|
||||
bufferedStream = new SeekableBufferedStream(fileStream,BUFFERED_STREAM_BUFFER_SIZE);
|
||||
}
|
||||
catch (IOException exc) {
|
||||
throw new ReviewedStingException("Unable to open index file (" + exc.getMessage() +")" + mFile, exc);
|
||||
|
|
@ -307,7 +312,7 @@ public class GATKBAMIndex {
|
|||
|
||||
private void closeIndexFile() {
|
||||
try {
|
||||
fileChannel.close();
|
||||
bufferedStream.close();
|
||||
fileStream.close();
|
||||
}
|
||||
catch (IOException exc) {
|
||||
|
|
@ -334,10 +339,6 @@ public class GATKBAMIndex {
|
|||
return buffer.getInt();
|
||||
}
|
||||
|
||||
private void skipInteger() {
|
||||
skipBytes(INT_SIZE_IN_BYTES);
|
||||
}
|
||||
|
||||
/**
|
||||
* Reads an array of <count> longs from the file channel, returning the results as an array.
|
||||
* @param count Number of longs to read.
|
||||
|
|
@ -356,7 +357,9 @@ public class GATKBAMIndex {
|
|||
private void read(final ByteBuffer buffer) {
|
||||
try {
|
||||
int bytesExpected = buffer.limit();
|
||||
int bytesRead = fileChannel.read(buffer);
|
||||
//BufferedInputStream cannot read directly into a byte buffer, so we read into an array
|
||||
//and put the result into the bytebuffer after the if statement.
|
||||
int bytesRead = bufferedStream.read(byteArray,0,bytesExpected);
|
||||
|
||||
// We have a rigid expectation here to read in exactly the number of bytes we've limited
|
||||
// our buffer to -- if we read in fewer bytes than this, or encounter EOF (-1), the index
|
||||
|
|
@ -367,6 +370,7 @@ public class GATKBAMIndex {
|
|||
"Please try re-indexing the corresponding BAM file.",
|
||||
mFile));
|
||||
}
|
||||
buffer.put(byteArray,0,bytesRead);
|
||||
}
|
||||
catch(IOException ex) {
|
||||
throw new ReviewedStingException("Index: unable to read bytes from index file " + mFile);
|
||||
|
|
@ -380,10 +384,13 @@ public class GATKBAMIndex {
|
|||
*/
|
||||
private ByteBuffer buffer = null;
|
||||
|
||||
//BufferedStream don't read into ByteBuffers, so we need this temporary array
|
||||
private byte[] byteArray=null;
|
||||
private ByteBuffer getBuffer(final int size) {
|
||||
if(buffer == null || buffer.capacity() < size) {
|
||||
// Allocate a new byte buffer. For now, make it indirect to make sure it winds up on the heap for easier debugging.
|
||||
buffer = ByteBuffer.allocate(size);
|
||||
byteArray = new byte[size];
|
||||
buffer.order(ByteOrder.LITTLE_ENDIAN);
|
||||
}
|
||||
buffer.clear();
|
||||
|
|
@ -393,7 +400,13 @@ public class GATKBAMIndex {
|
|||
|
||||
private void skipBytes(final int count) {
|
||||
try {
|
||||
fileChannel.position(fileChannel.position() + count);
|
||||
|
||||
//try to skip forward the requested amount.
|
||||
long skipped = bufferedStream.skip(count);
|
||||
|
||||
if( skipped != count ) { //if not managed to skip the requested amount
|
||||
throw new ReviewedStingException("Index: unable to reposition file channel of index file " + mFile);
|
||||
}
|
||||
}
|
||||
catch(IOException ex) {
|
||||
throw new ReviewedStingException("Index: unable to reposition file channel of index file " + mFile);
|
||||
|
|
@ -402,7 +415,8 @@ public class GATKBAMIndex {
|
|||
|
||||
private void seek(final long position) {
|
||||
try {
|
||||
fileChannel.position(position);
|
||||
//to seek a new position, move the fileChannel, and reposition the bufferedStream
|
||||
bufferedStream.seek(position);
|
||||
}
|
||||
catch(IOException ex) {
|
||||
throw new ReviewedStingException("Index: unable to reposition of file channel of index file " + mFile);
|
||||
|
|
@ -415,7 +429,7 @@ public class GATKBAMIndex {
|
|||
*/
|
||||
private long position() {
|
||||
try {
|
||||
return fileChannel.position();
|
||||
return bufferedStream.position();
|
||||
}
|
||||
catch (IOException exc) {
|
||||
throw new ReviewedStingException("Unable to read position from index file " + mFile, exc);
|
||||
|
|
|
|||
|
|
@ -6,6 +6,9 @@ import org.testng.annotations.Test;
|
|||
import java.util.Arrays;
|
||||
|
||||
public class PileupWalkerIntegrationTest extends WalkerTest {
|
||||
String gatkSpeedupArgs="-T Pileup -I " + validationDataLocation + "NA12878.HiSeq.WGS.bwa.cleaned.recal.hg19.20.bam "
|
||||
+ "-R " + hg19Reference + " -o %s ";
|
||||
|
||||
@Test
|
||||
public void testGnarleyFHSPileup() {
|
||||
String gatk_args = "-T Pileup -I " + validationDataLocation + "FHS_Pileup_Test.bam "
|
||||
|
|
@ -39,4 +42,31 @@ public class PileupWalkerIntegrationTest extends WalkerTest {
|
|||
WalkerTestSpec spec = new WalkerTestSpec(gatk_args, 1, Arrays.asList(SingleReadAligningOffChromosome1MD5));
|
||||
executeTest("Testing single read spanning off chromosome 1 unindexed", spec);
|
||||
}
|
||||
|
||||
/************************/
|
||||
|
||||
//testing speedup to GATKBAMIndex
|
||||
|
||||
|
||||
@Test
|
||||
public void testPileupOnLargeBamChr20(){
|
||||
WalkerTestSpec spec = new WalkerTestSpec(gatkSpeedupArgs + "-L 20:1-76,050", 1, Arrays.asList("8702701350de11a6d28204acefdc4775"));
|
||||
executeTest("Testing single on big BAM at start of chromosome 20", spec);
|
||||
}
|
||||
@Test
|
||||
public void testPileupOnLargeBamMid20(){
|
||||
WalkerTestSpec spec = new WalkerTestSpec(gatkSpeedupArgs + "-L 20:10,000,000-10,001,100", 1, Arrays.asList("818cf5a8229efe6f89fc1cd8145ccbe3"));
|
||||
executeTest("Testing single on big BAM somewhere in chromosome 20", spec);
|
||||
}
|
||||
@Test
|
||||
public void testPileupOnLargeBamEnd20(){
|
||||
WalkerTestSpec spec = new WalkerTestSpec(gatkSpeedupArgs + "-L 20:62,954,114-63,025,520", 1, Arrays.asList("22471ea4a12e5139aef62bf8ff2a5b63"));
|
||||
executeTest("Testing single at end of chromosome 20", spec);
|
||||
}
|
||||
@Test
|
||||
public void testPileupOnLargeBam20Many(){
|
||||
WalkerTestSpec spec = new WalkerTestSpec(gatkSpeedupArgs + "-L 20:1-76,050 -L 20:20,000,000-20,000,100 -L 20:40,000,000-40,000,100 -L 20:30,000,000-30,000,100 -L 20:50,000,000-50,000,100 -L 20:62,954,114-63,025,520 ",
|
||||
1, Arrays.asList("08d899ed7c5a76ef3947bf67338acda1"));
|
||||
executeTest("Testing single on big BAM many places", spec);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue