Package htsjdk.tribble.index.tabix
Class TabixIndex
java.lang.Object
htsjdk.tribble.index.tabix.TabixIndex
- All Implemented Interfaces:
Index
This class represent a Tabix index that has been built in memory or read from a file. It can be queried or
written to a file.
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionTabixIndex(TabixFormat formatSpec, List<String> sequenceNames, BinningIndexContent[] indices) TabixIndex(File tabixFile) Convenient ctor that opens the file, wraps with with BGZF reader, and closes after reading index.TabixIndex(InputStream inputStream) TabixIndex(Path tabixPath) Convenient ctor that opens the path, wraps with with BGZF reader, and closes after reading index. -
Method Summary
Modifier and TypeMethodDescriptionbooleancontainsChromosome(String chr) booleanbooleanReturns true if this and obj are 'effectively' equivalent indices.Query the index.No arbitrary properties in TabixinthashCode()booleanvoidall indexes are writable to diskvoidWrites the index with BGZF.voidwriteBasedOnFeaturePath(Path featurePath) Writes to a path with appropriate name and directory based on feature path.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface htsjdk.tribble.index.Index
write, writeBasedOnFeatureFile
-
Field Details
-
MAGIC_NUMBER
public static final int MAGIC_NUMBER
-
-
Constructor Details
-
TabixIndex
public TabixIndex(TabixFormat formatSpec, List<String> sequenceNames, BinningIndexContent[] indices) - Parameters:
formatSpec- Information about how to interpret the file being indexed. Unused by this class other than written to an output file.sequenceNames- Sequences in the file being indexed, in the order they appear in the file.indices- One for each element of sequenceNames
-
TabixIndex
- Parameters:
inputStream- This is expected to be buffered and be gzip-decompressing as appropriate. Caller should close input stream after ctor returns.- Throws:
IOException
-
TabixIndex
Convenient ctor that opens the file, wraps with with BGZF reader, and closes after reading index.- Throws:
IOException
-
TabixIndex
Convenient ctor that opens the path, wraps with with BGZF reader, and closes after reading index.- Throws:
IOException
-
-
Method Details
-
getBlocks
Description copied from interface:IndexQuery the index.- Specified by:
getBlocksin interfaceIndex- Parameters:
chr- the chromosomestart- the start position, one-based, inclusive.end- the end position, one-based, inclusive.- Returns:
- List of regions of file that are candidates for the given query. TODO: This method has not yet been tested, since the primary task is index writing.
-
isCurrentVersion
public boolean isCurrentVersion()- Specified by:
isCurrentVersionin interfaceIndex- Returns:
- true if the index is up to date, false otherwise
-
getSequenceNames
- Specified by:
getSequenceNamesin interfaceIndex- Returns:
- a list of the sequence names we've seen during indexing, in order
-
containsChromosome
- Specified by:
containsChromosomein interfaceIndex- Parameters:
chr- the chromosome (or contig) name- Returns:
- true if we have an entry; false otherwise
-
getProperties
No arbitrary properties in Tabix- Specified by:
getPropertiesin interfaceIndex- Returns:
- get the list of properties for this index. Returns null if no properties.
-
equalsIgnoreProperties
Description copied from interface:IndexReturns true if this and obj are 'effectively' equivalent indices. Ignores the time stamp on the file, as this may not be the same for even identical indices- Specified by:
equalsIgnorePropertiesin interfaceIndex- Parameters:
o-- Returns:
-
getFormatSpec
-
getIndices
-
write
Writes the index with BGZF.- Specified by:
writein interfaceIndex- Parameters:
tabixPath- Where to write the index.- Throws:
IOException- if the index is unable to write to the specified path.
-
writeBasedOnFeaturePath
Writes to a path with appropriate name and directory based on feature path.- Specified by:
writeBasedOnFeaturePathin interfaceIndex- Parameters:
featurePath- Path being indexed.- Throws:
IOException- if featureFile is not a normal file.
-
write
Description copied from interface:Indexall indexes are writable to disk- Specified by:
writein interfaceIndex- Parameters:
los- It is assumes that caller has done appropriate buffering and BlockCompressedOutputStream wrapping. Caller should close output stream after invoking this method.- Throws:
IOException
-
equals
-
hashCode
public int hashCode()
-