Skip to content

Commit

Permalink
header for chromosome map
Browse files Browse the repository at this point in the history
  • Loading branch information
riasc committed Oct 28, 2024
1 parent 25f64b4 commit 3ba1d46
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions include/genogrove/Chroms.hpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#ifndef GENOGROVE_CHROMS_HPP
#define GENOGROVE_CHROMS_HPP

// Standard
#include <bitset>
#include <unordered_map>

class Chroms {
public:
Chroms();

private:
static constexpr size_t BITS = 6; // 2^6 = 64 chromosomes (should be enough for now...)
std::unordered_map<std::string, std::bitset<BITS>> chromsMap;
};

#endif //GENOGROVE_CHROMS_HPP

0 comments on commit 3ba1d46

Please sign in to comment.