| 24 | using namespace std ; |
| 25 | |
| 26 | GenomeCopyNumber::GenomeCopyNumber(void) |
| 27 | { |
| 28 | ploidy_ = NA; |
| 29 | step_=NA; |
| 30 | hasBAF_=0; |
| 31 | ifUsedControl_ = false; |
| 32 | normalContamination_=0; |
| 33 | sex_=""; |
| 34 | SeekingSubc_ = false; |
| 35 | isMappUsed_=false; |
| 36 | totalNumberOfPairs_=0; |
| 37 | normalNumberOfPairs_=0; |
| 38 | } |
| 39 | |
| 40 | bool GenomeCopyNumber::isMappUsed() {return isMappUsed_;} |
| 41 |
nothing calls this directly
no outgoing calls
no test coverage detected