Skip to content
Snippets Groups Projects
Commit 743f05bd authored by Aaron's avatar Aaron
Browse files

Tweaked Makefile and using GetNextAlignment() in multiBamCov.

parent 67ae0999
No related branches found
No related tags found
No related merge requests found
......@@ -77,5 +77,6 @@ all:
clean:
@echo "Cleaning up."
@rm -f $(OBJ_DIR)/* $(BIN_DIR)/*
@rm -Rf $(BT_ROOT)/lib
.PHONY: clean
......@@ -7,7 +7,7 @@ chr6 149517037
chr7 152524553
chr8 131738871
chr9 124076172
chr10 129993255
chr10 129993255
chr11 121843856
chr12 121257530
chr13 120284312
......
......@@ -70,7 +70,7 @@ void MultiCovBam::CollectCoverage()
// everything checks out, just iterate through specified region, counting alignments
vector<int> counts(_bam_files.size());
BamAlignment al;
while ( reader.GetNextAlignmentCore(al) )
while ( reader.GetNextAlignment(al) )
{
// lookup the offset of the file name and tabulate coverage
// for the appropriate file
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment