| 659 | void BedFile::setBed12 (bool isBed12) { this->isBed12 = isBed12; } |
| 660 | |
| 661 | void BedFile::loadBedFileIntoMap() { |
| 662 | |
| 663 | BED bedEntry; |
| 664 | |
| 665 | Open(); |
| 666 | while (GetNextBed(bedEntry)) { |
| 667 | if (_status == BED_VALID) { |
| 668 | addBEDIntoMap(bedEntry); |
| 669 | } |
| 670 | } |
| 671 | Close(); |
| 672 | } |
| 673 | |
| 674 | void BedFile::loadBedFileIntoMergedMap() { |
| 675 |
no outgoing calls
no test coverage detected