| 24 | using namespace std ; |
| 25 | |
| 26 | ChrCopyNumber::ChrCopyNumber(void) |
| 27 | { |
| 28 | isMedianCalculated_ = false; |
| 29 | isSmoothed_ = false; |
| 30 | normalContamination_=0; |
| 31 | } |
| 32 | |
| 33 | ChrCopyNumber::ChrCopyNumber(std::string const& chrName) { |
| 34 | chromosome_ = chrName; |
nothing calls this directly
no test coverage detected