Skip to content

Commit

Permalink
fix transform non-canonical sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
mhekkel committed Feb 21, 2024
1 parent 458470f commit 15a9ed5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/alphafill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ zeep::json::element alphafill(cif::datablock &db, const std::vector<PAE_matrix>
throw std::runtime_error("Invalid sequence");

seq.erase(i, j - i + 1);
i = seq.find('(', i + 1);
i = seq.find('(', i);
}
}

Expand Down

0 comments on commit 15a9ed5

Please sign in to comment.