Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions news/deprecate-addNewItem.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* No News Added: deprecate CamelCase function for addNewItem

**Changed:**

* <news item>

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>
1 change: 1 addition & 0 deletions requirements/conda.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
numpy
pycifrw
diffpy.utils
1 change: 1 addition & 0 deletions requirements/pip.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
numpy
pycifrw
diffpy.utils
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_cif.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ def _parse_atom_site_label(self, block):
if curlabel == "?":
continue
self.labelindex[curlabel] = len(self.stru)
self.stru.addNewAtom()
self.stru.add_new_atom()
a = self.stru.getLastAtom()
for fset, val in zip(prop_setters, values):
fset(a, val)
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_discus.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,7 @@ def _parse_atom(self, words):
element = words[0][0:1].upper() + words[0][1:].lower()
xyz = [float(w) for w in words[1:4]]
Biso = float(words[4])
self.stru.addNewAtom(element, xyz)
self.stru.add_new_atom(element, xyz)
a = self.stru.getLastAtom()
a.Bisoequiv = Biso
return
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def parseLines(self, lines):
# get element from the first 2 characters of name
element = line[12:14].strip()
element = element[0].upper() + element[1:].lower()
stru.addNewAtom(element, occupancy=occupancy, label=name)
stru.add_new_atom(element, occupancy=occupancy, label=name)
last_atom = stru.getLastAtom()
last_atom.xyz_cartn = rc
last_atom.Uisoequiv = uiso
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_pdffit.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def parseLines(self, lines):
element = wl1[0][0].upper() + wl1[0][1:].lower()
xyz = [float(w) for w in wl1[1:4]]
occ = float(wl1[4])
stru.addNewAtom(element, xyz=xyz, occupancy=occ)
stru.add_new_atom(element, xyz=xyz, occupancy=occ)
a = stru.getLastAtom()
p_nl += 1
wl2 = next(ilines).split()
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_rawxyz.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def parseLines(self, lines):
xyz = [float(f) for f in fields[x_idx : x_idx + 3]]
if len(xyz) == 2:
xyz.append(0.0)
stru.addNewAtom(element, xyz=xyz)
stru.add_new_atom(element, xyz=xyz)
except ValueError:
emsg = "%d: invalid number" % p_nl
exc_type, exc_value, exc_traceback = sys.exc_info()
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_xcfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ def parseLines(self, lines):
elif len(words) == xcfg_entry_count and p_element is not None:
fields = [float(w) for w in words]
xyz = [xcfg_A * xi for xi in fields[:3]]
stru.addNewAtom(p_element, xyz=xyz)
stru.add_new_atom(p_element, xyz=xyz)
a = stru[-1]
_assign_auxiliaries(
a,
Expand Down
2 changes: 1 addition & 1 deletion src/diffpy/structure/parsers/p_xyz.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def parseLines(self, lines):
element = fields[0]
element = element[0].upper() + element[1:].lower()
xyz = [float(f) for f in fields[1:4]]
stru.addNewAtom(element, xyz=xyz)
stru.add_new_atom(element, xyz=xyz)
except ValueError:
exc_type, exc_value, exc_traceback = sys.exc_info()
emsg = "%d: invalid number format" % p_nl
Expand Down
20 changes: 20 additions & 0 deletions src/diffpy/structure/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,19 @@
from diffpy.structure.atom import Atom
from diffpy.structure.lattice import Lattice
from diffpy.structure.utils import _linkAtomAttribute, atomBareSymbol, isiterable
from diffpy.utils._deprecator import build_deprecation_message, deprecated

# ----------------------------------------------------------------------------

base = "diffpy.structure.Structure"
removal_version = "4.0.0"
addNewAtom_deprecation_msg = build_deprecation_message(
base,
"addNewAtom",
"add_new_atom",
removal_version,
)


class Structure(list):
"""Define group of atoms in a specified lattice. Structure --> group
Expand Down Expand Up @@ -145,7 +155,17 @@ def __str__(self):
s_atoms = "\n".join([str(a) for a in self])
return s_lattice + "\n" + s_atoms

@deprecated(addNewAtom_deprecation_msg)
def addNewAtom(self, *args, **kwargs):
"""This function has been deprecated and will be removed in
version 4.0.0.

Please use diffpy.structure.Structure.add_new_atom instead.
"""
self.add_new_atom(*args, **kwargs)
return

def add_new_atom(self, *args, **kwargs):
"""Add new `Atom` instance to the end of this `Structure`.

Parameters
Expand Down
35 changes: 35 additions & 0 deletions tests/test_structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,41 @@ def test___copy__(self):
# """check Structure.getLastAtom()"""
# return

def test_add_new_atom(self):
"""Check Structure.add_new_item()"""
# Case: We initialize a Structure object, after calling
# add_new_item method, we check whether length of Structure
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is describing the test, but remember the test tests behavior so we want to describe the behavior we want. This would be better as something like

Case 1: valid atom added to an empty structure.  Expect the atom list length to go from 0 to 1.  Expect the atom attributes are successfully loaded.

Then we will likely need

Case 2: valid atom added to exissting atom list. Expect ....

and

Case 3: duplicate atom added to existing atom list.  Expect ....

and some behaviors for invalid atoms maybe, if we can think of tests that don't take too long to write.

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not quite sure about the physical perspective here. Do we allow duplicated atom into the atom list (for Case 3)? If not then we might expect an error and give the user some message about it.

Copy link
Copy Markdown
Contributor Author

@stevenhua0320 stevenhua0320 Feb 20, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@sbillinge ready for review. Note that from my bad physical perspective what I can think of is we should not allow a same atom at the same position in the space. So, I add the case 3 in the test, refining the original function here.

# object is added by 1. Moreover, we check added Atom's attributes
# are properly loaded into Structure object.
s_lat = Lattice()
structure = Structure(lattice=s_lat)

length = len(structure)
structure.add_new_atom(atype="C", xyz=[0.1, 0.2, 0.3])
expected = len(structure) # length of structure should add by 1
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove comment. this is handled in the comment at the top. Is this LLM code? OK, to get help from an LLM if it is, but I want you in charge, so you are responsible for what is happening and not the chatbot.

actual = length + 1
assert expected == actual
atom_object = structure[-1]
assert atom_object.element == "C"
assert numpy.allclose(atom_object.xyz, [0.1, 0.2, 0.3])

def test_addNewAtom(self):
"""Duplicate test for the deprecated addNewAtom method.

Remove this test in version 4.0.0
"""
s_lat = Lattice()
structure = Structure(lattice=s_lat)

length = len(structure)
structure.addNewAtom(atype="C", xyz=[0.1, 0.2, 0.3])
expected = len(structure)
actual = length + 1
assert expected == actual
atom_object = structure[-1]
assert atom_object.element == "C"
assert numpy.allclose(atom_object.xyz, [0.1, 0.2, 0.3])

def test_assignUniqueLabels(self):
"""Check Structure.assignUniqueLabels()"""
self.assertEqual("", "".join([a.label for a in self.stru]))
Expand Down
Loading