| 24 | using namespace std ; |
| 25 | |
| 26 | ChrDensity::ChrDensity(int length) |
| 27 | { |
| 28 | length_ = length; |
| 29 | coverage_ = vector <int>(length,0); |
| 30 | |
| 31 | //coverage_.resize(length); |
| 32 | } |
| 33 | |
| 34 | int ChrDensity::getLength() { |
| 35 | return this->length_; |
nothing calls this directly
no outgoing calls
no test coverage detected