| 24 | using namespace std ; |
| 25 | |
| 26 | EntryCNV::EntryCNV(string chr, int start, int end, int startCoord, int endCoord, int copyNumber) { |
| 27 | chr_ = chr; |
| 28 | start_ = start; |
| 29 | end_ = end; |
| 30 | startCoord_ = startCoord; |
| 31 | endCoord_ = endCoord; |
| 32 | copyNumber_ = copyNumber; |
| 33 | estimatedBAFuncertainty_ = NA; |
| 34 | medianBAFSymbol_ = ""; |
| 35 | type_=""; |
| 36 | isBAFassessed_=0; |
| 37 | } |
| 38 | |
| 39 | EntryCNV::EntryCNV(string chr, int start, int end, int startCoord, int endCoord, int copyNumber,float estimatedBAFuncertainty, std::string medianBAFSymbol, bool hasBAF) { |
| 40 | chr_ = chr; |
nothing calls this directly
no outgoing calls
no test coverage detected