METHOD AND SYSTEMS FOR THE EFFICIENT COMPRESSION OF GENOMIC SEQUENCE READS

Method and apparatus for the compression of genome sequence data produced by genome sequencing machines. Sequence reads are coded by aligning them with respect to pre-existing or constructed reference sequences, the coding process is composed of a classification of the reads into data classes followed by the coding of each class in terms of a multiplicity of genomic descriptors. Genomic descriptors of the same type are organized in blocks which are compressed by applying successive transformation stages, binarization and entropy coding. Specific source models and entropy coders are used for each data class and for each associated descriptor.

Skip to: Description  ·  Claims  · Patent History  ·  Patent History
Description
CROSS-REFERENCE TO RELATED APPLICATIONS

This application claims priority to and the benefit of Patent Applications PCT/US2017/041579 filed on Jul. 11, 2017 and PCT/US17/17842 filed on Feb. 14, 2017.

TECHNICAL FIELD

This disclosure provides a novel method of representation of genome sequencing data which reduces the utilized storage space and improves access performance by providing new functionality that are not available with known prior art methods of representation.

BACKGROUND

An appropriate representation of genome sequencing data is fundamental to enable efficient genomic analysis applications such as genome variants calling and all other analysis performed with various purposes by processing the sequencing data and metadata. Human genome sequencing has become affordable by the emergence of high-throughput low cost sequencing technologies. Such opportunity opens new perspectives in several fields ranging from the diagnosis and treatment of cancer to the identification of genetic illnesses, from pathogen surveillance for the identification of antibodies to the creation of new vaccines, drugs and the customization of personalized treatments.

Hospitals, genomic analysis providers, bioinformatics and large biological data storage centers are looking for affordable, fast, reliable and interconnected genomic information processing solutions which could enable scaling genomic medicine to a world-wide scale. Since one of the bottleneck in the sequencing process has become data storage, methods for representing genome sequencing data in a compressed form are increasingly investigated.

The most used genome information representations of sequencing data are based on zipping FASTQ and SAM formats. The objective is to compress the traditionally used file formats (respectively FASTQ and SAM for non-aligned and aligned data). Such files are constituted by plain text characters and are compressed, as mentioned above, by using general purpose approaches such as LZ (from Lempel and Ziv, the authors who published the first versions) schemes (the well-known zip, gzip etc). When general purpose compressors such as gzip are used, the result of compression is usually a single blob of binary data. The information in such monolithic form results quite difficult to archive, transfer and elaborate particularly when like in the case of high throughput sequencing the volume of data are extremely large. The BAM format is characterized by poor compression performance due to the focus on compression of the inefficient and redundant SAM format rather than on extracting the actual genomic information conveyed by SAM files and due to the adoption of general purpose text compression algorithms such as gzip rather than exploiting the specific nature of each data source (the genomic data itself).

A more sophisticated approach to genomic data compression that is less used, but more efficient than BAM is CRAM. CRAM provides more efficient compression for the adoption of differential encoding with respect to a reference (it partially exploits the data source redundancy), but it still lacks features such as incremental updates, support for streaming and selective access to specific classes of compressed data.

These approaches generate poor compression ratios and data structures that are difficult to navigate and manipulate once compressed. Downstream analysis can be very slow due to the necessity of handling large and rigid data structures even to perform simple operation or to access selected regions of the genomic dataset. CRAM relies on the concept of the CRAM record. Each CRAM record represents a single mapped or unmapped reads by coding all the elements necessary to reconstruct it.

CRAM presents the following drawbacks and limitations that are solved and removed by the invention described in this disclosure:

1. CRAM does not support data indexing and random access to data subsets sharing specific features. Data indexing is out of the scope of the specification (see section 12 of CRAM specification v 3.0) and it is implemented as a separate file. Conversely the approach of the invention described in this disclosure employs a data indexing method that is integrated with the encoding process and indexes are embedded in the encoded (i.e. compressed) bit stream.

2. CRAM is built by core data blocks that can contain any type of mapped reads (perfectly matching reads, reads with substitutions only, reads with insertions or deletions (also referred to as “indels”)). There is no notion of data classification and grouping of reads in classes according to the result of mapping with respect to a reference sequence. This means that all data need to be inspected even if only reads with specific features are searched. Such limitation is solved by the invention by classifying and partitioning data in classes before coding.

3. CRAM is based on the concept of encapsulating each read into a “CRAM record”. This implies the need to inspect each complete “record” when reads characterized by specific biological features (e.g. reads with substitutions, but without “indels”, or perfectly mapped reads) are searched.

Conversely, in the present invention there is the notion of data classes coded separately in separated information blocks and there is no notion of record encapsulating each read. This enables more efficient access to set of reads with specific biological characteristics (e.g. reads with substitutions, but without “indels”, or perfectly mapped reads) without the need of decoding each (block of) read(s) to inspect its features.

4. In a CRAM record each record field is associated to a specific flag and each flag must always have the same meaning as there is no notion of context since each CRAM record can contain any different type of data. This coding mechanism introduces redundant information and prevents the usage of efficient context based entropy coding. Instead in the present invention, there is no notion of flag denoting data because this is intrinsically defined by the information “block” the data belongs to. This implies a largely reduced number of symbols to be used and a consequent reduction of the information source entropy which results into a more efficient compression. Such improvement is possible because the use of different “blocks” enables the encoder to reuse the same symbol across each block with different meanings according to the context. In CRAM each flag must always have the same meaning as there is no notion of contexts and each CRAM record can contain any type of data.

5. In CRAM substitutions, insertions and deletions are represented by using different syntax elements, option that increases the size of the information source alphabet and yields a higher source entropy. Conversely, the approach of the disclosed invention uses a single alphabet and encoding for substitutions, insertions and deletions. This makes the encoding and decoding process simpler and produces a lower entropy source model which coding yields bitstreams characterized by high compression performance.

The present invention aims at compressing genomic sequences by classifying and partitioning sequencing data so that the redundant information to be coded is minimized and features such as selective access and support for incremental updates are directly enabled in the compressed domain.

One of the aspects of the presented approach is the definition of classes of data and metadata structured in different blocks and encoded separately. The more relevant improvements of such approach with respect to existing methods consist in:

1. the increase of compression performance due to the reduction of the information source entropy constituted by providing an efficient source model for each class of data or metadata;

2. the possibility of performing selective accesses to portions of the compressed data and metadata for any further processing purpose directly in the compressed domain;

3. the possibility to incrementally (i.e. without the need of decoding and re-encoding) update compressed data and metadata with new sequencing data and/or metadata and/or new analysis results associated to specific sets of sequencing reads.

BRIEF DESCRIPTION OF THE DRAWINGS

FIG. 1 shows the definition of read 1 and read 2 in a read pair and the definition of left-most and right-most nucleotide in a mapped read.

FIG. 2 shows how an Access Unit encapsulates compressed descriptors representing sequence reads mapped in a contiguous interval of the reference sequence. Header information is prepended to the compressed descriptors in order to enable data parsing.

FIG. 3 shows how an Access Unit of type P is composed by a header and the multiplexing of blocks of descriptors representing the reads mapping positions (pos), the reverse complement information (rcomp), the pairing information in case of paired end reads (pair), the reads length in case of variable reads length (rlen) and mapping flags (flags). It is used to encode reads of class P.

FIG. 4 shows the calculation of the pos descriptor for a mapped read pair where read pair n is mapped at position Pn and read pair n+1 is mapped at position Pm.

FIG. 5 shows how to How to calculate the absolute mapping position of one base on a Reference Sequence.

FIG. 6 shows the use of the rcomp descriptor for paired end reads.

FIG. 7 shows an example of how to calculate mismatches positions in a read pair.

FIG. 8 shows how the Genomic Record Length and the Pairing Distance are calculated.

FIG. 9 shows multiple alignments without splicing. The left-most read has N alignments. N is the first value of mmap to be decoded and signals the number of alignments of the first read. The following N values of the mmap descriptor are decoded and are used to calculate P which is the number of alignments of the second read.

FIG. 10 shows how the pos, pair and mmap descriptors are used to encode multiple alignments without splices. The left-most read has N alignments.

FIG. 11 shows multiple alignments with splices.

FIG. 12 shows multiple alignments with splices. Use of the pos, pair, mmap and msar descriptors to represent multiple alignments with splices.

FIG. 13 depicts an encoder apparatus comprising the steps of aligning genomic sequences with respect to a reference genome, generating descriptors representing the genomic sequences with respect to the reference genome, compressing each block of descriptors with a dedicated entropy coder.

FIG. 14 shows the decoding process of a compressed bitstream comprising the steps of demultiplexing the incoming bitstream to extract the entropy coded descriptors, entropy decoding of each type of descriptors, decoding of aligned sequence reads using the reference genome.

FIG. 15 shows how encoders of data of class N, M and I are configured with vectors of thresholds and generate separate subclasses of N, M and I data classes.

FIG. 16 shows how half mapped read pairs (class HM) can be used to fill unknown regions of a reference sequence by assembling longer contigs with unmapped reads.

FIG. 17 shows how reference transformations can be applied to remove mismatches from reads. In some cases reference transformations may generate new mismatches or change the type of mismatches found when referring to the reference before the transformation has been applied.

FIG. 18 shows how reference transformations can change the class reads belong to when all or a subset of mismatches are removed (i.e. the read belonging to class M before transformation is assigned to Class P after the transformation of the reference has been applied).

FIG. 19 shows how all classes of data can use the same transformed reference for re-encoding or a different transformation can be used for each class N, M and I, or any combination thereof.

SUMMARY

The features of the claims below solve the problem of existing prior art solutions by providing a method for encoding genome sequence data, said genome sequence data comprising reads of sequences of nucleotides, said method comprising the steps of:

aligning said reads to one or more reference sequences thereby creating aligned reads,

classifying said aligned reads according to specified matching rules with said one or more reference sequences, thereby creating classes of aligned reads,

encoding said classified aligned reads as a multiplicity of blocks of syntax elements, structuring said blocks of syntax elements with header information thereby creating successive Access Units,

wherein said encoding further comprises binarizing and entropy coding genomic descriptors.

In another aspect of the coding method said binarizing and entropy coding genomic descriptors is such that the binarization and the entropy coding is different for the different descriptors.

In another aspect of the coding method said descriptors comprise:

pos for signaling the mapping position of a read on a reference sequence,

rcomp for signaling the DNA or RNA strand the reads was mapped on mapping flags for enabling the aligner to further specify the result of the mapping process.

In another aspect the coding method further comprises coding the following descriptors:

mmpos for signaling the position of mismatches in aligned reads with respect to reference sequences,

mmtype for signaling the types of mismatches with respect to reference sequences at the associated positions.

In another aspect the coding method further comprises coding the clips descriptor for signaling soft or hard clipped nucleotides.

In another aspect the coding method further comprises coding the rlen descriptor for signaling the length of each encoded sequence read.

In another aspect the coding method further comprises coding the following descriptors:

mmap for signaling the multiple mapping positions that are associated to a single read or read pair by the mapping procedure,

msar for signaling the identification of the existence of spliced reads (i.e. reads that when split in chunks find mapping positions with higher degrees of matching accuracy than when they are mapped as single contiguous read mapped on a single position on a reference sequence).

In another aspect the coding method further comprises coding the mscore descriptor to signal a mapping/alignment score per read as generated by genomic sequence reads aligners.

In another aspect the coding method further comprises coding the pair descriptor to signal, in case of paired end reads, how the reads are paired.

In another aspect the coding method further comprises coding the ureads descriptor to signal reads which could not be aligned at any position of the reference sequence.

In another aspect the coding method further comprises coding the rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy.

In another aspect the coding method further comprises coding the rgroup descriptor to signal to which read group the read belongs to.

In another aspect the coding method further comprises coding the following descriptors:

rftp for signaling the position of mismatches between a contig and a reference sequence. Positions of mismatches are terminated by a special terminator character,

rftt for signaling the type of mismatches between a contig and a reference sequence.

In another aspect of the coding method

said pos descriptor is binarized using a double truncated unary code or a single double truncated unary code,

said rcomp descriptor is binarized using a truncated unary code,

said mapping flags descriptors are binarized using binary coding.

In another aspect of the coding method

said mmpos descriptor for signaling the position of mismatches in aligned reads with respect to reference sequences is binarized using a split unit wise truncated unary code,

said mmtype descriptor for signaling the types of mismatches with respect to reference sequences at the associated positions is binarized using a truncated unary code.

In another aspect of the coding method said clips descriptor for signaling soft or hard clipped nucleotides is binarized using a concatenation of Signed Truncated Exponential Golomb, Truncated Unary, Signed Exponential Golomb and Binary Codes.

In another aspect of the coding method said rlen descriptor signaling the length of each encoded sequence read is binarized using a Split Unit-wise Truncated Unary code.

In another aspect of the coding method:

said mmap descriptor for signaling the multiple mapping positions that are associated to a single read or read pair by the mapping procedure is binarized using a Split Unit-wise Truncated Unary code,

said msar descriptor for signaling the identification of the existence of spliced reads is binarized using a Signed Exponential Golomb code.

In another aspect of the coding method said mscore descriptor to signal a mapping/alignment score per read as generated by genomic sequence reads aligners is binarized using a Truncated Unary code,

In another aspect of the coding method said pair descriptor to signal, in case of paired end reads, how the reads are paired is binarized using a concatenation of Binary Coding and Split Unit-wise Truncated Unary code.

In another aspect of the coding method said ureads descriptor to signal reads which could not be aligned at any position of the reference sequence is binarized using a Truncated Unary code.

In another aspect of the coding method said rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy is binarized using a Truncated Unary code.

In another aspect of the coding method said rgroup descriptor to signal to which read group the read belongs to is binarized using a Truncated Unary code.

In another aspect of the coding method:

said rftp descriptor for signaling the position of mismatches between a contig and a reference sequence is binarized using a concatenation of Binary Coding and Split Unit-wise Truncated Unary code,

said rftt descriptor for signaling the type of mismatches between a contig and a reference sequence is binarized using a concatenation of Binary Coding and Truncated Unary code.

In another aspect of the coding method the configuration parameters for the coding of said descriptors are contained in a syntax header.

In another aspect of the coding method said configuration parameters are updated by creating updated syntax headers to be added to the encoded genomic file.

In another aspect of the coding method said configuration parameters comprise a dataset type for signaling the type of data encoded in Access Units referring to this encoding parameters.

In another aspect of the coding method said configuration parameters further comprise a reads length for signaling the length in nucleotides of sequence reads in case of constant reads length.

In another aspect of the coding method said configuration parameters further comprise a quality values depth parameter for signaling the number of Quality Values associated to each coded nucleotide.

In another aspect of the coding method said configuration parameters further comprise an alignment score depth for signaling the number of alignments scores associated to each coded alignments.

In another aspect of the coding method said configuration parameters further comprise a terminator size for signaling the size in bytes of the terminator symbol used for the mmpos descriptor.

In another aspect of the coding method said configuration parameters further comprise a terminator value for signaling the value of the terminator symbol used for the mmpos descriptor.

In another aspect of the coding method said configuration parameters further comprise the number of classes for signaling the number of data classes encoded in all Access Units referring to said configuration parameters.

In another aspect of the coding method said configuration parameters further comprise class identifiers to signal the identifiers associated to the data class defined in this disclosure (P, N, M, I, HM, U).

