00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef CGATOOLS_VARIANTS_ALLELEDIFFSEGMENT_HPP_
00016 #define CGATOOLS_VARIANTS_ALLELEDIFFSEGMENT_HPP_ 1
00017
00019
00020 #include "cgatools/core.hpp"
00021
00022 namespace cgatools { namespace variants {
00023
00028 struct AlleleDiffSegment
00029 {
00030 AlleleDiffSegment(const std::pair<uint32_t,uint32_t>& lhs,
00031 const std::pair<uint32_t,uint32_t>& rhs,
00032 const std::pair<uint32_t,uint32_t>& ref,
00033 const std::pair<uint32_t,uint32_t>& lhsCalls,
00034 const std::pair<uint32_t,uint32_t>& rhsCalls)
00035 : lhs_(lhs),
00036 rhs_(rhs),
00037 ref_(ref),
00038 lhsCalls_(lhsCalls),
00039 rhsCalls_(rhsCalls)
00040 {
00041 }
00042
00043 std::pair<uint32_t,uint32_t> lhs_;
00044 std::pair<uint32_t,uint32_t> rhs_;
00045 std::pair<uint32_t,uint32_t> ref_;
00046 std::pair<uint32_t,uint32_t> lhsCalls_;
00047 std::pair<uint32_t,uint32_t> rhsCalls_;
00048 };
00049
00050 } }
00051
00052 #endif // CGATOOLS_VARIANTS_ALLELEDIFFSEGMENT_HPP_