Skip to content

Commit

Permalink
further fix the coordinate bug of negative strand alignments
Browse files Browse the repository at this point in the history
  • Loading branch information
baoxingsong committed Mar 3, 2024
1 parent a6100f4 commit f2cb85d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/impl/deNovoGenomeVariantCallingMultipleThreads.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,12 +441,12 @@ void genomeAlignment(std::vector<std::vector<AlignmentMatch>> &alignmentMatchsMa

if (outPutMaf) {
omaffile.open(outPutMafFile);
omaffile << "##maf version=1" << std::endl;
// omaffile << "##maf version=1" << std::endl;
}

if (outPutFraged) {
ofragfile.open(outPutFragedFile);
ofragfile << "##maf version=1" << std::endl;
// ofragfile << "##maf version=1" << std::endl;
}

int32_t size = alignmentMatchsMap.size();
Expand Down Expand Up @@ -1067,7 +1067,7 @@ void genomeAlignmentAndVariantCalling(std::map<std::string, std::vector<Alignmen
std::ofstream ofragfile;
if (outPutMaf) {
omaffile.open(outPutMafFile);
omaffile << "##maf version=1" << std::endl;
// omaffile << "##maf version=1" << std::endl;
}

time_t now = time(0);
Expand All @@ -1081,7 +1081,7 @@ void genomeAlignmentAndVariantCalling(std::map<std::string, std::vector<Alignmen

if (outPutFraged) {
ofragfile.open(outPutFragedFile);
ofragfile << "##maf version=1" << std::endl;
// ofragfile << "##maf version=1" << std::endl;
}

std::atomic_int num_runing_threads(0);
Expand Down

0 comments on commit f2cb85d

Please sign in to comment.