Package htsjdk.samtools
Class BAMRecordCodec
java.lang.Object
htsjdk.samtools.BAMRecordCodec
- All Implemented Interfaces:
SortingCollection.Codec<SAMRecord>,Cloneable
Class for translating between in-memory and disk representation of BAMRecord.
-
Constructor Summary
ConstructorsConstructorDescriptionBAMRecordCodec(SAMFileHeader header) BAMRecordCodec(SAMFileHeader header, SAMRecordFactory factory) -
Method Summary
Modifier and TypeMethodDescriptionclone()Must return a cloned copy of the codec that can be used independently of the original instance.decode()Read the next record from the input stream and convert into a java object.voidWrite object to OutputStream.static CigarmakeSentinelCigar(Cigar cigar) Create a "Sentinel" cigar that will be placed in BAM file when the actual cigar has more than 0xffff operator, which are not supported by the bam format.voidSets the input stream that records will be read from.voidsetInputStream(InputStream is, String filename) Sets the input stream that records will be read from.voidSets the output stream that records will be written to.voidsetOutputStream(OutputStream os, String filename) Sets the output stream that records will be written to.
-
Constructor Details
-
BAMRecordCodec
-
BAMRecordCodec
-
-
Method Details
-
clone
Description copied from interface:SortingCollection.CodecMust return a cloned copy of the codec that can be used independently of the original instance. This is required so that multiple codecs can exist simultaneously that each is reading a separate file.- Specified by:
clonein interfaceSortingCollection.Codec<SAMRecord>- Overrides:
clonein classObject
-
setOutputStream
Sets the output stream that records will be written to.- Specified by:
setOutputStreamin interfaceSortingCollection.Codec<SAMRecord>
-
setOutputStream
Sets the output stream that records will be written to. -
setInputStream
Sets the input stream that records will be read from.- Specified by:
setInputStreamin interfaceSortingCollection.Codec<SAMRecord>
-
setInputStream
Sets the input stream that records will be read from. -
encode
Write object to OutputStream. Reference and mate reference indices must be resolvable, which either means that these have been set into the SAMRecord directly, or the SAMRecord must have a header assigned into it so that reference names can be resolved into indices.- Specified by:
encodein interfaceSortingCollection.Codec<SAMRecord>- Parameters:
alignment- Record to be written.
-
makeSentinelCigar
Create a "Sentinel" cigar that will be placed in BAM file when the actual cigar has more than 0xffff operator, which are not supported by the bam format. The actual cigar will be encoded and placed in the CG attribute.- Parameters:
cigar- actual cigar to create sentinel cigar for- Returns:
- sentinel cigar xSyN with readLength (x) and referenceLength (y) matching the input cigar.
-
decode
Read the next record from the input stream and convert into a java object.- Specified by:
decodein interfaceSortingCollection.Codec<SAMRecord>- Returns:
- null if no more records. Should throw exception if EOF is encountered in the middle of a record.
-