#ifndef __SALMON_MAPPING_STATISTICS__ #define __SALMON_MAPPING_STATISTICS__ #include // class to collect statistics we may want about mapping / alignment class MappingStatistics { public: std::atomic numOrphansRescued{0}; // The number of mappings that were filtered due to alignment score std::atomic numMappingsFiltered{0}; std::atomic numFragmentsFiltered{0}; std::atomic numDecoyFragments{0}; std::atomic numDovetails{0}; }; #endif // __SALMON_MAPPING_STATISTICS__