#ifndef __TRANSCRIPT_ALIGNMENTS_HPP__ #define __TRANSCRIPT_ALIGNMENTS_HPP__ #include "SalmonMath.hpp" #include class SMEMAlignment; class TranscriptAlignments { public: TranscriptAlignments() : alignments(std::vector()), totalProb(salmon::math::LOG_0) {} std::vector alignments; double totalProb; double logMassPrior; double logMassPosterior; }; #endif //__TRANSCRIPT_ALIGNMENTS_HPP__