Functions | |
double | optimalLinearFixedPoint (const double *data, size_t dataSize) |
double | optimalLinearFixedPointMass (const double *data, size_t dataSize, double mass_acc) |
size_t | encodeLinear (const double *data, const size_t dataSize, unsigned char *result, double fixedPoint) |
void | encodeLinear (const std::vector< double > &data, std::vector< unsigned char > &result, double fixedPoint) |
size_t | decodeLinear (const unsigned char *data, const size_t dataSize, double *result) |
void | decodeLinear (const std::vector< unsigned char > &data, std::vector< double > &result) |
size_t | encodeSafe (const double *data, const size_t dataSize, unsigned char *result) |
size_t | decodeSafe (const unsigned char *data, const size_t dataSize, double *result) |
size_t | encodePic (const double *data, const size_t dataSize, unsigned char *result) |
void | encodePic (const std::vector< double > &data, std::vector< unsigned char > &result) |
size_t | decodePic (const unsigned char *data, const size_t dataSize, double *result) |
void | decodePic (const std::vector< unsigned char > &data, std::vector< double > &result) |
double | optimalSlofFixedPoint (const double *data, size_t dataSize) |
size_t | encodeSlof (const double *data, const size_t dataSize, unsigned char *result, double fixedPoint) |
void | encodeSlof (const std::vector< double > &data, std::vector< unsigned char > &result, double fixedPoint) |
size_t | decodeSlof (const unsigned char *data, const size_t dataSize, double *result) |
void | decodeSlof (const std::vector< unsigned char > &data, std::vector< double > &result) |
size_t ms::numpress::MSNumpress::decodeLinear | ( | const unsigned char * | data, |
const size_t | dataSize, | ||
double * | result | ||
) |
Decodes data encoded by encodeLinear.
result vector guaranteed to be shorter or equal to (|data| - 8) * 2
Note that this method may throw a const char* if it deems the input data to be corrupt, i.e. that the last encoded int does not use the last byte in the data. In addition the last encoded int need to use either the last halfbyte, or the second last followed by a 0x0 halfbyte.
pointer to array of bytes to be decoded (need memorycont. repr.) number of bytes from *data to decode
void ms::numpress::MSNumpress::decodeLinear | ( | const std::vector< unsigned char > & | data, |
std::vector< double > & | result | ||
) |
Calls lower level decodeLinear while handling vector sizes appropriately
Note that this method may throw a const char* if it deems the input data to be corrupt, i.e.. that the last encoded int does not use the last byte in the data. In addition the last encoded int need to use either the last halfbyte, or the second last followed by a 0x0 halfbyte.
vector of bytes to be decoded
size_t ms::numpress::MSNumpress::decodePic | ( | const unsigned char * | data, |
const size_t | dataSize, | ||
double * | result | ||
) |
Decodes data encoded by encodePic
result vector guaranteed to be shorter of equal to |data| * 2
Note that this method may throw a const char* if it deems the input data to be corrupt, i.e. that the last encoded int does not use the last byte in the data. In addition the last encoded int need to use either the last halfbyte, or the second last followed by a 0x0 halfbyte.
pointer to array of bytes to be decoded (need memorycont. repr.) number of bytes from *data to decode
void ms::numpress::MSNumpress::decodePic | ( | const std::vector< unsigned char > & | data, |
std::vector< double > & | result | ||
) |
Calls lower level decodePic while handling vector sizes appropriately
Note that this method may throw a const char* if it deems the input data to be corrupt, i.e. that the last encoded int does not use the last byte in the data. In addition the last encoded int need to use either the last halfbyte, or the second last followed by a 0x0 halfbyte.
vector of bytes to be decoded
size_t ms::numpress::MSNumpress::decodeSafe | ( | const unsigned char * | data, |
const size_t | dataSize, | ||
double * | result | ||
) |
Decodes data encoded by encodeSafe.
result vector is the same size as the input data.
Might throw const char* is something goes wrong during decoding.
pointer to array of bytes to be decoded (need memorycont. repr.) number of bytes from *data to decode
size_t ms::numpress::MSNumpress::decodeSlof | ( | const unsigned char * | data, |
const size_t | dataSize, | ||
double * | result | ||
) |
Decodes data encoded by encodeSlof
The return will include exactly (|data| - 8) / 2 doubles.
Note that this method may throw a const char* if it deems the input data to be corrupt.
pointer to array of bytes to be decoded (need memorycont. repr.) number of bytes from *data to decode
void ms::numpress::MSNumpress::decodeSlof | ( | const std::vector< unsigned char > & | data, |
std::vector< double > & | result | ||
) |
Calls lower level decodeSlof while handling vector sizes appropriately
Note that this method may throw a const char* if it deems the input data to be corrupt.
vector of bytes to be decoded
size_t ms::numpress::MSNumpress::encodeLinear | ( | const double * | data, |
const size_t | dataSize, | ||
unsigned char * | result, | ||
double | fixedPoint | ||
) |
Encodes the doubles in data by first using a
The resulting binary is maximally 8 + dataSize * 5 bytes, but much less if the data is reasonably smooth on the first order.
This encoding is suitable for typical m/z or retention time binary arrays. On a test set, the encoding was empirically show to be accurate to at least 0.002 ppm.
pointer to array of double to be encoded (need memorycont. repr.) number of doubles from *data to encode
void ms::numpress::MSNumpress::encodeLinear | ( | const std::vector< double > & | data, |
std::vector< unsigned char > & | result, | ||
double | fixedPoint | ||
) |
Calls lower level encodeLinear while handling vector sizes appropriately
vector of doubles to be encoded
size_t ms::numpress::MSNumpress::encodePic | ( | const double * | data, |
const size_t | dataSize, | ||
unsigned char * | result | ||
) |
Encodes ion counts by simply rounding to the nearest 4 byte integer, and compressing each integer with encodeInt.
The handleable range is therefore 0 -> 4294967294. The resulting binary is maximally dataSize * 5 bytes, but much less if the data is close to 0 on average.
pointer to array of double to be encoded (need memorycont. repr.) number of doubles from *data to encode
void ms::numpress::MSNumpress::encodePic | ( | const std::vector< double > & | data, |
std::vector< unsigned char > & | result | ||
) |
Calls lower level encodePic while handling vector sizes appropriately
vector of doubles to be encoded
size_t ms::numpress::MSNumpress::encodeSafe | ( | const double * | data, |
const size_t | dataSize, | ||
unsigned char * | result | ||
) |
Encodes the doubles in data by storing the residuals from a linear prediction after first two values.
The resulting binary is the same size as the input data.
This encoding is suitable for typical m/z or retention time binary arrays, and is intended to be used before zlib compression to improve compression.
pointer to array of doubles to be encoded (need memorycont. repr.) number of doubles from *data to encode
size_t ms::numpress::MSNumpress::encodeSlof | ( | const double * | data, |
const size_t | dataSize, | ||
unsigned char * | result, | ||
double | fixedPoint | ||
) |
Encodes ion counts by taking the natural logarithm, and storing a fixed point representation of this. This is calculated as
unsigned short fp = log(d + 1) * fixedPoint + 0.5
the result vector is exactly |data| * 2 + 8 bytes long
pointer to array of double to be encoded (need memorycont. repr.) number of doubles from *data to encode
void ms::numpress::MSNumpress::encodeSlof | ( | const std::vector< double > & | data, |
std::vector< unsigned char > & | result, | ||
double | fixedPoint | ||
) |
Calls lower level encodeSlof while handling vector sizes appropriately
vector of doubles to be encoded
Compute the maximal linear fixed point that prevents integer overflow.
pointer to array of double to be encoded (need memorycont. repr.) number of doubles from *data to encode
double ms::numpress::MSNumpress::optimalLinearFixedPointMass | ( | const double * | data, |
size_t | dataSize, | ||
double | mass_acc | ||
) |
Compute the optimal linear fixed point with a desired m/z accuracy.
pointer to array of double to be encoded (need memorycont. repr.) number of doubles from *data to encode desired m/z accuracy in Th
OpenMS / TOPP release 2.3.0 | Documentation generated on Tue Jan 9 2018 18:22:06 using doxygen 1.8.13 |