Skip to content

Commit

Permalink
Removed print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
CeSchmitz committed May 31, 2023
1 parent edd8bd3 commit e89293c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
8 changes: 3 additions & 5 deletions ISSLScoreOfftargets/ISSLScoreOfftargets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ int main(int argc, char** argv)
}
else
{
fprintf(stderr, "Invalid scoring method. Acceptable options are: 'and', 'or', 'avg', 'mit', 'cfd'", argv[0]);
fprintf(stderr, "Invalid scoring method. Acceptable options are: 'and', 'or', 'avg', 'mit', 'cfd'");
exit(1);
}

Expand Down Expand Up @@ -173,8 +173,6 @@ int main(int argc, char** argv)
/** End reading the index */
fclose(isslFp);

cout << "ISSL Index Loaded." << endl;



/** Prevent assessing an off-target site for multiple slices
Expand Down Expand Up @@ -262,13 +260,13 @@ int main(int argc, char** argv)

/** Begin scoring */
omp_set_num_threads(32);
//#pragma omp parallel
#pragma omp parallel
{
vector<uint64_t> offtargetToggles(numOfftargetToggles);
uint64_t* offtargetTogglesTail = offtargetToggles.data() + numOfftargetToggles - 1;
/** For each candidate guide */
// TODO: update to openMP > v2 (Use clang compiler)
//#pragma omp for
#pragma omp for
for (int searchIdx = 0; searchIdx < querySignatures.size(); searchIdx++) {

auto searchSignature = querySignatures[searchIdx];
Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions ISSLScoreOfftargetsMMF/ISSLScoreOfftargetsMMF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ int main(int argc, char** argv)
}
else
{
fprintf(stderr, "Invalid scoring method. Acceptable options are: 'and', 'or', 'avg', 'mit', 'cfd'", argv[0]);
fprintf(stderr, "Invalid scoring method. Acceptable options are: 'and', 'or', 'avg', 'mit', 'cfd'");
exit(1);
}

Expand Down Expand Up @@ -150,7 +150,6 @@ int main(int argc, char** argv)
listSizePtr = static_cast<const size_t*>(signaturePtr + offtargetsCount);
}

cout << "ISSL Index Loaded." << endl;



Expand Down

0 comments on commit e89293c

Please sign in to comment.