In another aspect of the coding method said configuration parameters further comprise the number of descriptors for signaling the total number of descriptors contained in Access Units referring to said configuration parameters.

In another aspect of the coding method said configuration parameters further comprise coding mode identifiers for signaling the coding modes defined in this disclosure.

In another aspect of the coding method said configuration parameters further comprise a number of groups parameter for signaling the number of different values of the rgroup descriptor present in all Access Units referring to the current encoding parameters.

In another aspect of the coding method said configuration parameters further comprise one or more group name parameters for signaling one or more read group identifiers.

In another aspect of the coding method said configuration parameters further comprise a multiple alignments flag for signaling the presence of multiple alignments in the Access Unit.

In another aspect of the coding method said configuration parameters further comprise a spliced reads flag for signaling the presence of spliced reads in the Access Unit. When set to 0 no spliced reads are present.

In another aspect of the coding method said configuration parameters further comprise a multiple signature base flag for signaling the use of multiple signatures in an Access Unit containing unmapped sequence reads (Class U).

In another aspect of the coding method said configuration parameters further comprise a signature size for signaling the size in bits of each integer representing an encoded signature.

In another aspect of the coding method said configuration parameters further comprise a score exponent parameters for signaling the number of bits used to encode the exponent part of the multiple alignments score encoded in the mscore descriptor.

In another aspect of the coding method said configuration parameters further comprise a score fractional parameter for signaling the number of bits used to encode the fractional part of the multiple alignments score encoded in the mscore descriptor.

The present invention further provides a method for decoding encoded genomic data said genome sequence data comprising reads of sequences of nucleotides, said method comprising the steps of:

parsing Access Units containing said encoded genomic data to extract multiple blocks of genomic descriptors by employing header information,

decoding said multiplicity of blocks,

wherein said decoding of multiplicity of blocks comprise decoding and de-binarizing genomic descriptors to extract aligned reads according to specific matching rules defining their classification with respect to one or more reference sequences.

In another aspect of the decoding method said descriptors comprise:

a pos descriptor for signaling the mapping position of a read on a reference sequence,

a rcomp descriptor for signaling the DNA or RNA strand the reads was mapped on mapping flags for enabling the aligner to further specify the result of the mapping process.

In another aspect the decoding method further comprises decoding the following descriptors:

mmpos for signaling the position of mismatches in aligned reads with respect to reference sequences,

mmtype for signaling the types of mismatches with respect to reference sequences at the associated positions.

In another aspect the decoding method further comprises decoding the clips descriptor for signaling soft or hard clipped nucleotides.

In another aspect the decoding method further comprises decoding the rlen descriptor for signaling the length of each encoded sequence read.

In another aspect the decoding method further comprises decoding the following descriptors:

mmap for signaling the multiple mapping positions that are associated to a single read or read pair by the mapping procedure,

msar for signaling the identification of the existence of spliced reads (i.e. reads that when split in chunks find mapping positions with higher degrees of matching accuracy than when they are mapped as single contiguous read mapped on a single position on a reference sequence).

In another aspect the decoding method further comprises decoding the mscore descriptor to signal a mapping/alignment score per read as generated by genomic sequence reads aligners.

In another aspect the decoding method further comprises decoding the pair descriptor to signal, in case of paired end reads, how the reads are paired.

In another aspect the decoding method further comprises decoding the ureads descriptor to signal reads which could not be aligned at any position of the reference sequence.

In another aspect the decoding method further comprises decoding the rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy.

In another aspect the decoding method further comprises decoding the rgroup descriptor to signal to which read group the read belongs to.

In another aspect the decoding method further comprises decoding the following descriptors:

rftp for signaling the position of mismatches between a contig and a reference sequence. Positions of mismatches are terminated by a special terminator character.

rftt for signaling the type of mismatches between a contig and a reference sequence.

In another aspect of the decoding method the configuration parameters for the decoding of said descriptors are extracted from a syntax header.

In another aspect of the decoding method said configuration parameters comprise a dataset type for signaling the type of data encoded in Access Units referring to this encoding parameters.

In another aspect of the decoding method said configuration parameters further comprise a reads length for signaling the length in nucleotides of sequence reads in case of constant reads length.

In another aspect of the decoding method said configuration parameters further comprise a quality values depth parameter for signaling the number of Quality Values associated to each coded nucleotide.

In another aspect of the decoding method said configuration parameters further comprise an alignment score depth for signaling the number of alignments scores associated to each coded alignments.

In another aspect of the decoding method said configuration parameters further comprise a terminator size for signaling the size in bytes of the terminator symbol used for the mmpos descriptor.

In another aspect of the decoding method said configuration parameters further comprise a terminator value for signaling the value of the terminator symbol used for the mmpos descriptor.

In another aspect of the decoding method said configuration parameters further comprise the number of classes for signaling the number of data classes encoded in all Access Units referring to said configuration parameters.

In another aspect of the decoding method said configuration parameters further comprise class identifiers to signal the identifiers associated to the data class defined in this disclosure (P, N, M, I, HM, U).

In another aspect of the decoding method said configuration parameters further comprise the number of descriptors for signaling the total number of descriptors contained in Access Units referring to said configuration parameters.

In another aspect of the decoding method said configuration parameters further comprise coding mode identifiers for signaling the coding modes defined in this disclosure.

In another aspect of the decoding method said configuration parameters further comprise a number of groups parameter for signaling the number of different values of the rgroup descriptor present in all Access Units referring to the current encoding parameters.

In another aspect of the decoding method said configuration parameters further comprise one or more group name parameters for signaling one or more read group identifiers.

In another aspect of the decoding method said configuration parameters further comprise a multiple alignments flag for signaling the presence of multiple alignments in the Access Unit.

In another aspect of the decoding method said configuration parameters further comprise a spliced reads flag for signaling the presence of spliced reads in the Access Unit. When set to 0 no spliced reads are present.

In another aspect of the decoding method said configuration parameters further comprise a multiple signature base flag for signaling the use of multiple signatures in an Access Unit containing unmapped sequence reads (Class U).

In another aspect of the decoding method said configuration parameters further comprise a signature size for signaling the size in bits of each integer representing an encoded signature.

In another aspect of the decoding method said configuration parameters further comprise a score exponent parameters for signaling the number of bits used to encode the exponent part of the multiple alignments score encoded in the mscore descriptor.

In another aspect of the decoding method said configuration parameters further comprise a score fractional parameter for signaling the number of bits used to encode the fractional part of the multiple alignments score encoded in the mscore descriptor.

The present invention further provides an encoding apparatus comprising encoding means for implementing all the aspects of the previously mentioned encoding methods.

The present invention further provides a decoding apparatus for implementing all the aspects of the previously mentioned decoding methods.

The present invention further provides a file format comprising the previously defined genomic descriptors

The present invention further provides a computer-readable medium comprising instructions that when executed cause at least one processor to perform all the aspects of the previously mentioned coding methods.

The present invention further provides a computer-readable medium comprising instructions that when executed cause at least one processor to perform all the aspects of the previously mentioned decoding methods.

The present invention further provides a support data storing genomic encoded according perform all the aspects of the previously mentioned coding methods.

DETAILED DESCRIPTION

The genomic or proteomic sequences referred to in this invention include, for example, and not as a limitation, nucleotide sequences, Deoxyribonucleic acid (DNA) sequences, Ribonucleic acid (RNA), and amino acid sequences. Although the description herein is in considerable detail with respect to genomic information in the form of a nucleotide sequence, it will be understood that the methods and systems for compression can be implemented for other genomic or proteomic sequences as well, albeit with a few variations, as will be understood by a person skilled in the art.

Genome sequencing information is generated by High Throughput Sequencing (HTS) machines in the form of sequences of nucleotides (a. k. a. “bases”) represented by strings of letters from a defined vocabulary. The smallest vocabulary is represented by five symbols: {A, C, G, T, N} representing the 4 types of nucleotides present in DNA namely Adenine, Cytosine, Guanine, and Thymine. In RNA Thymine is replaced by Uracil (U). N indicates that the sequencing machine was not able to call any base and so the real nature of the position is undetermined. In case the IUPAC ambiguity codes are adopted by the sequencing machine, the alphabet used for the symbols is (A, C, G, T, U, W, S, M, K, R, Y, B, D, H, V, N or -).

The nucleotides sequences produced by sequencing machines are called “reads”. Sequence reads can be between a few dozens to several thousand nucleotides long. Some technologies produce sequence reads in “pairs” where one read is from one DNA strand and the second is from the other strand. A read associated to another read in a sequencing process producing pairs is said to be its mate.

The process of arranging sequence reads to identify regions of similarity with segments of a reference genome according to a set of matching rules is called “alignment” or “mapping”.

Throughout this disclosure, a reference sequence is a sequence of nucleotides associated to a mono-dimensional integer coordinate system for which each integer coordinate is associated to a single nucleotide. Coordinate values can only be equal or larger than zero. This coordinate system in the context of this invention is zero-based (i.e. the first nucleotide has coordinate 0 and it is said to be at position 0) and linearly increasing from left to right. A reference sequence is any sequence on which the nucleotides sequences produced by sequencing machines are aligned/mapped. One example of sequence could actually be a “reference genome”, a sequence assembled by scientists as a representative example of a species' set of genes. For example GRCh37, the Genome Reference Consortium human genome (build 37) is derived from thirteen anonymous volunteers from Buffalo, N.Y. However, a reference sequence could also consist of a synthetic sequence conceived and constructed to merely improve the compressibility of the reads in view of their further processing.

A common element of efficient approaches to genomic sequence reads compression is the exploitation of the correlation of sequence data with respect to a reference sequence. Even if the somatic profile of the human population is extremely diversified, the actual portion of the number of nucleotides that differs from person to person is about only 0.1% of the total number of nucleotides composing an entire genome. Therefore, the specific genomic information characterizing each individual is very limited with respect to the entire information carried by an entire genome. When a pre-existing reference genome is available, be it for previous sequencing or as a published “average” consensus reference, the most common way as of today to encode the information is to identify and encode only the differences with respect to the reference genome.

In order to do so with raw sequence reads, generally expressed in the form of FASTQ data files, a preliminary pre-processing step the mapping on a reference genome. In case an appropriate reference genome is not available, or if the bias introduced by the usage of a specific reference is not desirable, the construction of a new reference sequence by means of assembling the sequence reads at hand into longer sequences called contigs, is a possible alternative. When mapping sequence reads on a reference sequence, said reference sequence is used as axis of a mono-dimensional coordinate system in which the left-most position is denoted as position 0. For each sequence read, mapped to a reference sequence, the nucleotide mapped at the reference sequence position identified by the smallest coordinate number is usually referred to as the “left-most” nucleotide, whereas the nucleotide mapped at the reference sequence position identified by the largest coordinate number is referred to as the “right-most” nucleotide. This is illustrated in FIG. 1. Throughout this disclosure, a nucleotide is also referred to as a base.

When a sequence read is mapped to a reference sequence, the coordinate of the left-most mapped base is said to represent the mapping position of the read on the reference sequence.

A base present in the aligned read and not present in the reference sequence (a.k.a. insertion) and bases preserved by the alignment process but not mapped on the reference sequence (a.k.a. soft clips) do not have mapping positions.

When a sequence read cannot be mapped to any mapped position of the used reference sequences according to the specified matching rules, it is said to be unmapped.

The process of building longer genomic sequences by looking for overlapping regions among sequence reads is called assembly.

