Skip to content

Commit

Permalink
Set gap-costs back to 10 and 1
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Jul 30, 2022
1 parent 8ba3ea5 commit 8b3b56e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/workflow/EasyStructureSearch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ void setEasyStructureSearchDefaults(Parameters *p) {
p->maskProb = 0.99995;
p->sensitivity = 9.5;
p->maxResListLen = 1000;
p->gapOpen = 7;
p->gapExtend = 2;
p->gapOpen = 10;
p->gapExtend = 1;
p->alignmentMode = Parameters::ALIGNMENT_MODE_SCORE_COV_SEQID;
p->removeTmpFiles = true;
}
Expand Down
4 changes: 2 additions & 2 deletions src/workflow/StructureSearch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ void setStructureSearchWorkflowDefaults(LocalParameters *p) {
p->maskProb = 0.99995;
p->sensitivity = 9.5;
p->maxResListLen = 1000;
p->gapOpen = 7;
p->gapExtend = 2;
p->gapOpen = 10;
p->gapExtend = 1;
p->alignmentMode = Parameters::ALIGNMENT_MODE_SCORE_COV_SEQID;
p->removeTmpFiles = true;
}
Expand Down

0 comments on commit 8b3b56e

Please sign in to comment.