Skip to content

Commit

Permalink
bufix
Browse files Browse the repository at this point in the history
  • Loading branch information
thsa committed Dec 4, 2024
1 parent 9722365 commit 639642d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ private int[] getPreviousResidue(int atom, boolean[] atomUsed) {
int atomN = mMol.getConnAtom(atomCA, k);
if (!atomUsed[atomN] && mMol.getAtomicNo(atomN) == 7) {
int[] residueAtom = new int[4];
residueAtom[ATOM_TYPE_N] = atom;
residueAtom[ATOM_TYPE_N] = atomN;
residueAtom[ATOM_TYPE_CA] = atomCA;
residueAtom[ATOM_TYPE_C] = atomC;
residueAtom[ATOM_TYPE_O] = atomO;
Expand Down

0 comments on commit 639642d

Please sign in to comment.