A longer genomic sequence built assembling shorter reads is called contig (see https://en.wikipedia.org/wiki/Contig).

Sequence reads that fail to build any contig during an assembly process are said to be unaligned.

A reference genome is composed by one or more reference sequences and it is assembled by scientists as a representative example of a species' set of genes. For example GRCh37, the Genome Reference Consortium human genome (build 37) is derived from thirteen anonymous volunteers from Buffalo, N.Y. However, a reference sequence could also consist of a synthetic sequence conceived and merely constructed to improve the compressibility of the reads in view of their further processing.

In this disclosure the read composing a read pair with a base mapping on the smallest coordinate on a reference sequence is referred to as “Read 1” whereas its mate is referred to as “Read 2”.

The distance, expressed as number of nucleotides (or bases), separating two reads generated as a pair, by a sequencing machine using current state of the art sequencing technology, is unknown, and it is determined by mapping both reads composing the pair (i.e. minimizing appropriate matching functions) to a reference sequence.

Throughout this disclosure, a genomic record is a data structure encoding either a single sequence read or a paired sequence read optionally associated with alignment information, read identifier and quality values.

Throughout this disclosure, an Access Unit (AU) is defined as a logical data structure containing a coded representation of genomic information or related metadata to facilitate the bit stream access and manipulation. It is the smallest data organization that can be decoded by a decoding device implementing the invention described in this disclosure.

According to the type of coded information, an AU can be decoded either independently of any other AU or using information contained in other AUs.

AUs can be classified into a multiplicity of types according to the nature of the coded sequence data. An Access Unit contains either a reference sequence, or a portion thereof, or encoded reads or read pairs belonging to a single class of data. Any single AU cannot contain two or more types of sequence data. For example an Access Unit may contain the entire chromosome 1 of GRCh37, the Genome Reference Consortium human genome (build 37). Another Access Unit may contain the coded representation of nucleotides of chromosome 1 of GRCh37 that are located between coordinates 50′000 and 150′000. Another Access Unit may contain only reads or read pairs that perfectly map on the reference sequence without any mismatch. Another Access Unit may contain reads or read pairs that only contain “N” symbols as mismatches with respect to the reference sequence. Another Access Unit may contain reads or read pairs that contain any type of substitutions (e.g. one base present in the read or read pair is different from the base at the corresponding mapping position in the reference sequence). Another Access Unit may contain reads or read pairs that contain mismatches, insertions, deletions and soft clipped bases. Another Access Unit may contain only read or read pairs that do not map on the reference sequence. Another Access Unit may contain only read pairs in which one read is mapped and the other is not mapped on the reference sequence. Another type of Access Unit may contain only encoded segments of a reference genome composed by one or more reference sequences (for example chromosomes).

The essential characteristic of an Access Unit is that it contains in compressed form all elements needed to reconstruct the genomic information (sequence reads or read pairs, reference sequences), associated alignment information and metadata of reads or read pairs it represents. In other words, to fully reconstruct the reads, read pairs or reference sequence and associated information carried by an Access Unit it is only necessary to retrieve the Access Unit itself and, when applicable, the Access Units containing the reference sequence it refers to.

In each Access Unit the descriptors listed in the next section representing the encoded read or read pairs are aggregated in separate data blocks—one per type—in order to exploit their homogeneous statistical properties for achieving high performance entropy coding.

Each Access Unit contains the compressed sub-set of descriptors representing sequence reads or read pairs belonging to the same class mapped to a genomic region on a reference sequence. Such genomic region on the reference sequence is defined by a start coordinate (or start position) and an end coordinate (or end position).

An example of Access Unit is illustrated in FIG. 2 and FIG. 3. Access Units are composed by blocks of encoded genomic descriptors (described in the next section). To enable transport over a network, blocks are further decomposed into packets. When compressing genomic sequence reads, each Access Units contains compressed descriptor representing either sequence reads mapped to a genomic interval on the reference sequence or unmapped sequence reads. Access Units can be used to carry reference genomes or parts thereof. A reference sequence can be either encoded as a single long sequence of nucleotides or split into shorter sequences encoded as unmapped genomic sequence reads.

In the context of this disclosure the following definitions apply:

access unit start position: left-most genomic record position among all genomic records contained in the access unit.

access unit end position: right-most base position among all mapped bases of all genomic records contained in the access unit.

access unit range: the genomic range comprised between the access unit start position and the right-most genomic record position among all genomic records contained in the access unit.

access unit size: number of genomic records contained in an access unit.

access unit covered region: genomic range comprised between the Access Unit start position and the Access Unit end position.

In the context of this disclosure, one or more access unit are organized in a structure called genomic dataset. A genomic dataset is a compression unit containing headers and access units. The set of access units composing the genomic dataset constitutes the genomic dataset payload.

A collection of one or more genomic datasets is called dataset group.

In the context of this disclosure, genomic descriptors are syntax elements representing part of the information (and also elements of a syntax structure of a file format and/or a bitstream) necessary to reconstruct (i.e. decode) coded reference sequences, sequence reads and the associated mapping information. The genomic descriptors disclosed in this invention are listed in Table 3.

According to the method disclosed in this invention, reference sequences or portion thereof, sequence reads and the associated alignment information are coded using a sub-set of the descriptors listed above which are then entropy coded using a multiplicity of entropy coders according to each descriptor specific statistical properties. Blocks of compressed descriptors with homogeneous statistical properties are structured in Access Units which represent the smallest coded representation of one or more genomic sequence that can be manipulated by a device implementing the invention described in this disclosure.

Genomic descriptors are organized in blocks and streams as defined below.

A block is defined as a data unit composed by a header and a payload, which is composed by portions of compressed descriptors of the same type.

A descriptor stream is defined as a sequence of encoded descriptor blocks used to decode a descriptor of a specific Data Class.

Sequencing devices can introduce errors in the sequence reads such as:

    • 1. the decision of skipping a base call due to the lack of confidence in calling any specific base. This is called an unknown base and labeled as “N” (denoted as mismatch of “n type”);
    • 2. the use of a wrong symbol (i.e. representing a different nucleic acid) to represent the nucleic acid actually present in the sequenced sample; this is usually called “substitution error” (denoted as mismatch of “s type”);
    • 3. the insertion in one sequence read of additional symbols that do not refer to any actually present nucleic acid; this is usually called “insertion error” (denoted as mismatch of “i type”);
    • 4. the deletion from one sequence read of symbols that represent nucleic acids that are actually present in the sequenced sample; this is usually called “deletion error” (denoted as mismatch of “d type”);
    • 5. the recombination of one or more fragments into a single fragment which does not reflect the reality of the originating sequence; this usually results in aligners decision to clip bases (denoted as mismatch of “c type”).

In genome sequencing the term “coverage” is used to express the level of redundancy of the sequence data with respect to a “reference sequence”. The average coverage of aligned genome sequencing data is the average number of time each base at each position of the reference genome is present in the aligned data. For example, to reach a coverage of 30× on a human genome (3.2 billion bases long) a sequencing machine shall produce a total of 30×3.2 billion bases so that in average each position in the reference is “covered” 30 times.

The coverage is said to be:

    • partial (less than 1×) when some parts of the reference genome are not mapped by any available sequence read;
    • single (1×) when all nucleotides of the reference genome are mapped by one and only one symbol present in the sequence reads;
    • multiple (2×, 3×, N×) when each nucleotide of the reference genome is mapped multiple times.

This invention aims at defining a genomic information representation format in which the relevant information is efficiently accessible and transportable and the weight of the redundant information is reduced.

The main innovative aspects of the disclosed invention are the following.

1 Sequence reads are classified and partitioned into data classes according to the results of the alignment with respect to reference sequences. Such classification and partitioning enables the selective access to encoded data according to criteria related to the alignment results and to the matching accuracy.

2 The classified sequence reads and the associated metadata are represented by genomic descriptors organized in blocks with homogeneous statistical properties enabling the definition of distinct information sources characterized by a low information entropy.

3 The possibility of modeling each separated information source with distinct source model adapted to the statistical characteristics of each class and the possibility of changing the source model within each class of reads and within each descriptor block for each separately accessible data units (Access Units). The adoption of the appropriate transformation, binarization and context adaptive probability models and associated entropy coders according to the statistical properties of each source model.

4 The definition of correspondences and dependencies among the descriptors blocks to enable the selective access to the sequencing data and associated metadata without the need to decode all the descriptors blocks if not all information is required.

5 The coding of each sequence data class and associated metadata blocks with respect to “pre-existing” (also denoted as “external”) reference sequences or with respect to “transformed” reference sequences obtained by applying appropriate transformations to “pre-existing” reference sequences so as to reduce the entropy of the descriptors blocks information sources. Said descriptors represent the reads partitioned into the different data classes. Following any encoding of reads using the corresponding descriptors with reference to a “pre-existing” reference or “transformed” “pre-existing” reference sequence, the occurrence of the various mismatches can be used to define the appropriate transformations to the reference sequences in order to find a final coded representation with low entropy and achieve higher compression efficiency.

6 The construction of one or more reference sequences (also referred to as “internal” references to distinguish from the “pre-existing” also referred here as “external” reference sequences) used to encode the class of reads that present a degree of matching accuracy with respect to the pre-existing reference sequences not satisfying a set of constraints. Such constraints are set with the objective that the coding costs of representing in compressed form the class of reads aligned with respect to the “internal” reference sequences and the cost of representing the “internal” reference sequences themselves, is lower than encoding the unaligned class of reads verbatim, or using the “external” reference sequences without or with transformations.

7 The transmission of the configuration parameters governing the process of both encoding and decoding by means of data structures embedded in the compressed genomic data in the form of header information. Such configuration parameters can be updated during the encoding process in order to improve the compression performance. Such updates are conveyed in the compressed content in the form of updated configuration data structures. In the following, each of the above aspects will be further described in details.

Classification of the Sequence Reads According to Matching Rules

The sequence reads generated by sequencing machines are classified by the disclosed invention into six different “classes” according to the matching results of the alignment with respect to one or more “pre-existing” reference sequences.

When aligning a DNA sequence of nucleotides with respect to a reference sequence the following cases can be identified:

    • 1. A region in the reference sequence is found to match the sequence read without any error (i.e. perfect mapping). Such sequence of nucleotides is referenced to as “perfectly matching read” or denoted as “Class P”.
    • 2. A region in the reference sequence is found to match the sequence read with a type and a number of mismatches determined only by the number of positions in which the sequencing machine generating the read was not able to call any base (or nucleotide). Such type of mismatches are denoted by an “N”, the letter used to indicate an undefined nucleotide base.

In this disclosure this type of mismatch are referred to as “n type” mismatch. Such sequences belong to “Class N” reads. Once the read is classified to belong to “Class N” it is useful to limit the degree of matching inaccuracy to a given upper bound and set a boundary between what is considered a valid matching and what it is not. Therefore, the reads assigned to Class N are also constrained by setting a threshold (MAXN) that defines the maximum number of undefined bases (i.e. bases called as “N”) that a read can contain. Such classification implicitly defines the required minimum matching accuracy (or maximum degree of mismatch) that all reads belonging to Class N share when referred to the corresponding reference sequence, which constitutes an useful criterion for applying selective data searches to the compressed data.

    • 3. A region in the reference sequence is found to match the sequence read with types and number of mismatches determined by the number of positions in which the sequencing machine generating the read was not able to call any nucleotide base, if present (i.e. “n type” mismatches), plus the number of mismatches in which a different base, than the one present in the reference, has been called. Such type of mismatch denoted as “substitution” is also called Single Nucleotide Variation (SNV) or Single Nucleotide Polymorphism (SNP). In this disclosure this type of mismatch is also referred to as “s type” mismatch. The sequence read is then referenced to as “M mismatching reads” and assigned to “Class M”. Like in the case of “Class N”, also for all reads belonging to “Class M” it is useful to limit the degree of matching inaccuracy to a given upper bound, and set a boundary between what is considered a valid matching and what it is not. Therefore, the reads assigned to Class M are also constrained by defining a set of thresholds, one for the number “n” of mismatches of “n type” (MAXN) if present, and another for the number of substitutions “s” (MAXS). A third constraint is a threshold defined by any function of both numbers “n” and “s”, f(n,s). Such third constraint enables to generate classes with an upper bound of matching inaccuracy according to any meaningful selective access criterion. For instance, and not as a limitation, f(n,s) can be (n+s)½ or (n+s) or any linear or non-linear expression that sets a boundary to the maximum matching inaccuracy level that is admitted for a read belonging to “Class M”. Such boundary constitutes a very useful criterion for applying the desired selective data searches to the compressed data when analyzing sequence reads for various purposes because it makes possible to set a further boundary to any possible combination of the number of “n type” mismatches and “s type” mismatches (substitutions) beyond the simple threshold applied to the one type or to the other.
    • 4. A fourth class is constituted by sequencing reads presenting at least one mismatch of any type among “insertion”, “deletion” (a.k.a. indels) and “clipped”, plus, if present, any mismatches type belonging to class N or M. Such sequences are referred to as “I mismatching reads” and assigned to “Class I”. Insertions are constituted by an additional sequence of one or more nucleotides not present in the reference, but present in the read sequence. In this disclosure this type of mismatch is referred to as “i type” mismatch. In literature when the inserted sequence is at the edges of the sequence it is also referred to as “soft clipped” (i.e. the nucleotides are not matching the reference but are kept in the aligned reads contrarily to “hard clipped” nucleotides which are discarded). In this disclosure this type of mismatch is referred to as “c type” mismatch. Keeping or discarding nucleotides is a decisions taken by the aligner stage and not by the classifier of reads disclosed in this invention which receives and processes the reads as they are determined by the sequencing machine or by the following alignment stage. Deletion are “holes” (missing nucleotides) in the read with respect to the reference. In this disclosure this type of mismatch is referred to as “d type” mismatch. Like in the case of classes “N” and “M” it is possible and appropriate to define a limit to the matching inaccuracy. The definition of the set of constraints for “Class I” is based on the same principles used for “Class M” and is reported in Table 1 in the last table lines. Beside a threshold for each type of mismatch admissible for Class I data, a further constraint is defined by a threshold determined by any function of the number of the mismatches “n”, “s”, “d”, “i” and “c”, w(n,s,d,i,c). Such additional constraint make possible to generate classes with an upper bound of matching inaccuracy according to any meaningful user defined selective access criterion. For instance, and not as a limitation, w(n,s,d,i,c) can be (n+s+d+i+c)⅕ or (n+s+d+i+c) or any linear or non-linear expression that sets a boundary to the maximum matching inaccuracy level that is admitted for a read belonging to “Class I”. Such boundary constitutes a very useful criterion for applying the desired selective data searches to the compressed data when analyzing sequence reads for various purposes because it enables to set a further boundary to any possible combination of the number of mismatches admissible in “Class I” reads beyond the simple threshold applied to each type of admissible mismatch.
    • 5. A fifth class includes all reads that do not find any mapping considered valid (i.e not satisfying the set of matching rules defining an upper bound to the maximum matching inaccuracy as specified in Table 1) for each data class when referring to the reference sequence. Such sequences are said to be “Unmapped” when referring to the reference sequences and are classified as belonging to the “Class U”.
    • 6. In case of paired-end reads, a sixth class is defined in which one read of the pair cannot map at any position of the reference genome (i.e. belongs to Class U) and the other read belongs to one of the P, N, M, I classes. Such class is named “Class HM” from Half-Mapped.

Classification of Read Pairs According to Matching Rules

The classification specified in the previous section concerns single sequence reads. In the case of sequencing technologies that generates read in pairs (i.e. Illumina Inc.) in which two reads are known to be separated by an unknown sequence of variable length, it is appropriate to consider the classification of the entire pair to a single data class. A read that is coupled with another is said to be its “mate”.

If both paired reads belong to the same class the assignment to a class of the entire pair is the following: the entire pair is assigned to the same class for any class (i.e. P, N, M, I, U). In the case the two reads belong to a different class, but none of them belongs to the “Class U”, then the entire pair is assigned to the class with the highest priority defined according to the following expression:


P<N<M<I

in which “Class P” has the lowest priority and “Class I” has the highest priority.

In case only one of the reads belongs to “Class U” and its mate to any of the Classes P, N, M, I a sixth class is defined as “Class HM” which stands for “Half Mapped”.

The definition of such specific class of reads and the associated assignment rules are motivated by the fact that such data is used for attempting to determine gaps or unknown regions of reference genomes (a.k.a. little known or unknown regions). Such regions are reconstructed by mapping pairs at the edges using the pair read that can be mapped on the known regions. The unmapped mate is then used to build the so called “contigs” of the unknown region as it is shown in FIG. 16. Therefore providing a selective access to only such type of read pairs greatly reduces the associated computation burden enabling much efficient processing of such data originated by large amounts of data sets that using the state of the art solutions would require to be entirely inspected.

The table below summarizes the matching rules applied to reads in order to define the class of data each read belongs to. The rules are defined in the first five columns of the table in terms of presence or absence of type of mismatches (n, s, d, i and c type mismatches). The sixth column provide rules in terms of maximum threshold for each mismatch type and any function f(n,s) and w(n,s,d,i,c) of the possible mismatch types.

TABLE 1 Type of mismatches and set of constrains that each sequence reads must satisfy to be classified in the data classes defined in this invention disclosure. Number and types of mismatches found when matching a read with a reference sequence Number of Set of unknown Number matching bases Number of Number of Number of of clipped accuracy (“N”) substitutions deletions Insertions bases constraints Class 0 0 0 0 0 0 P n > 0 0 0 0 0 n ≤ MAXN N n > MAXN U n ≥ 0 s > 0 0 0 0 n ≤ MAXN and M s ≤ MAXS and f(n,s) ≤ MAXM n > MAXN or U s > MAXS or f(n,s) > MAXM n ≥ 0 s ≥ 0 d ≥ 0 * i ≥ 0 * c ≥ 0 * n ≤ MAXN and I s ≤ MAXS and d ≤ MAXD and i ≤ MAXI and *At least one mismatch of type d, c ≤ MAXC i, c must be present (i.e. d > 0 or w(n,s,d,i,c) ≤ i > 0 or c > 0) MAXTOT d ≥ 0 i ≥ 0 c ≥ 0 n > MAXN or U s > MAXS or d > MAXD or i > MAXI or c > MAXC w(n,s,d,i,c) > MAXTOT

Matching Rules Partition of Sequence Read Data Classes N, M and I into Subclasses with Different Degrees of Matching Accuracy

The data classes of type N, M and I as defined in the previous sections can be further decomposed into an arbitrary number of distinct sub-classes with different degrees of matching accuracy. Such option is an important technical advantage in providing a finer granularity and as consequence a much more efficient selective access to each data class. As an example and not as a limitation, to partition the Class N into a number k of subclasses (Sub-Class N1, . . . , Sub-Class Nk) it is necessary to define a vector with the corresponding components MAXN1, MAXN2, . . . , MAXN(k-1), MAXN(k), with the condition that MAXN1<MAXN2< . . . <MAXN(k-1_<MAXN and assign each read to the lowest ranked sub-class that satisfy the constrains specified in Table 1 when evaluated for each element of the vector. This is shown in FIG. 15 where a data classification unit 1501 contains Class P, N, M, I, U, HM encoder and encoders for annotations and metadata. Class N encoder is configured with a vector of thresholds, MAXN, to MAXNk 1502 which generates k subclasses of N data (1506).

In the case of the classes of type M and I the same principle is applied by defining a vector with the same properties for MAXM and MAXTOT respectively and use each vector components as threshold for checking if the functions f(n,s) and w(n,s,d,l,c) satisfy the constraint. Like in the case of sub-classes of type N, the assignment is given to the lowest sub-class for which the constraint is satisfied. The number of sub-classes for each class type is independent and any combination of subdivisions is admissible. This is shown in FIG. 15 where a Class M encoder 1503 and a Class I encoder 1504 are configured respectively with a vector of thresholds MAXIM, to MAXIM, and MAXTOT1 to MAXTOTh . The two encoders generate respectively j subclasses of M data (1507) and h subclasses of I data (1508).

When two reads in a pair are classified in the same sub-class, then the pair belongs to the same sub-class.

When two reads in a pair are classified into sub-classes of different classes, then the pair belongs to the sub-class of the class of higher priority according to the following expression:


N<M<I

where N has the lowest priority and I has the highest priority.

When two reads belong to different sub-classes of one of classes N or M or I, then the pair belongs to the sub-class with the highest priority according to the following expressions:


N1<N2< . . . <Nk


M1<M2< . . . <Mj


I1<I2< . . . <Ih

where the highest index has the highest priority.

Transformations of the “External” Reference Sequences

The mismatches found for the reads classified in the classes N, M and I can be used to create “transformed” references to be used to compress more efficiently the read representation. Reads classified as belonging to the Classes N, M or I (with respect to the “pre-existing” (i.e. “external”) reference sequence denoted as RS0) can be coded with respect to the “transformed” reference sequence RS, according to the occurrence of the actual mismatches with the “transformed” reference. For example if readMin belonging to Class M (denoted as the ith read of class M) containing mismatches with respect to the reference sequence RSn, then after “transformation” readMin=readPi(n+1) can be obtained with A(Refn)=Refn+1 where A is the transformation from reference sequence RSn to reference sequence RSn+1.

FIG. 19 shows an example on how reads containing mismatches (belonging to Class M) with respect to reference sequence 1 (RS1) can be transformed into perfectly matching reads with respect to the reference sequence 2 (RS2) obtained from RS, by modifying the bases corresponding to the mismatch positions. They remain classified and they are coded together the other reads in the same data class access unit, but the coding is done using only the descriptors and descriptor values needed for a Class P read. This transformation can be denoted as:


RS2=A(RS1)

When the representation of the transformation A which generates RS2when applied to RS1 plus the representation of the reads versus RS2 corresponds to a lower entropy than the representation of the reads of class M versus RS1, it is advantageous to transmit the representation of the transformation A and the corresponding representation of the read versus RS2 because an higher compression of the data representation is achieved.

The coding of the transformation A for transmission in the compressed bitstream requires the definition of two additional syntax elements as defined in the table below.

Syntax elements Semantic Comments rftp Reference transformation position of difference between position reference and contig used for prediction rftt Reference transformation type of difference between type reference and contig used for prediction. Same syntax described for the mmtype descriptor defined below in this disclosure.

FIG. 18 shows an example on how a reference transformation is applied to reduce the number of mismatches to be coded on the mapped reads.

It has to be observed that, in some cases the transformation applied to the reference:

    • May introduce mismatches in the representations of the reads that were not present when referring to the reference before applying the transformation.
    • May modify the types of mismatches, a read may contain A instead of G while all other reads contain C instead of G), but mismatches remain in the same position.
    • Different data classes and subsets of data of each data class may refer to the same “transformed” reference sequences or to reference sequences obtained by applying different transformations to the same pre-existing reference sequence.

FIG. 19 further shows an example of how reads can change the type of coding from a data class to another by means of the appropriate set of descriptors (e.g. using the descriptors of a Class P to code a read from Class M) after a reference transformation is applied and the read is represented using the “transformed” reference. This occurs for example when the transformation changes all bases corresponding to the mismatches of a read in the bases actually present in the read, thus virtually transforming a read belonging to Class M (when referring to the original non “transformed” reference sequence) into a virtual read of Class P (when referring to the “transformed” reference). The definition of the set of descriptors used for each class of data is provided in the following sections.

FIG. 19 shows how the different classes of data can use the same “transformed” reference R1=A0(R0) (1900) to re-encode the reads, or different transformations AN (1901), AM (1902), AI(1903) can be separately applied to each class of data to produce different reference genomes RN, RM, RI

Genomic Dataset Header

Once the classification of reads is completed with the definition of the Classes, further processing consists in defining a set of distinct syntax elements which represent the remaining information enabling the reconstruction of the read sequence when represented as being mapped on a given reference sequence. The data structure of these syntax elements requires the storage of global parameters and metadata to be used by the decoding engine. These data are structured in a Genomic Dataset Header described in the table below. A dataset is defined as the ensemble of coding elements needed to reconstruct the genomic information related to a single genomic sequencing run and all the following analysis. If the same genomic sample is sequenced twice in two distinct runs, the obtained data will be encoded in two distinct datasets.

TABLE 2 Genomic Dataset Header. Element Description dataset_header {  dataset_group_ID identifier of Dataset Group containing the Dataset including this dataset_header.  dataset_ID identifier of the Dataset.  major_brand the brand identifier, identifying the data (compression) format specification the Dataset complies with  minor_version minor version number of the data (compression) format specification the Dataset complies with  unmapped_indexing_flag flag indicating the presence of indexed Access Units of Class U  byte_offset_size_flag unmber of bits used to index the Access Units  non_overlapping_AU_range if set, all Access Units in the Dataset have non- overlapping ranges.  block_header_flag if set, all Blocks composing the Dataset are preceded by a Block Header  if (block_header_flag) {   mit_flag if set, the indexing tool called Master Index Table is present   cc_ mode_flag if set, two Access Units of a class cannot be separated by Access Units of a different class in the storage device.   block_start_code_prefix_flag if set, all Access Unit Headers start by the three bytes 0x000001  }  else {   ordered_blocks_flag if set, Access Unit are ordered by increasing value of the mapping position of the first read encoded in each Access Unit  }  seq_count number of reference sequences used in this Dataset  reference_ID unique identification number of the reference genome used in the Dataset  for (seq=0;seq<seq_count;seq++) {   seq_ID[seq] reference sequence identifier  }  for (seq=0;seq<seq_count;seq++) {   seq_blocks[seq] number of Access Units per reference sequence  }  dataset_type 0 = non-aligned content; 1 = aligned content; 2 = reference  num_classes number of data classes encoded in the Dataset  for (ci=0;ci<num_classes;ci++) {   clid[ci] identifies the class of data carried by the Access Unit   num_descriptors[ci] maximum number of Descriptors per Class encoded in the Dataset   for (desc_ID=0;desc_ID<num_descriptors[ci];desc_ID++) { descriptor_ID[ci][desc_ID] unambiguous genomic descriptor identifier as defined in Table 1  }  alphabet_ID identifier of the alphabet used to encode the Class U data signatures  num_U_clusters number of clusters of class U reads  U_signature_constant_length 1 = constant length; 0 = variable length  U_signature_size size in bits of each integer representing an encoded signature  if (U_signature_constant_length){   U_signature_length length of class U clusters signatures as number of nucleotides  }  num_U_access_units total number of Access Units in the Dataset containing encoded data of class U  multiple_alignment_flag if set it indicates the presence of multiple alignments in the Dataset  multiple_signature_base default number of signatures for reads of class U  tflag[0] flag indicating the presence of a threshold thres for the corresponding reference sequence  thres[0]  for (i=1;i<seq_count;i++) {   tflag[i] flag indicating the presence of a threshold thres for the corresponding reference sequence   if(tflag[i] == 1)    thres[i] threshold indicating the maximum difference between the access unit covered region and the access unit range   else /* tflag[i] == 0 */    thres[i] = thres[i−1] if tflag is not set for a reference sequence, the previous value apply  } }

Genomic Descriptors

A sequence read (i.e. a DNA segment) referred to a given reference sequence can be fully expressed optionally using a subset formed of various combinations of the following descriptors:

TABLE 3 Genomic descriptors and their meaning descriptor_id short name description 1 pos the mapping position of a read on a reference sequence 2 pair in case of paired end reads, it represents how the reads are paired 3 rlen the length of a sequence read 4 rcomp the DNA or RNA strand the reads was mapped on 5 mmpos the position of mismatches (i.e. substitutions, deletion and insertions) in aligned reads with respect to reference sequences 6 mmtype the types of mismatches with respect to reference sequences at the associated positions 7 clips the bases that could not be mapped on the reference sequence by the mapping procedure and either kept (“soft clipped” bases) or discarded (“hard clipped” bases) 8 flags mapping flags to enable the aligner to further specify the result of the mapping process such as if the sequence read is a PCR or optical duplicate 9 mmap the multiple mapping positions that are associated to a single read or read pair by the mapping procedure 10 msar the identification of the existence of spliced reads (i.e. reads that when split in chunks find mapping positions with higher degrees of matching accuracy than when they are mapped as single contiguous read mapped on a single position on a reference sequence) 11 ureads the representation of sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy, 12 rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy 13 rftp the position of mismatches between a contig and a reference sequence. Positions of mismatches are terminated by a special terminator character. 14 rftt the type of mismatches between a contig and a reference sequence. 15 rgroup label associated to each compressed sequence read used to create group of reads sharing the same label 16 mscore score per alignment. It is used to represent mapping/alignment score per read generated by genomic sequence reads aligners.

For class U, the descriptor clips identifies those parts of the reads (typically the edges) that do not match, with a specified set of matching accuracy constraints, with the “internal” references.

Descriptor ureads is used to encode verbatim the reads that cannot be mapped on any available reference being it a pre-existing (i.e. “external” like an actual reference genome) or an “internal” reference sequence.

This classification creates groups of descriptors (syntax elements) that can be used to univocally represent genome sequence reads. The table below summarizes the syntax elements needed for each class of reads aligned with “external” (i.e. “pre-existing”) or “internal” (i.e. “constructed”) references. The asterisk “*” indicates mandatory descriptors always present in all encoded read for each class.

TABLE 4 Genomic descriptors necessary to represent each class of data. descriptors short data classes descriptor_id name P N M I U HM 1 pos X* X* X* X* X* X* 2 pair X X X X 3 rlen X X X X X X 4 rcomp X* X* X* X* X* X* 5 mmpos X* X* X* X* X 6 mmtype X* X* X 7 clips X* X* X 8 flags X* X* X* X* X* X* 9 mmap X X 10 msar X X 11 ureads X X X* 12 rtype X 13 rftp X X X X X X 14 rftt X X X X X X 15 rgroup X X X X X X 16 mscore X X X X X

Reads belonging to class P are characterized and can be perfectly reconstructed by only a position, a reverse complement information and an offset between mates in case they have been obtained by a sequencing technology yielding mated pairs, some flags and a read length.

The next section further details how these descriptors are defined for classes P, N, M and I while for class U they are described in a following section Class HM is applied to read pairs only and it is a special case for which one read belongs to class P, N, M or I and the other to class U.

pos Descriptor

The pos descriptor is used to calculate the absolute mapping position on a Reference Sequence of the left-most mapped base of a Genomic Record. The value of each pos descriptor represents the difference between the coordinates, on the Reference Sequence, of the left-most mapping base of a Genomic Record and the previous one. FIG. 4 shows an example of calculation of the pos descriptor for a mapped read pair.

The first value of the pos descriptor in each coded Block is always 0 since no differential coding is possible for the first mapped read or read pair coded in an Access Unit. The absolute position of the first mapped read or read pair coded in an Access Unit is contained in the Access Unit Header.

The absolute position on the Reference Sequence of the left-most mapped base of the nth Genomic Record is therefore calculated as:

p n = p 0 + i = 1 n pos i

where p0 is the mapping value retrieved from the Access Unit Header for the first Genomic Record in the Access Unit.

In order to calculate the absolute position on a Reference Sequence of a base the following formula applies:


p=pstart+ndel−nins+dstart+delta

where

    • p is the absolute position on the Reference Sequence of the base
    • pstart is the mapping position of the Genomic Record covering the base
    • nins is the number of inserted bases preceding the base in the same Genomic Record
    • ndel is the number of deleted bases preceding the base in the same Genomic Record
    • dstart is the offset of the base in the Genomic Record from the Genomic Record

Position

    • delta is the (signed) pairing distance between two reads in a read pair. This has to be used only for positions in the second read of the Genomic Record.

NOTE In case of paired end reads, when calculating the offset dstart from the Genomic Record Position, the two reads are considered contiguous. The relative reads position is taken into account when adding delta.

An example of calculation of the mapping position p for one base on a Reference Sequence is shown in FIG. 5.

rcomp Descriptor

The rcomp descriptor conveys information about the strandedness of reads. Each bit of a decoded rcomp descriptor is a flag indicating if the read is on the forward (bit set to 0) or reverse (bit set to 1) strand. FIG. 6 shows values and semantics of the rcomp descriptor for paired end reads. In the figure r1 is read 1 and r2 is read 2. According to the mapping position of each read, the rcomp descriptor can have four different values.

TABLE 5 Values and meaning of the rcomp descriptor. Semantics Value Single read Paired reads rc1 0x00 read on both reads on forward forward strand (strand 1) strand rc2 0x01 read on first read on forward reverse strand, second on strand reverse strand rc3 0x02 reserved first read on reverse strand, second on forward strand rc4 0x03 reserved both reads on reverse strand (strand 2) 0x04 . . . reserved reserved 0xff

Flags Descriptor

The flag descriptor is a set of flaas as described in Table 6.

TABLE 6 Semantics for each bit of the flag descriptor. bit position from LSB Semantics 0 read is PCR or optical duplicate 1 read fails platform/vendor quality checks 2 read mapped in proper pair 3 reserved 4 reserved 5 reserved 6 reserved 7 reserved

mmpos

The mmpos descriptor represents the position, within a read or read pairs, of a mismatch with respect to the reference sequence. The position is represented as a distance from the position of the previous mismatch in the Genomic Record. The position of the first mismatch is represented as the distance from the left-most mapped base in the Genomic Record.

In case of paired reads, or in general records containing more than one genomic segment, the gaps between consecutive segments are not considered in the calculation of distances between consecutive mismatches.

If the encoded pair contains both read 1 and read 2, the positions of mismatches in read 2 are offset by the length of read 1. For example in case of reads with constant length equal to 100, if the first mismatches in the pair is in read 2 at position 44, the first mmpos descriptor decoded for this Genomic Record assumes the value 144.

If the described pair is missing read 1 (either because it is encoded in another block, or because read 2 is unpaired), the mismatch positions are not offset by the length of read 1. For example in case of fixed read length 100, if the first mutation in read 2 is at position 44, but read 2 is unpaired, the first mmpos descriptor decoded for this Genomic Record assumes the value 44.

Each mmpos descriptor is associated to an mmtype descriptor representing the type of mismatch occurring in the decoded read or read pair at the position calculated using mmpos.

An example of how to calculate mismatches positions in a read pair is provided in FIG. 7 where len1 is the length of read1.

The absolute position on a Reference Sequence of the ith mismatch in a Genomic Record shall be calculated as shown in Table 7.

TABLE 7 How to calculate the absolute position of mismatches in a Genomic Record. First mismatch ith mismatch (i > 0) Single read mmabs0 = p0 + mmabsi = mmabsi−1 + mmpos0 mmposi Read pair first mismatch in mmabs0 = p0 + if(( Σmmposi < len1 || read 1 mmpos0  (Σmmposi ≥ len1 && first mismatch in mmabso0 = p0 + Σmmposi−1 < len1)) read 2 mmpos0 + delta  mmabsi = mmabsi−1 +  mmposi else  mmabsi = mmabsi−1 +  mmposi + delta

In Table 7 the following variables are defined:

    • mmabsi is the absolute position in the Reference Sequence of the ith mismatch in the read or read pair
    • mmposi is the ith value of the mmpos descriptor in the Genomic Record
    • len, is the length of read 1 in a read pair
    • delta is the pairing distance between read 1 and read 2 calculated as defined for the pair descriptor and shown in FIG. 5

Sequences of mmpos descriptors referring to a Genomic Record are terminated with a reserved terminator value which cannot be interpreted as mismatch position.

mmtype

The mmtype descriptor specifies the type of mismatch occurring in the decoded read at the position calculated using the associated mmpos descriptor.

The mmtype descriptor does not have a reserved value for the terminator since each Genomic Record shall contain the same number of mmtype and mmpos descriptors.

Table 8 lists the values and corresponding semantics of the mmtype descriptor according to the used alphabet.

TABLE 8 mmtype descriptor values and semantics according to the used alphabet clips Value Semantics alphabet_id = 0 alphabet_id = 1 alphabet_id = 2 alphabet_id = 3 0x00 Substitute with ‘A’ Substitute with Substitute with ‘A’ Substitute with ‘A’ ‘A’ 0x01 Substitute with ‘C’ Substitute with Substitute with ‘C’ Substitute with ‘C’ ‘C’ 0x02 Substitute with ‘G’ Substitute with Substitute with ‘G’ Substitute with ‘G’ ‘G’ 0x03 Substitute with ‘T’ Substitute with Substitute with ‘U’ Substitute with ‘T’ ‘U’ 0x04 Substitute with ‘N’ Substitute with Substitute with ‘N’ Substitute with ‘N’ ‘N’ 0x05 Deletion Deletion Deletion Deletion 0x06 Insert ‘A’ Substitute with Insert ‘A’ Substitute with ‘R’ ‘R’ 0x07 Insert ‘C’ Substitute with Insert ‘C' Substitute with ‘Y’ ‘Y’ 0x08 Insert ‘G’ Substitute with Insert ‘G’ Substitute with ‘S’ ‘S’ 0x09 Insert ‘T’ Substitute with Insert ‘U’ Substitute with ‘W’ ‘W’ 0x0A Insert ‘N’ Substitute with Insert ‘N’ Substitute with ‘K’ ‘K’ 0x0B N/A Substitute with N/A Substitute with ‘M’ ‘M’ 0x0C N/A Substitute with N/A Substitute with ‘B’ ‘B’ 0x0D N/A Substitute with N/A Substitute with ‘D’ ‘D’ 0x0E N/A Substitute with N/A Substitute with ‘H’ ‘H’ 0x0F N/A Substitute with N/A Substitute with ‘V’ ‘V’ 0x10 N/A Substitute with ‘—’ N/A Substitute with ‘—’ 0x11 N/A Insert ‘A’ N/A Insert ‘A’ 0x12 N/A Insert ‘C’ N/A Insert ‘C’ 0x13 N/A Insert ‘G’ N/A Insert ‘G’ 0x14 N/A Insert ‘T’ N/A Insert ‘T’ 0x15 N/A Insert ‘N’ N/A Insert ‘N’ 0x16 N/A Insert ‘R’ N/A Insert ‘R’ 0x17 N/A Insert ‘Y’ N/A Insert ‘Y’ 0x18 N/A Insert ‘S’ N/A Insert ‘S’ 0x19 N/A Insert ‘W’ N/A Insert ‘W’ 0x1A N/A Insert ‘K’ N/A Insert ‘K’ 0x1B N/A Insert ‘M’ N/A Insert ‘M’ 0x1C N/A Insert ‘B’ N/A Insert ‘B’ 0x1D N/A Insert ‘D’ N/A Insert ‘D’ 0x1E N/A Insert ‘H’ N/A Insert ‘H’ 0x1F N/A Insert ‘V’ N/A Insert ‘V’ 0x20 N/A Insert ‘—’ N/A Insert ‘—’

The clips descriptor is used to represent clipped bases (a.k.a. soft or hard clips) in mapped reads or read pairs. This descriptor encodes soft clips as sequences of ASCII characters with additional elements to identify the position of the clipped bases in the read or read pair. In case of hard clips only the position and the number of clipped bases is encoded. Each descriptor contains a Genomic Record identifier followed by information related to the clipped bases position in the Genomic Record and the actual clipped bases in case of soft clips.

Syntax and semantics of the clips descriptor is provided in Table 9 and Table 10.

TABLE 9 Fields composing the clips descriptor. Size in bytes Semantics Remarks Soft clips 4 Genomic Record identifier (sequential counter of the repeated up to 2N Genomic Records encoded in the current Access Unit) times per Genomic 1 flag indicating the position (0x00 start of read1, 0x01 = Record where N is end of read 1, 0x02 = start of read 2, 0x03 = end of the number of read2) of clipped bases segments in the M sequence of M bases encoded as ASCII characters. Genomic Record. 1 (optional) soft clips terminator (0xfe) present only if in the same If K is the number of Genomic Record more than 1 soft clips sequence is clipped segments, present this is present only after the first K-1 sections 1 Genomic Record terminator (0xff) present only after the Kth (last) sections Hard clips 4 Genomic Record identifier (sequential counter of the repeated up to 2N Genomic Records encoded in the current Access Unit) times per Genomic 1 flag indicating the position (0x04 start of read1, 0x05 = Record where N is end of read 1, 0x06 = start of read 2, 0x07 = end of the number of read2) of clipped bases segments in the 4 number of hard clipped bases Genomic Record. 1 (optional) terminator (0xfe) present only if in the same Genomic If K is the number of Record more than 1 clipped sequence is present clipped segments, this is present only after the first K-1 sections 1 Genomic Record terminator (0xff) present only after the Kth (last) sections

TABLE 10 Syntax of the clips descriptor. clips( ) {  record_id  do{   clips_pos   if(clips_pos <= 3){    do{     soft_clipped_base    } while(sclipped_base != 0xff OR sclipped_base != 0xfe)   }   else{    hard_clipped_bases   }  } while(sclipped_base != 0xff) }

record_id is a counter of Genomic Records encoded in the current Access Unit.

clips_pos represents the position of the next clipped bases in the read or read pair. Values for positions have the following meaning:

clips_pos value semantics 0x00 soft clips before start of read 1 0x01 soft clips after end of read 1 0x02 soft clips before start of read 2 0x03 soft clips after end of read2 0x04 hard clips before start of read 1 0x05 hard clips after end of read 1 0x06 hard clips before start of read 2 0x07 hard clips after end of read2

soft_clipped_base is one of the symbols of the alphabet identified by alphabet_id.

hard_clipped_bases represent the number of hard clipped bases at the position indicated by the corresponding clips_pos;

ureads

The ureads descriptor represents verbatim sequence reads as a sequence of ASCII characters belonging to the currently used alphabet identified by alphabet_id.

rlen

The rlen descriptor is used only in case of variable length reads when reads_length=0 in the Parameter Set defined in this disclosure.

A decoded rlen descriptor represents the length of the current sequence read as number of bases including soft clips.

Pair

The information required to reconstruct paired reads is encoded using the pair descriptor. The pairing information associating one genomic segment to another can be expressed in three ways:

    • 1. if both reads are mapped on the same reference and coded in the same genomic record, the pairing distance is defined as the distance between the left-most mapped base of Read1 and the left-most mapped base of Read2. An example of pairing distance is shown in FIG. 8.
    • 2. as an absolute mapping position of the second read on the same reference sequence as the first read.
    • 3. as an absolute mapping position of the second read on a different reference sequence than the first read

The pairing information is encoded as described in points 2 and 3 above when the first two bytes of a decoded pair descriptor have one of the values listed in Table 11.

FIG. 8 shows how the Genomic Record Length is defined as the number of genomic positions on a reference sequence separating the left-most mapped base from the right-most mapped base of a read or read pair. In case of read pairs this is the number of genomic position on the reference sequence separating the left-most base of read 1 from the right-most base of its mate read 2 when both reads are mapped on the same reference sequence. The “Pairing Distance” is defined as the difference between the left-most position of Read1 and the left-most position of Read2. The “Pairing Distance” is represented as a signed integer valued of the pair descriptor.

When aligning reads to a reference sequence, read 2 can be mapped to a position that is smaller (e.g. to the left) than the mapping position of read 1; in this case, the pairing distance used in case 1 above will be negative. This implies that the information about reads strandedness is encoded in the sign of the pairing distance descriptor.

TABLE 11 Reserved values for the read distance descriptors signaling how the read pair was encoded Value Semantics Followed by 0x7ffd read2 in pair is on the 4 bytes encoding read2 distance as same reference but absolute value on the reference coded separately 0x8003 read1 in pair is on the 4 bytes encoding read1 distance as same reference but absolute value on the reference coded separately 0x7ffe read2 is on a different 2 bytes with a reference identifier, 4 reference bytes with absolute position of read2 0x8002 read1 is on a different 2 bytes with a reference identifier, 4 reference bytes with absolute position of read1 0x7fff read1 unpaired N/A 0x8001 read2 unpaired N/A 0x8000 read unpaired N/A 0x8004 additional alignment 2 bytes with a reference identifier, 4 present on another bytes with absolute position of read1 Reference Sequence

Reads Distance

The reads distance is encoded as a 2-bytes signed integer, where:

    • the LSB is used to represent the sign (if the sign bit is 0, the number is non-negative, if the sign bit is 1 then the number is negative), and
    • the remaining 15 bits are used to represent the absolute value of the pairing distance

This approach enables representing pairing distances in a range from −32766 to 32766. In case the reads are separated by a larger gap, the absolute position shall be encoded in the pair descriptor after the special value 0x7ffd or 0x8003 as defined in Table 11 and the two reads are encoded in two separate Genomic Records (i.e. the pair is “split”).

Decoding Process for Reads Distance

The decoding process of the reads distance is shown below:

sign=ReadsDistance & 0x0001;

ReadsDistance=ReadsDistance»1;

if (sign) ReadsDistance=-ReadsDistance;

mscore

The mscore descriptor provides a score per alignment. It shall be used to represent mapping/alignment score per read generated by genomic sequence reads aligners. The score shall be expressed using an exponent and fractional part. The number of bits used to represent the exponent and the fractional part are specified in the encoding parameters (see Parameter Set below). Table 12 shows how this is specified in IEEE RFC 754 for a 11-bits exponent and a 52-bits fractional part.

The score of each alignment shall be represented by:

    • One sign bit (S)
    • 11 bits for the exponent (E)
    • 53 bit for the mantissa (M)

If the base (radix) to be used for the calculation of scores is 10, the score is calculated as:

score=−1s×10E×M

rgroup

The rgroup descriptor identifies the read group the Genomic Record belongs to. It is an unsigned 8-bit integer with values going from 0 to num_groups −1. The presence of read groups in an Access Unit is signaled by num_groups >0 in the Parameter Set as defined in the Parameter Set defined below.

msar

The msar (Multiple Segments Alignment Record) descriptor supports spliced reads and alternative secondary alignments which contain indels or soft clips. msar is intended to convey information on:

    • a mapped segment length
    • a different mapping contiguity (i.e. CIGAR string) for a secondary alignment and/or spliced read

msar can is used to represent mismatches, insertions, deletions, strandedness and clipped bases of secondary alignments of an aligned read

Multiple Alignments

The following descriptors are defined for the support of multiple alignments.

mmap

The mmap descriptor is used to signal at how many positions the read or the leftmost read of a pair has been aligned. A Genomic Record containing multiple alignments is associated with one multi-byte mmap descriptor. The first two bytes of a mmap descriptor represent an unsigned integer N which refers to the read as a single segment (if spliced_reads_flag=0 as defined in this disclosure) or instead to all the segments into which the read has been spliced for the several possible alignments (if spliced_reads_flag=1). The value of N represents the number of values of the pos descriptor which are coded for the template in the current record. N is followed by one or more 8-bit unsigned integers Mi as described in this disclosure.

Multiple Alignments Strandedness

In case of multiple alignments, the rcomp descriptor defined in this disclosure is used to specify the strandedness of each read alignment using the same syntax specified above.

Scores of Multiple Alignments

In case of multiple alignments, one mscore as defined in this disclosure is assigned to each alignment.

Multiple Alignments without Splices

If no splices are present in the Access Unit, spliced_reads_flag is unset.

In paired-end sequencing, the mmap descriptor is composed by a 16-bit unsigned integer N followed by one or more 8-bit unsigned integers Mi, with i assuming values from 1 to the number of complete first (here, the left-most) read alignments. For each first read alignment, spliced or not, Mi is used to signal how many segments are used to align the second read (in this case, without splices, this is equal to the number of alignments), and then how many values of the pair descriptor are coded for that alignment of the first read.

The values of Mi shall be used to calculate P=Σi=1NMi, which indicates the number of alignments of the second read.

A special value of Mi (Mi=0) indicates that the alignment of the left-most read is paired with an alignment of the right-most read which is already paired with a kth alignment of the left-most read with k<i (then there is no new alignment detected, which is consistent with the equation above).

As an example, in the simplest cases:

    • 1. If there is a single alignment for the leftmost read and two alternative alignments for the rightmost, N assumes the value 1 and M1 assumes the value 2.
    • 2. If two alternative alignments are detected for the leftmost read but only one for the rightmost, N assumes the value 2, M1 assumes the value 1 and M2 assumes the value 0.

When Mi is 0, the associated value of pair shall link to an existing second read alignment; a syntax error will be raised otherwise and the alignment considered broken.

Example: if the first read has two mapping positions and the second read only one, N is 2, M1 is 1 and M2 is 0 as said earlier. If this is followed by another alternative secondary mapping for the entire template, N assumes the value 3, and M3 assumes the value 1.

FIG. 9 illustrates the meaning of N, P and Mi in case of multiple alignments without splices and FIG. 10 shows how the pos, pair and mmap descriptors are used to encode the multiple alignments information.

With respect to 10 the following applies:

    • The right-most read has P=Σi=1NMi alignments
    • Some values of Mi can be =0 when the ith alignment of the left-most read is paired with an alignment of the right-most read that is already paired with a kth alignment of the left-most read with k<i
    • One reserved value of the pair descriptor can be present to signal alignments belonging to other AUs ranges. If present it's always the first pair descriptor for the current record

Multiple Alignments with Splices

If the dataset is encoded with spliced reads, the msar descriptor enables representaiton of splices length and strandedness as defined in this disclosure.

After having decoded the mmap and the msar descriptors, the decoder knows how many reads or read pairs have been encoded to represent the multiple mappings and how many segments are composing each read or read pair mapping. This is shown in FIG. 11 and FIG. 12.

With reference to FIG. 11 the following applies:

    • The left-most read has N1 alignments with N splices (N1≤N).
    • N represents the number of splices present in all alignments of the left-most read and it is encoded as first value of the mmap descriptor.
    • The right-most read has P=Σi=1N1 Mi splices, where Mi is the number of splices of the right-most read which are associated in a pair with the ith alignment of the left-most read (1≤i≤N1). In other words P represents the number of splices of the right-most read and is calculated using the N values following the first value of the mmap descriptor.
    • N1 and N2 represent the number of alignments of the first and second read and are calculated using the N+P values of the msar descriptor.

With reference to FIG. 12 the following applies:

    • The left-most has N1 alignments with N splices (N1≤N). If N1=N AND N2=P no splices would be present.
    • The right-most read has P=Σi=1N1 Mi splices tj 1≤j≤P and N2 (N2≤P) alignments.
    • The number of pair descriptors can be calculated as NP=Max(N1, P)+M0 where
      • M0 is the number of Mi with value 0
      • NP has to be incremented by 1 in case one special pair descriptor indicates the presence of alignments in other AUs.

Alignment Score

The mscore descriptor allows signaling the mapping score of an alignment. In single-end sequencing it will have N1 values per template; in paired-end sequencing it will have a value for each alignment of the entire template (number of different alignments of the first read possibly +the number of further second read alignments, i.e. when Mi−1>0).

Number of scores=MAX(N1, N2)+M0

where M0 represent the total number of Mi=0.

The number of scores associated to each alignment is signalled by the encoding parameter

as_depth as defined in this disclosure.

Descriptors for Multiple Alignments without Splices

TABLE 13 How to calculate the number of descriptors needed to represent multiple alignments in one Genomic Record in case of multiple alignments without splices. Semantic mmap mscore Effect Read (or paired- Single read: Single read: N values Single read: end read) with N Read pair: MAX(N, Σ(Mi)) the read has multiple multiple Read pair: values + Σ(Mi = 0) mappings and it is encoded as mappings, not N, M, Introducing a separator would a sequence of N consecutive spliced where enable having an arbitrary segments belonging to the 1 ≤ i ≤ N number of scores. Otherwise a 0 class with the highest ID. should be used if not present. N pos descriptors are used These are floating point values as Read pair: defined in this disclosure. the read pair has multiple mappings and it is encoded as a sequence of N segments for the first read P = Σ(Mi) pairings to the alignments of the second read N pos descriptors are used N × P pair descriptors are used with NP =Σi=1N Mi + (no. of Mi = 0) + (optional) 1 The optional pairing descriptor is used when alignments are present on different reference sequences than the one currently encoded N + 1 mmap descriptors read (pair) 0 0 uniquely mapped

Descriptors for Multiple Alignments with Splices

Table 14 shows how to calculate the number of descriptors needed to represent multiple alignments in one Genomic Record in case of multiple alignments with splices.

TABLE 14 Descriptors used to represent multiple alignments and associated scores. Semantic mmap mscore Effect Read (or paired- Single read: Single read: N1 values Single read: end read) with N Read pair: Max(N1, N2) + Σ(Mi == the read has multiple multiple Read pair: 0) values mappings and it is encoded as mappings, with N, Mi N1 and N2 are calculated using a sequence of N consecutive splices where the N + P msar descriptors segments belonging to the i ≤ i ≤ N P = Σi=1N1 Mi class with the highest ID. These are floating point values as N pos descriptors are used defined in this disclosure Read pair: the read pair has multiple mappings and it is encoded as a sequence of N segments for the first read P = Σ(Mi) pairings to the alignments of the second read N pos descriptors are used read (pair) 0 0 uniquely mapped

Multiple Alignments on Different Sequences

It may happen that the alignment process finds alternative mappings to another reference sequence than the one where the primary mapping is positioned.

For read pairs which are uniquely aligned, a pair descriptor shall be used to represent the absolute read positions when there is for example a chimeric alignment with the mate on another chromosome. The pair descriptor shall be used to signal the reference and the position of the next record containing further alignments for the same template. The last record (e.g. the third if alternative mappings are coded in three different AUs) shall contain the reference and position of the first record.

In case one or more alignments for the leftmost read in a pair are present on a different reference sequence than the one related to the currently encoded AU, a reserved value of the pair descriptor shall be used (not the same as the one used for alignments present to another reference in case of unique alignment). The reserved value shall be followed by the reference sequence identifier and the position of the leftmost alignment among all those contained in the next AU (i.e. the first decoded value of the pos descriptor for that record).

Multiple Alignments with Insertions, Deletions, Unmapped Portions

When an alternative secondary mapping does not preserve the contiguity of the reference region where the sequence is aligned, it may be impossible to reconstruct the exact mapping generated by the aligner because the actual sequence (and then the descriptors related to mismatches such as substitutions or indels) is only coded for the primary alignment. The msar descriptor shall be used to represent how secondary alignments map on the reference sequence in case they contain indels and/or soft clips. If msar is represented by the special symbol “*” for a secondary alignment, the decoder shall reconstruct the secondary alignment from the primary alignment and the secondary alignment mapping position.

Raw Data

Raw reads belong to class U only. They are encoded as unmapped reads in aligned datasets.

Some of the descriptors defined for reads aligned to an external or internal reference are used to encode raw reads. This is motivated by the fact that raw reads are encoded using reference sequences built from the data to be encoded.

descriptor_id Descriptor Semantics Comments 1 pos read mapping reads positions on the reference are 0-based position (signed) delta encoded with respect to the previous read 4 rcomp strand information for N bits reads in a template 8 flags used to cover SAM This is a placeholder to understand the type of flags and possibly flags we need to associate to each template. other flags SAM flags can be a starting point. 5 mmpos mismatch position (unsigned) delta encoded with respect to the previous mismatch 6 mmtype type of edit fixed alphabet operations: substitutions deletions insertions 7 clips string of nucleotides ASCII characters + position in the template with variable length (e.g. soft clips) 11 ureads unmapped reads ASCII characters encoded verbatim 3 rlen read lengths 32-bit integer 12 rtype read type This identifies the subset of descriptors needed to decode the read.

ureads

The ureads descriptor represents verbatim sequence reads as a sequence of ASCII characters belonging to the currently used alphabet.

rtype

The rtype descriptor is used to signal the subset of descriptors used to encode one unmapped read or read pair in a Genomic Record as shown in Table 15.

The rtype descriptor also enables mixing reference-based and reference-less compression in the same Dataset. In this scenario rtype=0 signals reference based encoded records, while rtype>0 signals the set of descriptors to be used for reference less compression(in this case descriptors refer to the computed reference. when needed).

TABLE 15 Semantics of the rtype descriptor. rtype type of encoded reads description not used aligned reference the entire Dataset is encoded using based reference based compression for mapped reads   0 reference based the Dataset contains both read (pairs) encoded using reference based compression and reference less compression. Descriptors for this record use the external or embedded reference according to the Class of the AU >0 raw and aligned 1 = class P descriptors used reference less 2 = class N descriptors used 3 = class M descriptors used 4 = class I descriptors used 5 = class U descriptors used

Binarization of Descriptors

In an embodiment, the present invention uses context-adaptive binary arithmetic coding (CABAC) for the compression of the genomic descriptors. CABAC first converts to a binary representation all symbols to be encoded. The process of binarization converts a non-binary-valued symbol (e.g. a mapping position, a mapped read length or a mismatch type) into a binary code prior to arithmetic coding.

The selection of appropriate binarizations adapted to the statistical properties of each descriptor provides better compression ratios than existing formats based on general purpose compressor applied on blocks of heterogeneous elements. In the following sections these variables are defined:

    • symVal: non-binary value of the genomic descriptor to be binarized.
    • cLength: represents the numbers of bits with which the value is binarized.
    • cMax: is the largest possible value to be binarized. Larger values will be truncated.

While the following binarization tables are calculated for fixed values of these variables, it has to be appreciated that the present principles are not limited to these values, and thus other values can also be used in accordance with the present principles, while maintaining the spirit of the present principles.

Each binarization algorithm used in this disclosure is identified by an identifier as shown in Table 16.

TABLE 16 Type of binarizations and respective identifiers. binarization_id Type of binarization 0 Binary Coding (BI) 1 Truncated Unary (TU) 2 Exponential Golomb (EG) 3 Signed Exponential Golomb (SEG) 4 Truncated Exponential Golomb (TEG) 5 Signed Truncated Exponential Golomb (STEG) 6 Split Unit-wise Truncated Unary (SUTU) 7 Signed Split Unit-wise Truncated Unary (SSUTU) 8 Double Truncated Unary (DTU) 9 Signed Double Truncated Unary (SDTU)

Binary Coding (BI)

This is a standard binary representation whereby each numerical value is coded in its binary representation. The variable cLength—shown in Table 28 when binarization_id =0—represents the numbers of bits with which the value will be represented.

Truncated Unary (TU) Binarization

A TU binary string is the concatenation of sym Val ones followed by one zero. If sym Val==cMax, the trailing 0-bit is discarded. Table 17 illustrates the bin strings of this truncated unary binarization with cMax=3.

TABLE 17 Bin string of the truncated unary binarization with cMax == 3. symVal Binary string 0 0 1 1 0 2 1 1 0 3 1 1 1 binIdx 0 1 2

The syntax for this binarization process along with arithmetic decoding is described below.

decode_cabac_TU(ctxTable, ctxIdx, cMax) {  for (binIdx=0; binIdx<cMax; binIdx++) {   binValue   if (binValue == 0)    break  }  return binIdx }

binValue is the binarized value which can be either 0 or 1.

Exponential Golomb (EG) Binarization

The parsing process for genomic descriptors binarized using this technique begins with reading the bits starting at the current location in the bitstream up to and including the first non-zero bit, and counting the number of leading bits that are equal to 0.

This process is specified as follows:

leadingZeroBits= −1 for( b = 0; !b; leadingZeroBits++ )  b = read_bits( 1 )

The variable sym Val is then assigned as follows:


symVal=2leadingZeroBits−1+read_bits(leadingZeroBits)

where the function call read_bits reads a number of bits from a storage medium equal to the parameter passed as input. The value returned from read_bits(leadingZeroBits) is interpreted as a binary representation of an unsigned integer with the most significant bit written first.

Table 18 illustrates the structure of the Exp-Golomb code by separating the bit string into “prefix” and “suffix” bits. The “prefix” bits are those bits that are parsed as specified above for the computation of leadingZeroBits, and are shown as either 0 or 1 in the bit string column of Table 18. The “suffix” bits are those bits that are parsed in the computation of symVal and are shown as xi in Table 18, with i in the range of 0 to leadingZeroBits −1, inclusive. Each xi is equal to either 0 or 1.

TABLE 18 Binary representations for values of symVal from 0 to 62. Bit string form Range of symVal 1  0 0 1 x0  1 . . . 2 0 0 1 x1 x0  3 . . . 6 0 0 0 1 x2 x1 x0  7 . . . 14 0 0 0 0 1 x3 x2 x1 x0 15 . . . 30 0 0 0 0 0 1 x4 x3 x2 x1 x0 31 . . . 62 . . . . . .

Table 19 illustrates the explicit assignments of bit strings to symVal values.

TABLE 19 Exp-Golomb bit strings and symVal in explicit form. Bit string symVal 1 0 0 1 0 1 0 1 1 2 0 0 1 0 0 3 0 0 1 0 1 4 0 0 1 1 0 5 0 0 1 1 1 6 0 0 0 1 0 0 0 7 0 0 0 1 0 0 1 8 0 0 0 1 0 1 0 9 . . . . . .

Depending on the genomic descriptor, the value of a binarized syntax element is decoded using one of the following methods:

    • The value of the decoded genomic descriptor is equal to the symVal value corresponding to the binarized descriptor
    • The value of the decoded genomic descriptor is calculated by applying signed 0-order Exponential-Golomb decoding as defined for example in https://en.wikipedia.org/wiki/Exponential-Golomb_coding with symVal as input.

Signed Exponential Golomb (SEG) Binarization

According to this binarization method the genomic descriptor is associated to the symVal by ordering the syntax element by its absolute value in increasing order and representing the positive value for a given absolute value with the lower symVal. Table 20 shows the assignment rule.

TABLE 20 Assignment of syntax element to symVal for signed Exp-Golomb coded genomic descriptors. symVal syntax element value 0 0 1 1 2 −1 3 2 4 −2 5 3 6 −3 k (−1)k+1 Ceil(k ÷ 2)

Truncated Exponential Golomb (TEG) Binarization

This binarization process requires the use of an additional input parameter tegParam which defines how the binarization is calculated.

Output of this process is the TEG binarization of the syntax element.

A TEG bin string is the concatenation of 1 (in case of symVal==0) or 2 (in case of symVal>0) types of binarization:

    • The truncated unary binarization with cMax=tegParam for the value Min(symVal, tegParam)
    • If symVal!=0, the exponential golomb binarization for the value Abs(symVal)−tegParam

Table 21 illustrates the bin strings of this Truncated Exponential Golomb binarization with tegParam==2.

TABLE 21 Bin string of the Truncated Exponential Golomb binarization with tegParam = 2. symVal Truncated Unary Exponential Golomb 0 0 1 1 0 2 1 1 1 3 1 1 0 1 0 4 1 1 0 1 1 . . . binIdx 0 1 2 3 4

Signed Truncated Exponential Golomb (STEG) Binarization

This binarization process requires the use of an additional input parameter stegParam. A STEG binary string is the concatenation of 1 (in case of symVal ==0) or 2 (for other cases) binarizations:

    • 1. The truncated exponential golomb binarization for Abs(symVal)
    • 2. If symVal!=0, a one-bit flag equal to 1 (if symVal<0) or equal to 0 (if symVal>0). Table 22 illustrates the bin strings of this Signed Truncated Exponential Golomb binarization with stegParam=2.

TABLE 22 Binary string of the Signed Truncated Exponential Golomb binarization with stegParam = 2. Truncated Exponential Golomb symVal Truncated Exponential . . . Unary Golomb Sign Flag −4 1 1 0 1 1 1 −3 1 1 0 1 0 1 −2 1 1 1 1 −1 1 0 1 0 0 1 1 0 0 2 1 1 1 0 3 1 1 0 1 0 0 4 1 1 0 1 1 0 . . . binIdx 0 1 2 3 4 Max(binIdx) + 1

Split Unit-Wise Truncated Unary (SUTU) Binarization

This binarization process requires the use of two input parameters splitUnitSize and outputSymSize. outputSymSize must always be a multiple of splitUnitSize.

The SUTU binary string is a concatenation of repeated TU binarizations, where each TU binarization is applied to portions of symVal which are splitUnitSize bits long. In other words, symVal is represented by x binary string obtained with the TU binarization, where x =outputSymSize/splitUnitSize. The cMax parameter for each binary string is defined as cMax=(1«splitUnitSize)−1.

Table 23 illustrates the binary strings of split unit-wise truncated unary binarizations with splitUnitSize=2 and outputSymbSize=8.

TABLE 23 Bin string of the Split Unit-wise Truncated Unary binarization with splitUnitSize = 2, outputSymSize = 8. TU Instance TU Instance TU Instance TU Instance 1 2 3 4 symVal cMax == 3 cMax == 3 cMax == 3 cMax == 3 0 0 0 0 0 1 1 0 0 0 0 3 1 1 1 0 0 0 15 1 1 1 1 1 1 0 0 31 1 1 1 1 1 1 1 0 0 63 1 1 1 1 1 1 1 1 1 0 binIdx 0 1 2 3 4 5 6 7 8 9 10 11

The bitstream syntax for this binarization process is described below.

TABLE 24 CABAC decoding process for TU binarization. decode_cabac_SUTU(ctxTable, ctxIdx, splitUnitSize, outputSymSize) {  output_symb = 0  cMax = (1<<splitUnitSize) − 1  for (i=0; i<outputSymSize; i+=splitUnitSize) {   tmp = decode_cabac_TU(ctxTable, ctxIdx, cMax)   ctxIdx += cMax   output_sym |= (tmp<<i)  }  return output_sym }

Signed Split Unit-wise Truncated Unary (SSUTU) Binarization

This binarization process requires the use of two input parameters splitUnitSize and outputSymSize.

The SSUTU binary string is obtained by an extension of the SUTU binarization process with the sign of symVal coded as a separate flag.

    • The SUTU binarization for the value Abs(symVal).
    • If symVal!=0, a one-bit flag equal to 1 (if symVal<0) or equal to 0 (if symVal>0).

Table 25 illustrates the binary strings of the Signed Split Unit-wise Truncated Unary binarization with splitUnitSize=2, outputSymbSize=8.

TABLE 25 Bin string of the Signed Split Unit-wise Truncated Unary binarization with splitUnitSize = 2, outputSymSize = 8. TU TU TU TU Instance 1 Instance 2 Instance 3 Instance 4 symVal cMax == 3 cMax == 3 cMax == 3 cMax == 3 Sign −63 1 1 1 1 1 1 1 1 1 0 1 −31 1 1 1 1 1 1 1 0 0 1 −15 1 1 1 1 1 1 0 0 1 −3 1 1 1 0 0 0 1 −1 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 3 1 1 1 0 0 0 0 15 1 1 1 1 1 1 0 0 0 31 1 1 1 1 1 1 1 0 0 0 63 1 1 1 1 1 1 1 1 1 0 0 binIdx 0 1 2 3 4 5 6 7 8 9 10 11 12

The syntax for this binarization process is described below.

decode_cabac_SSUTU(ctxTable, ctxIdx, splitUnitSize, outputSymSize) {  output_sym = decode_cabac_SUTU(ctxTable, ctxIdx, splitUnitSize,    outputSymSize)  if(output_sym > 0) {   ctxIdx += ((1<<splitUnitSize) − 1) * (outputSymSize / splitUnitSize)  sign_flag  if(sign_flag == 1)   output_sym = −output_sym  }  return output_sym }

sign_flag represents the cabac decoding of a bit on context variable identified by ctxldx.

decode_cabac_SUTU( ) represents the cabac decoding process for the SUTU binarization.

Double Truncated Unary (DTU) Binarization

This binarization process requires the use of two input parameters splitUnitSize and outputSymSize.

The DTU binary string is a concatenation of two binarizations, namely the TU binarization and the SUTU binarization. The parameter cMax is used for the TU binarization, and parameters splitUnitSize and outputSymSize are used for the SUTU binarization (where its cMax is derived internally).

    • The first instance of the TU binarization for the value Min(Abs(symVal), cMax).
    • If Abs(symVal)>cMax, the second instance of SUTU binarization for the value Abs(symVal)−cMax.

Table 26 illustrates the binary strings of the Double Truncated Unary binarization with cMax =1, splitUnitSize=2, outputSymSize=8.

TABLE 26 Bin string of the Double Truncated Unary binarization with cMax = 1, splitUnitSize = 2, outputSymSize = 8. SUTU Instance: splitUnitSize = TU 2, outputUnitSize = 8 Instance TU TU TU TU sym- cMax = Instance 1 Instance 2 Instance 3 Instance 4 Val 1 cMax = 3 cMax = 3 cMax = 3 cMax = 3 0 0 1 1 3 1 1 1 0 0 0 0 15 1 1 1 0 1 1 1 0 0 31 1 1 1 0 1 1 1 1 0 0 63 1 1 1 0 1 1 1 1 1 1 0 binIdx 0 1 2 3 4 5 6 7 8 9 10 11 12

The binarization process is described below.

decode_cabac_DTU(ctxTable, ctxIdx, cMax, splitUnitSize, outputSymSize) {   output_sym = 0  if(cMax > 0) {    output_sym = decode_cabac_TU(ctxTable, ctxIdx, cMax)   if(output_sym > cMax) {   output_sym += decode_cabac_SUTU(ctxTable, ctxIdx+cMax,     splitUnitSize, outputSymSize)    }   } else   output_sym = decode_cabac_SUTU(ctxTable, ctxIdx,     splitUnitSize, outputSymSize)  return output_sym }

decode_cabac_TU( ) represents the cabac decoding process for TU binarization.

decode_cabac_SUTU( ) represents the cabac decoding process for SUTU binarization.

Signed Double Truncated Unary (SDTU) Binarization

This binarization process requires the use of two additional input parameters splitUnitSize and outputSymSize.

The SDTU binary string is obtained by an extension of the DTU binarization process with the sign of symVal coded as a flag.

    • The DTU binarization for the value Abs(symVal).
    • If symVal!=0, a one-bit flag equal to 1 (if symVal<0) or equal to 0 (if symVal>0).

Table 27 illustrates the bin strings of double truncated unary binarization with with cMax=1, splitUnitSize=2, outputSymSize=8.

TABLE 27 Bin string of the Signed Double Truncated Unary binarization with with cMax = 1, splitUnitSize = 2, outputSymSize = 8. SUTU Instance: splitUnitSize = 2, outputUnitSize = 8 TU TU TU TU TU Instance Instance 1 Instance 2 Instance 3 Instance 4 symVal cMax = 1 cMax = 3 cMax = 3 cMax = 3 cMax = 3 Sign −63 1 1 1 0 1 1 1 1 1 1  0  1 −31 1 1 1 0 1 1 1 1 0  0  1 −15 1 1 1 0 1 1 1 0  0  1 −3 1 1 1 0 0 0  0  1 −1 1  1 0 0 1 1  0 3 1 1 1 0 0 0  0  0 15 1 1 1 0 1 1 1 0  0  0 31 1 1 1 0 1 1 1 1 0  0  0 63 1 1 1 0 1 1 1 1 1 1  0  0 binIdx 0 1 2 3 4 5 6 7 8 9 10 11 12 13

The syntax for this binarization process is described below.

decode_cabac_SDTU(ctxTable, ctxIdx, cMax, splitUnitSize, outputSymSize) {   output_sym = decode_cabac_DTU(ctxTable, ctxIdx, cMax,      splitUnitSize, outputSymSize)   if(output_sym > 0) {   ctxIdx += cMax + ((1<<splitUnitSize) − 1) *       (outputSymSize / splitUnitSize)    sign_flag   if(sign_flag == 1)     output_sym = −output_sym   }  return output_sym }

sign_flag represents the cabac decoding of a bit on context variable identified by ctxIdx.

decode_cabac_DTU( ) represents the cabac decoding with DTU binarization.

Binarization Parameters

Each binarization algorithm introduced in the previous sections requires configuration parameters at the encoding and decoding ends. In an embodiment, said configuration parameters are encapsulated in a data structure described in Table 28. Each binarization algorithm is identified by an identifier as listed in Table 16.

TABLE 28 Binarization parameters structure Binarization ID parameters 0 cLength 1 cMax 2 3 4 tegParam 5 stegParam 6 splitUnitSize, outputSymSize 7 splitUnitSize, outputSymSize 8 cMax, splitUnitSize, outputSymSize 9 cMaxsplitUnitSize, outputSymSize

In Table 28 the following semantics applies:

cMax represents the largest value to be binarized. Larger values will be truncated.

cLength represents the numbers of bits with which the value is binarized.

tegParam represents the tegParam variable defined in this disclosure for TEG binarization.

stegParam represents the stegParam variable defined in this disclosure for STEG binarization.

splitUnitSize represents the splitUnitSize variable defined in this disclosure for SUTU, SSUTU and DTU binarizations.

outputSymSize represents the outputSymSize variable defined in this disclosure for SUTU, SSUTU DTU and SDTU binarizations.

Evidence of Technical Advantage of Present Invention

By applying the indicated CABAC binarization to the respective genomic descriptors as indicated in Table 29, the compression performance reported in * no additional information is necessary since it is already available in the compressed representation according to the principles of this disclosure.

Table 30 can be obtained. The improvement in compression performance of the method described in this disclosure can be appreciated by comparison with the corresponding file sizes of BAM and CRAM approaches and one of the best compressors in literature known as DeeZ (see Numanagic, I., et al “Comparison of high-throughput sequencing data compression tools”, Nature Methods (ISSN: 1548-7091), vol. 13, p. 1005-1008 London: Nature Publishing Group, 2016). It has to be appreciated that the DeeZ, BAM and CRAM compression performance are calculated by adding the size of the compressed reference genome used for alignment to the sizes of the compressed genome sequence data. According to the principles of the present disclosure, the reference genome is embedded in the compressed file. In today practice said compressed reference genome is a FASTA (ASCII text) file compressed using general purpose compressors such as GZIP, LZMA, Bzip2. In the proposed comparison the reference genome hs37d5.fa was compressed using the xz Linux command with the option of maximum compression (-9).

Binarization Applied to Descriptors

Table 30 shows the binarization applied to the genomic descriptors defined in this disclosure. When a concatenation of several binarizations is indicated, the different binarizations are applied to the different elements composing each descriptor as defined in this disclosure.

TABLE 29 Binarizations associated to each genomic descriptor. descriptor_id short name binarization_id  1 pos 8 (aligned reads) 9 (raw reads)  2 pair 0, 6, 6, 6  3 rlen 6  4 rcomp 1  5 mmpos 0, 6  6 mmtype 0, 0, 1, 1  7 clips 5, 1, 3, 0  8 flags 0  9 mmap 6 10 msar 3 11 ureads 1 12 rtype 1 13 rftp 0, 6 14 rftt 0, 0, 1, 1 15 rgroup 1 16 mscore 1

rftp and rftt

An example of binarization of rftp and rftt is provided in this section and illustrated in FIG. 10. The descriptors associated to five mismatches between a contig and a reference genome used for alignment are shown below:

rftp 5 7 12 13 15 rftt C T T C A

Each nucleotide symbol is associated to an integer code:

Nucleotide code A 0 C 1 G 2 T 3 N 4

After transformation the values become:

rftp 5 2 5 1 2 rftt 1 3 3 1 0

The binarized values for rftp are calculates as follows:

    • 1. The terminator value can be binarized as 0 or 1. Here for this example we select 0.
    • 2. If terminator =0 then binarization no. 6 with splitUnitSize =4, outputSymbolSize =12 is used and the following binary strings are associated to the values of rftp
      • a. 5=11110
      • b. 2=110
      • c. 5=11110
      • d. 1=10
      • e. 2=110

The binarized values for rftt are calculates as follows:

    • 1. Knowing the nucleotide present in the reference genome, remove the corresponding symbol from the possible symbols to be encoded. I.e. for the first mismatch of the example, if the corresponding symbol in the reference is a ‘G’, the space of possible symbols to be encoded is 0, 1, 3, 4.
    • 2. The frequencies of symbols of the mismatches types on the data to be encoded are measured and indexed from 0 to 3. Index 0 is affected to the most frequent mismatch and index 3 is affected to the less frequent mismatch. In this example an indexing could be: {0 =>3, 1=>0, 2=>4, 3=>1}

3. In the given example the five mismatches would be binarized using the TU binarization as:

TU binarization with Symbol index cMax = 3 1 3 111 3 0 0 3 0 0 1 3 0 0 1 10

With the binarization approach shown above the following compression results are achieved:

TABLE 30 Compression performance with respect to state of the art solutions (sizes in bytes). Proposed Compressor BAM CRAM Deez method 9827_2#49.bam 4,755,859,110 3,124,448,497 2,592,665,720 2,164,362,407 (ERR317482)- Low coverage Reference 707,712,316 707,712,316 707,712,316 N/A* genome hs37d5.fa Total 5,463,571,426 3,832,160,813 3,300,378,036 2,164,362,407 NA12878_S1.bam- 117,653,446,187 64,565,636,391 64,334,196,408 47,759,141,388 High Coverage Reference 707,712,316 707,712,316 707,712,316 N/A* genome hs37d5.fa Total 118,361,158,503 65,273,348,707 65,041,908,724 47,759,141,388 *no additional information is necessary since it is already available in the compressed representation according to the principles of this disclosure.

Coding Parameters

In an embodiment, the parameters needed to encode and decode each Access Unit are encapsulated in a data structure named Parameter Set as defined in Table 31.

TABLE 31 Coding parameters for genomic descriptors Parameter Set Parameter name Cardinality Description dataset type 1 type of data encoded in Access Units referring to this encoding parameters. reads length 1 length in nucleotides of sequence reads in case of constant reads length. The value 0 indicates the presence of variable reads length (conveyed by the rlen syntax element as defined in this disclosure). QV depth 1 number of Quality Values associated to each coded nucleotide. 0 means that no Quality Values are encoded. alignment score 1 number of alignments scores associated to each coded depth alignments. 0 means that no alignment scores are encoded. terminator size 1 represents the size in bytes minus one (e.g. 0 = 1 byte) of the terminator symbol used for the mmpos descriptor defined in Error! Reference source not found. terminator value 1 represents the value of the terminator symbol used for the mmpos descriptor defined in Table 1. number of classes 1 number of data classes encoded in all Access Units referring to these encoding parameters. class ID number of identifier associated to one of the data class defined in classes this disclosure (P, N, M, I, HM, U). number of 1 total number of descriptors contained in Access Units descriptors referring to these configuration parameters coding mode ID number of one of the coding modes defined in this disclosure descriptors number of groups 1 number of different values of the rgroup descriptor listed in table 1 present in all Access Units referring to the current encoding parameters. group name number of null-terminated string identifier of a read group. groups multiple alignments 1 flag signaling the presence of multiple alignments in the flag Access Unit. When set to 0 no multiple alignments are present spliced reads flag 1 flag signaling the presence of spliced reads in the Access Unit. When set to 0 no spliced reads are present. multiple signature 1 flag signaling the use of multiple signatures in an base Access Unit containing unmapped sequence reads (Class U). signature size 1 size in bits of each integer representing an encoded signature. score exponent 1 number of bits used to encode the exponent part of the multiple alignments score encoded in the mscore descriptor. As specified in IEEE RFC 754 the value can go from 0 to 11. The mscore descriptor is defined in table 1. score fractional 1 number of bits used to encode the fractional part of the multiple alignments score encoded in the mscore descriptor. As specified in IEEE RFC 754 the value can go from 0 to 52. The mscore descriptor is defined in table 1. contig buffer size 1 size in bytes of the buffer used to build the contig 102 in figure 1. contig buffer count 1 number of reads used to build the contig 102 in figure 1.

Encoding Apparatus

FIG. 13 shows an encoding apparatus according to the principles of this invention. The encoding apparatus receives as input a reference genome 1302 and unaligned genomic sequences 1300, for example produced by a genome sequencing apparatus. Genome sequencing apparatus are known in the art, like the Illumina HiSeq 2500, the Thermo-Fisher Ion Torrent devices or the Oxford Nanopore MinION. The unaligned sequence data 1300 are fed to a reads alignment unit 1301, which maps the sequences on a reference genome 1302. The aligned genomic sequences 303 are then fed to a reference based compressor 1305 which generates genomic descriptors 1306 representing both mapped and unmapped genomic sequences. The genomic descriptors 1306 generated by the reference based compressor 1305 are first binarized by several binarization units 1307 and then entropy coded by several entropy coders 1308. The entropy coded genomic descriptors are then fed to a multiplexing apparatus 1310 to build one or more Access Unit composing a compressed bitstream 1311. The multiplexed bitstream contains as well coding parameters structures 1304 built by a coding parameters encoder 1309. Each Access Unit contains entropy coded descriptors representing alignment information and sequence reads belonging to one class of data as defined in this disclosure.

Decoding Apparatus

FIG. 14 shows a decoding apparatus according to the principles of this disclosure. A demultiplexing unit 1401 receives a multiplexed bitstream 1400 from a network or a storage element and extracts the entropy coded payload of the Access Units composing said bitstream. Entropy decoders 1402 receive the extracted payloads and decode the different types of genomic descriptors into their binary representations. Said binary representations are then fed to several binary decoders 1404 which generate genomic descriptors 1405. A coding parameter decoder 1403 receives coding parameters multiplexed with the genomic information and feds them to the decoding unit 1406. Genomic descriptors 1405 representing genomic sequence reads are fed to a sequence reads reconstruction unit 1406 which reconstructs the aligned genomic sequences 1407 using an available reference genome 1408.

The inventive techniques herewith disclosed may be implemented in hardware, software, firmware or any combination thereof. When implemented in software, these may be stored on a computer medium and executed by a hardware processing unit. The hardware processing unit may comprise one or more processors, digital signal processors, general purpose microprocessors, application specific integrated circuits or other discrete logic circuitry. The techniques of this disclosure may be implemented in a variety of devices or apparatuses, including mobile phones, desktop computers, servers, tablets and similar devices.

Claims

1. A method for encoding genome sequence data, said genome sequence data comprising reads of sequences of nucleotides, said method comprising the steps of:

aligning said reads to one or more reference sequences thereby creating aligned reads, classifying said aligned reads according to specified matching rules with said one or more reference sequences, thereby creating classes of aligned reads, represented by genomic descriptors arranged in blocks of homogeneous data,
encoding said classified aligned reads as a multiplicity of blocks of syntax elements, and structuring said blocks of syntax elements and said descriptors with header information thereby creating successive Access Units,
wherein said encoding further comprises binarizing and entropy coding said genomic descriptors.

2. The method of claim 1, wherein said binarizing and entropy coding genomic descriptors is such that the binarization and the entropy coding is different for the different descriptors.

3. The method of claim 2, wherein the said descriptors comprise:

pos for signaling the mapping position of a read on a reference sequence,
rcomp for signaling the DNA or RNA strand the reads was mapped on, and
mapping flags for enabling the aligner to further specify the result of the mapping process.

4. The method of claim 3 further comprising coding the following descriptors:

mmpos for signaling the position of mismatches in aligned reads with respect to reference sequences, and
mmtype for signaling the types of mismatches with respect to reference sequences at the associated positions.

5. The method of claim 4 further comprising coding the clips descriptor for signaling soft or hard clipped nucleotides.

6. The method of claim 5, further comprising coding the rlen descriptor for signaling the length of each encoded sequence read.

7. The method of claim 6, further comprising coding the following descriptors:

mmap for signaling the multiple mapping positions that are associated to a single read or read pair by the mapping procedure;
msar for signaling the identification of the existence of spliced reads (i.e. reads that when split in chunks find mapping positions with higher degrees of matching accuracy than when they are mapped as single contiguous read mapped on a single position on a reference sequence).

8. The method of claim 7, further comprising coding the mscore descriptor to signal a mapping/alignment score per read as generated by genomic sequence reads aligners.

9. The method of claim 8, further comprising coding the pair descriptor to signal, in case of paired end reads, how the reads are paired.

10. The method of claim 9, further comprising coding the ureads descriptor to signal reads which could not be aligned at any position of the reference sequence.

11. The method of claim 10, further comprising coding the rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy.

12. The method of claim 11, further comprising coding the rgroup descriptor to signal to which read group the read belongs to.

13. The method of claim 12, further comprising coding the following descriptors:

rftp for signaling the position of mismatches between a contig and a reference sequence. Positions of mismatches are terminated by a special terminator character,
rftt for signaling the type of mismatches between a contig and a reference sequence.

14. The method of claim 3, wherein:

said pos descriptor is binarized using a double truncated unary code or a single double truncated unary code;
said rcomp descriptor is binarized using a truncated unary code; and
said mapping flags descriptors are binarized using binary coding.

15. The method of claim 4, wherein:

said mmpos descriptor for signaling the position of mismatches in aligned reads with respect to reference sequences is binarized using a split unit wise truncated unary code; and
said mmtype descriptor for signaling the types of mismatches with respect to reference sequences at the associated positions is binarized using a truncated unary code.

16. The method of claim 5, wherein said clips descriptor for signaling soft or hard clipped nucleotides is binarized using a concatenation of Signed Truncated Exponential Golomb, Truncated Unary, Signed Exponential Golomb and Binary Codes.

17. The method of claim 6, wherein said rlen descriptor signaling the length of each encoded sequence read is binarized using a Split Unit-wise Truncated Unary code.

18. The method of claim 7, wherein:

said mmap descriptor for signaling the multiple mapping positions that are associated to a single read or read pair by the mapping procedure is binarized using a Split Unit-wise Truncated Unary code; and
said msar descriptor for signaling the identification of the existence of spliced reads is binarized using a Signed Exponential Golomb code.

19. The method of claim 8, wherein said mscore descriptor to signal a mapping/alignment score per read as generated by genomic sequence reads aligners is binarized using a Truncated Unary code.

20. The method of claim 9, wherein said pair descriptor to signal, in case of paired end reads, how the reads are paired is binarized using a concatenation of Binary Coding and Split Unit-wise Truncated Unary code.

21. The method of claim 10, wherein said ureads descriptor to signal reads which could not be aligned at any position of the reference sequence is binarized using a Truncated Unary code.

22. The method of claim 11, wherein said rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy is binarized using a Truncated Unary code.

23. The method of claim 12, wherein said rgroup descriptor to signal to which read group the read belongs to is binarized using a Truncated Unary code.

24. The method of claim 13, wherein:

said rftp descriptor for signaling the position of mismatches between a contig and a reference sequence is binarized using a concatenation of Binary Coding and Split Unit-wise Truncated Unary code; and
said rftt descriptor for signaling the type of mismatches between a contig and a reference sequence is binarized using a concatenation of Binary Coding and Truncated Unary code.

25. The method of claim 13, wherein said descriptors are coded by inserting configuration parameters in a syntax header.

26. The method of claim 25, wherein said configuration parameters are updated by creating updated syntax headers to be added to the encoded genomic file.

27. The method of claim 26, wherein said configuration parameters comprise a dataset type for signaling the type of data encoded in Access Units referring to this encoding parameters.

28. The method of claim 27, wherein said configuration parameters further comprise a reads length for signaling the length in nucleotides of sequence reads in case of constant reads length.

29. The method of claim 28, wherein said configuration parameters further comprise a quality values depth parameter for signaling the number of Quality Values associated to each coded nucleotide.

30. The method of claim 29, wherein said configuration parameters further comprise an alignment score depth for signaling the number of alignments scores associated to each coded alignments.

31. The method of claim 30, wherein said configuration parameters further comprise a terminator size for signaling the size in bytes of the terminator symbol used for the mmpos descriptor.

32. The method of claim 31, wherein said configuration parameters further comprise a terminator value for signaling the value of the terminator symbol used for the mmpos descriptor.

33. The method of claim 32, wherein said configuration parameters further comprise the number of classes for signaling the number of data classes encoded in all Access Units referring to said configuration parameters.

34. The method of claim 33, wherein said configuration parameters further comprise class identifiers to signal the identifiers associated to each data class.

35. The method of claim 34, wherein said configuration parameters further comprise the number of descriptors for signaling the total number of descriptors contained in Access Units referring to said configuration parameters.

36. The method of claim 35, wherein said configuration parameters further comprise coding mode identifiers for the different coding modes.

37. The method of claim 36, wherein said configuration parameters further comprise a number of groups parameter for signaling the number of different values of the rgroup descriptor present in all Access Units referring to the current encoding parameters.

38. The method of claim 37, wherein said configuration parameters further comprise one or more group name parameters for signaling one or more read group identifiers.

39. The method of claim 38, wherein said configuration parameters further comprise a multiple alignments flag for signaling the presence of multiple alignments in the Access Unit.

40. The method of claim 39, wherein said configuration parameters further comprise a spliced reads flag for signaling the presence of spliced reads in the Access Unit.

41. The method of claim 40, wherein said configuration parameters further comprise a multiple signature base flag for signaling the use of multiple signatures in an Access Unit containing unmapped sequence reads (Class U).

42. The method of claim 41, wherein said configuration parameters further comprise a signature size for signaling the size in bits of each integer representing an encoded signature.

43. The method of claim 42, wherein said configuration parameters further comprise a score exponent parameters for signaling the number of bits used to encode the exponent part of the multiple alignments score encoded in the mscore descriptor.

44. The method of claim 43, wherein said configuration parameters further comprise a score fractional parameter for signaling the number of bits used to encode the fractional part of the multiple alignments score encoded in the mscore descriptor.

45. A method for decoding encoded genomic data, wherein said genome sequence data comprising reads of sequences of nucleotides, said method comprising the steps of:

parsing Access Units containing said encoded genomic data to extract multiple blocks of genomic descriptors by employing header information; and
decoding said multiplicity of blocks;
wherein said decoding of multiplicity of blocks comprise decoding and de-binarizing genomic descriptors arranged in blocks of homogeneous data to extract aligned reads according to specific matching rules defining their classification with respect to one or more reference sequences.

46. The method of claim 45, wherein the said descriptors comprise:

a pos descriptor for signaling the mapping position of a read on a reference sequence;
a rcomp descriptor for signaling the DNA or RNA strand the reads was mapped on; and
mapping flags for enabling the aligner to further specify the result of the mapping process.

47. The method of claim 46 further comprising decoding the following descriptors:

mmpos for signaling the position of mismatches in aligned reads with respect to reference sequences; and
mmtype for signaling the types of mismatches with respect to reference sequences at the associated positions.

48. The method of claim 47, further comprising decoding the clips descriptor for signaling soft or hard clipped nucleotides.

49. The method of claim 48, further comprising decoding the rlen descriptor for signaling the length of each encoded sequence read.

50. The method of claim 49, further comprising decoding the following descriptors:

mmap for signaling the multiple mapping positions that are associated to a single read or read pair by the mapping procedure; and
msar for signaling the identification of the existence of spliced reads (i.e. reads that when split in chunks find mapping positions with higher degrees of matching accuracy than when they are mapped as single contiguous read mapped on a single position on a reference sequence).

51. The method of claim 50, further comprising decoding the mscore descriptor to signal a mapping/alignment score per read as generated by genomic sequence reads aligners.

52. The method of claim 51, further comprising decoding the pair descriptor to signal, in case of paired end reads, how the reads are paired.

53. The method of claim 51, further comprising decoding the ureads descriptor to signal reads which could not be aligned at any position of the reference sequence.

54. The method of claim 53, further comprising decoding the rtype descriptor used to signal the subset of descriptors used to encode sequence reads that cannot be mapped at any position of the reference sequence with specified degrees of matching accuracy.

55. The method of claim 54, further comprising decoding the rgroup descriptor to signal to which read group the read belongs to.

56. The method of claim 55, further comprising decoding the following descriptors:

rftp for signaling the position of mismatches between a contig and a reference sequence. Positions of mismatches are terminated by a special terminator character; and
rftt for signaling the type of mismatches between a contig and a reference sequence.

57. The method of claim 56, wherein said descriptors are decoded by extracting configuration parameters from a syntax header.

58. The method of claim 57, wherein said configuration parameters comprise a dataset type for signaling the type of data encoded in Access Units referring to this encoding parameters.

59. The method of claim 58, wherein said configuration parameters further comprise a reads length for signaling the length in nucleotides of sequence reads in case of constant reads length.

60. The method of claim 59, wherein said configuration parameters further comprise a quality values depth parameter for signaling the number of Quality Values associated to each coded nucleotide.

61. The method of claim 60, wherein said configuration parameters further comprise an alignment score depth for signaling the number of alignments scores associated to each coded alignment.

62. The method of claim 61, wherein said configuration parameters further comprise a terminator size for signaling the size in bytes of the terminator symbol used for the mmpos descriptor.

63. The method of claim 62, wherein said configuration parameters further comprise a terminator value for signaling the value of the terminator symbol used for the mmpos descriptor.

64. The method of claim 63, wherein said configuration parameters further comprise the number of classes for signaling the number of data classes encoded in all Access Units referring to said configuration parameters.

65. The method of claim 64, wherein said configuration parameters further comprise class identifiers to signal the identifiers associated to each data class.

66. The method of claim 65, wherein said configuration parameters further comprise the number of descriptors for signaling the total number of descriptors contained in Access Units referring to said configuration parameters.

67. The method of claim 66, wherein said configuration parameters further comprise coding mode identifiers for signaling the coding modes defined in this disclosure.

68. The method of claim 67, wherein said configuration parameters further comprise a number of groups parameter for signaling the number of different values of the rgroup descriptor present in all Access Units referring to the current encoding parameters.

69. The method of claim 68, wherein said configuration parameters further comprise one or more group name parameters for signaling one or more read group identifiers.

70. The method of claim 69, wherein said configuration parameters further comprise a multiple alignments flag for signaling the presence of multiple alignments in the Access Unit.

71. The method of claim 70, wherein said configuration parameters further comprise a spliced reads flag for signaling the presence of spliced reads in the Access Unit, with the proviso that when set to 0 no spliced reads are present.

72. The method of claim 71, wherein said configuration parameters further comprise a multiple signature base flag for signaling the use of multiple signatures in an Access Unit containing unmapped sequence reads (Class U).

73. The method of claim 72, wherein said configuration parameters further comprise a signature size for signaling the size in bits of each integer representing an encoded signature.

74. The method of claim 73, wherein said configuration parameters further comprise a score exponent parameters for signaling the number of bits used to encode the exponent part of the multiple alignments score encoded in the mscore descriptor.

75. The method of claim 74, wherein said configuration parameters further comprise a score fractional parameter for signaling the number of bits used to encode the fractional part of the multiple alignments score encoded in the mscore descriptor.

76. An encoding apparatus comprising encoding means for implementing the encoding method of claim 1.

77. A decoding apparatus comprising decoding means for implementing the decoding method of claim 45.

78. A file format comprising the genomic descriptors as in claim 13.

79. Computer program comprising instructions for executing the encoding method of claim 1.

80. Computer program comprising instructions for executing the decoding method of claim 45.

81. Storage means for storing the computer programs of claims 79 and 80.

82. Storage means for storing a file created with the encoding method of claim 1.

Patent History
Publication number: 20200051667
Type: Application
Filed: Dec 15, 2017
Publication Date: Feb 13, 2020
Inventors: Claudio ALBERTI (Petit-Lancy), Mohamed Khoso BALUCH (Chantilly, VA)
Application Number: 16/485,649
Classifications
International Classification: G16B 50/40 (20060101); G16B 45/00 (20060101); H03M 7/30 (20060101); G16B 50/30 (20060101); G16B 20/20 (20060101); G16B 20/10 (20060101); G16B 30/10 (20060101); G16B 30/20 (20060101); G16B 40/10 (20060101); G16B 50/50 (20060101);