Package htsjdk.samtools.reference
Class BlockCompressedIndexedFastaSequenceFile
- java.lang.Object
-
- htsjdk.samtools.reference.BlockCompressedIndexedFastaSequenceFile
-
- All Implemented Interfaces:
ReferenceSequenceFile,Closeable,AutoCloseable
public class BlockCompressedIndexedFastaSequenceFile extends Object
A block-compressed FASTA file driven by an index for fast lookups.Supports two interfaces: the ReferenceSequenceFile for old-style, stateful lookups and a direct getter.
-
-
Field Summary
Fields Modifier and Type Field Description protected SAMSequenceDictionarysequenceDictionary
-
Constructor Summary
Constructors Constructor Description BlockCompressedIndexedFastaSequenceFile(Path path)BlockCompressedIndexedFastaSequenceFile(Path path, FastaSequenceIndex index)BlockCompressedIndexedFastaSequenceFile(Path path, FastaSequenceIndex index, GZIIndex gziIndex)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()protected static PathfindFastaIndex(Path fastaFile)protected static PathfindRequiredFastaIndexFile(Path fastaFile)protected static FilefindSequenceDictionary(File file)protected static PathfindSequenceDictionary(Path path)protected StringgetAbsolutePath()Returns the full path to the reference file.FastaSequenceIndexgetIndex()protected PathgetPath()Returns the path to the reference file.ReferenceSequencegetSequence(String contig)Retrieves the complete sequence described by this contig.SAMSequenceDictionarygetSequenceDictionary()Returns the list of sequence records associated with the reference sequence if found otherwise null.protected StringgetSource()Returns the named source of the reference file.ReferenceSequencegetSubsequenceAt(String contig, long start, long stop)Gets the subsequence of the contig in the range [start,stop]booleanisIndexed()default implementation -- override if index is supportedReferenceSequencenextSequence()Gets the next sequence if available, or null if not present.protected intreadFromPosition(ByteBuffer buffer, long position)Reads a sequence of bytes from this sequence file into the given buffer, starting at the given file position.voidreset()Reset the iterator over the index.protected static voidsanityCheckDictionaryAgainstIndex(String fastaFile, SAMSequenceDictionary sequenceDictionary, FastaSequenceIndex index)Do some basic checking to make sure the dictionary and the index match.StringtoString()Returns the full path to the reference file, or the source if no path was specified.
-
-
-
Field Detail
-
sequenceDictionary
protected SAMSequenceDictionary sequenceDictionary
-
-
Constructor Detail
-
BlockCompressedIndexedFastaSequenceFile
public BlockCompressedIndexedFastaSequenceFile(Path path) throws FileNotFoundException
- Throws:
FileNotFoundException
-
BlockCompressedIndexedFastaSequenceFile
public BlockCompressedIndexedFastaSequenceFile(Path path, FastaSequenceIndex index)
-
BlockCompressedIndexedFastaSequenceFile
public BlockCompressedIndexedFastaSequenceFile(Path path, FastaSequenceIndex index, GZIIndex gziIndex)
-
-
Method Detail
-
readFromPosition
protected int readFromPosition(ByteBuffer buffer, long position) throws IOException
Reads a sequence of bytes from this sequence file into the given buffer, starting at the given file position.- Parameters:
buffer- the buffer into which bytes are to be transferredposition- the position to start reading at- Returns:
- the number of bytes read
- Throws:
IOException- if an I/O error occurs while reading
-
close
public void close() throws IOException- Throws:
IOException
-
findRequiredFastaIndexFile
protected static Path findRequiredFastaIndexFile(Path fastaFile) throws FileNotFoundException
- Throws:
FileNotFoundException
-
sanityCheckDictionaryAgainstIndex
protected static void sanityCheckDictionaryAgainstIndex(String fastaFile, SAMSequenceDictionary sequenceDictionary, FastaSequenceIndex index)
Do some basic checking to make sure the dictionary and the index match.- Parameters:
fastaFile- Used for error reporting only.sequenceDictionary- sequence dictionary to check against the index.index- index file to check against the dictionary.
-
getIndex
public FastaSequenceIndex getIndex()
-
nextSequence
public ReferenceSequence nextSequence()
Gets the next sequence if available, or null if not present.- Returns:
- next sequence if available, or null if not present.
-
reset
public void reset()
Reset the iterator over the index.
-
isIndexed
public final boolean isIndexed()
default implementation -- override if index is supported- Specified by:
isIndexedin interfaceReferenceSequenceFile- Returns:
- true if getSequence and getSubsequenceAt methods are allowed.
-
getSequence
public ReferenceSequence getSequence(String contig)
Retrieves the complete sequence described by this contig.- Specified by:
getSequencein interfaceReferenceSequenceFile- Parameters:
contig- contig whose data should be returned.- Returns:
- The full sequence associated with this contig.
-
getSubsequenceAt
public ReferenceSequence getSubsequenceAt(String contig, long start, long stop)
Gets the subsequence of the contig in the range [start,stop]- Specified by:
getSubsequenceAtin interfaceReferenceSequenceFile- Parameters:
contig- Contig whose subsequence to retrieve.start- inclusive, 1-based start of region.stop- inclusive, 1-based stop of region.- Returns:
- The partial reference sequence associated with this range.
-
getPath
protected Path getPath()
Returns the path to the reference file.
-
getSource
protected String getSource()
Returns the named source of the reference file.
-
getSequenceDictionary
public SAMSequenceDictionary getSequenceDictionary()
Returns the list of sequence records associated with the reference sequence if found otherwise null.- Specified by:
getSequenceDictionaryin interfaceReferenceSequenceFile- Returns:
- a list of sequence records representing the sequences in this reference file
-
getAbsolutePath
protected String getAbsolutePath()
Returns the full path to the reference file.
-
toString
public String toString()
Returns the full path to the reference file, or the source if no path was specified.- Specified by:
toStringin interfaceReferenceSequenceFile- Overrides:
toStringin classObject- Returns:
- Reference name, file name, or something other human-readable representation.
-
-