MCPcopy Create free account
hub / github.com/arq5x/bedtools2 / loadBedFileIntoMergedMap

Method loadBedFileIntoMergedMap

src/utils/bedFile/bedFile.cpp:674–685  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

672}
673
674void BedFile::loadBedFileIntoMergedMap() {
675
676 BED bedEntry;
677
678 Open();
679 while (GetNextMergedBed(bedEntry)) {
680 if (_status == BED_VALID) {
681 addBEDIntoMap(bedEntry);
682 }
683 }
684 Close();
685}
686
687void BedFile::addBEDIntoMap(BED bedEntry) {
688 BIN bin = getBin(bedEntry.start, bedEntry.end);

Callers 1

initMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected