Skip to content

Commit

Permalink
Fix gap pseudocount mode again
Browse files Browse the repository at this point in the history
  • Loading branch information
milot-mirdita committed Oct 18, 2021
1 parent 716fb62 commit aab640d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alignment/PSSMCalculator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ PSSMCalculator::PSSMCalculator(SubstitutionMatrix *subMat, size_t maxSeqLength,
MultiParam<PseudoCounts> pca, MultiParam<PseudoCounts> pcb, int gapOpen, int gapPseudoCount)
: subMat(subMat), ps(NULL), maxSeqLength(maxSeqLength), gapOpen(gapOpen), gapPseudoCount(gapPseudoCount), pca(pca), pcb(pcb) {

if(gapPseudoCount == Parameters::PCMODE_CONTEXT_SPECIFIC){
if (pcmode == Parameters::PCMODE_CONTEXT_SPECIFIC) {
ps = new CSProfile(maxSeqLength + 1);
}
this->maxSeqLength = maxSeqLength;
Expand Down

0 comments on commit aab640d

Please sign in to comment.