Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Setting attributes should have dtype checks #2764

Open
richardjgowers opened this issue Jun 16, 2020 · 20 comments
Open

Setting attributes should have dtype checks #2764

richardjgowers opened this issue Jun 16, 2020 · 20 comments

Comments

@richardjgowers
Copy link
Member

richardjgowers commented Jun 16, 2020

Our Topology system is statically typed, each TopologyAttr (found here) should only accept one data type, e.g. atom names (here) should always be strings, resids should always be ints.

Currently setting an atom name to an integer gives "TypeError: 'int' object is not iterable"

import MDAnalysis as mda

u = mda.fetch_mmft('181l')

u.atoms[0].name = 1

This should instead fail and inform that atom names need to be strings.

Setting a Residue's resid to a float seems to work...

import MDAnalysis as mda

u = mda.fetch_mmft('181l')

u.residues[0].resid = 2.4

This probably is using the inbuilt rounding in numpy int arrays, but it should probably raise an error too.

To fix this, we could have a check_dtype decorator around TopologyAttr.set_atoms (and residue/segment) to check that the supplied values are the correct type.

@darmis007
Copy link

@richardjgowers i would like to work on this issue

@darmis007 darmis007 mentioned this issue Jun 20, 2020
4 tasks
@b-thebest
Copy link

I would like to work on this issue

@darmis007 darmis007 mentioned this issue Aug 31, 2020
4 tasks
@darmis007
Copy link

@richardjgowers sir, can you please review my Pull Request #2788 regarding this issue

@orbeckst
Copy link
Member

orbeckst commented Apr 6, 2022

@richardjgowers is this issue still relevant? Is there anything where you'd want to describe more clearly what you'd want to see so that the issue becomes suitable for the GSOC-starter label?

@richardjgowers richardjgowers added GSOC Starter outreachy-task Starter tasks for the Outreachy program labels Apr 6, 2022
@olivia632
Copy link

is this issue still open to work on

@orbeckst
Copy link
Member

I don't see an open PR referencing this issue so please feel free to open a PR. Make sure that you fill in the PR comment template properly and reference this issue.

@fortune-max
Copy link

Hello @orbeckst. I'm Fortune from the Outreachy program. I just opened a pull request for this issue.

@lilyminium
Copy link
Member

lilyminium commented Apr 23, 2022

@richardjgowers I'm not sure you can blindly enforce dtypes without also giving a preferred actual type; the dtype of string arrays is set to object, which an integer also is. Other people have also wanted to set TopologyAttrs of arbitrary type as well, so we can't assume every object is a string. The fix for strings might need to edit _StringInternerMixin._set_X to just warn or error if a non-string is given.

The TypeError raised in the initial message isn't just because the dtype is wrong, it's because the value setter assumes the given value is either a string or a list. Then no further type checking is done. Setting multiple names works fine:

>>> u.atoms[:3].names = [1, 2, 3]
>>> u.atoms[:3].names
array([1, 2, 3], dtype=object)

Tagging @fortune-max here as well as you've opened a PR for the issue :)

@richardjgowers
Copy link
Member Author

richardjgowers commented Apr 23, 2022 via email

@fortune-max
Copy link

@richardjgowers I'm not sure you can blindly enforce dtypes without also giving a preferred actual type; the dtype of string arrays is set to object, which an integer also is. Other people have also wanted to set TopologyAttrs of arbitrary type as well, so we can't assume every object is a string. The fix for strings might need to edit _StringInternerMixin._set_X to just warn or error if a non-string is given.

The TypeError raised in the initial message isn't just because the dtype is wrong, it's because the value setter assumes the given value is either a string or a list. Then no further type checking is done. Setting multiple names works fine:

>>> u.atoms[:3].names = [1, 2, 3]
>>> u.atoms[:3].names
array([1, 2, 3], dtype=object)

Tagging @fortune-max here as well as you've opened a PR for the issue :)

Okay, nice. A warning would definitely be better. What about the issue of assigning floats to ids as stated above, should that also throw a warning? @richardjgowers

@HeetVekariya
Copy link
Contributor

HeetVekariya commented Jan 1, 2024

  • @richardjgowers @lilyminium I have gone through the issue description, raised PRs, conversation and from that i understand this issue as to update the _set_X (located here) such that before setting the values we first make sure that the values are of specific type (as requirement).

  • _set_X is called from this classes:

    1. AtomStringAttr (located here)
    2. ResidueStringAttr (located here)
    3. SegmentStringAttr (located here)

My approach would be:

  • Update the _set_X function such that it will check for the required dtype (dynamically with passed dtype to the function).
def _set_X(self, ag, values, required_dtype):
        if not isinstance(values, required_dtype) and not all(isinstance(v, required_dtype) for v in values):
            raise TypeError(f"Values must be of type {required_dtype.__name__}")
  • In the above provided code we check for both multi values(i.e. list) and single values.
  • And when we call _set_X from above three classes then we pass the required dtype there like shown below.
class AtomStringAttr(_StringInternerMixin, AtomAttr):

    @_check_length
    def set_atoms(self, ag, values):
        return self._set_X(ag, values, str)
  • I understand that it is difficult for the maintainer to understand the solution from the message, but i don't want to make PR before clearly understanding the issue and guess for the solution.
  • Did i correctly understand the issue or any thing more i need to.
  • Is my solution is correct or partially correct ?
  • If you find the solution relevant can i make PR ?
  • Also do i need to write any test cases for this functionality if we proceed with methodology.

@lilyminium
Copy link
Member

@HeetVekariya you've got the string part of it very close! The overall issue here is that TopologyAttrs can have different types (which is set by the dtype property of each subclass, e.g. https://github.com/MDAnalysis/mdanalysis/blob/develop/package/MDAnalysis/core/topologyattrs.py#L540 )

When setting the attribute, we should check that the values match this dtype and raise an error if not. Right now for example, as mentioned in the top comment, setting resid to a float silently converts it to an integer, whereas we probably just want to raise an error instead. So a fix to this issue should work for all cases, i.e. in both the integer/float/etc dtypes, and the string dtypes (more on that below).

My comment (#2764 (comment)) is referencing that some TopologyAttrs (e.g. Resnames https://github.com/MDAnalysis/mdanalysis/blob/develop/package/MDAnalysis/core/topologyattrs.py#L2738 ) have dtype object, but are supposed to be strings. Checking if basically anything is an object in Python will return True, so using an isinstance check would be quite ineffective with these string types. Luckily, these string TopologyAttrs are all subclasses of _StringInternerMixin, which uses the ._set_X, so my comment was suggesting that the .set_X method be modified. Since we know that _StringInternerMixin should have strings, therefore we already know that required_dtype argument you've suggested in your solution should be a string, and it's not necessary to pass that in.

Even in the other non-string classes, required_dtype should not be necessary since each class should have a dtype property containing this information already.

Also do i need to write any test cases for this functionality if we proceed with methodology.

Yes, this change should be tested thoroughly with separate cases for different types!

@HeetVekariya
Copy link
Contributor

@lilyminium Thank you for guiding me.

  • This is the updated approach,
def _set_X(self, ag, values):
    
    # Type checking logic
    if self.dtype is object:  # Special handling for string attributes
        if not (isinstance(values, str) or all(isinstance(v, str) for v in values)):
            raise TypeError("All values must be strings for string attributes")
    else:
        # Handling for non-string attributes
        if not (isinstance(values, self.dtype) or all(isinstance(v, expected_dtype) for v in values)):
            raise TypeError(f"All values must be of type {self.dtype.__name__}")

# Remaining code of _set_X function
  • Uses class variable dtype, rather than passing argument as required_dtype
  • Object type is handled explicitly to check for string
  • Sorry for asking question like this without creating PR 🙏

Question:

  1. For all three classes mentioned above, does not contains any dtype variables in it, so how it will work ? Does dtype for that classes is defined in the inherited classes of them ?
  2. How can i test my updated code in local for these changes ?

@lilyminium
Copy link
Member

lilyminium commented Jan 3, 2024

Sorry for asking question like this without creating PR

No worries @HeetVekariya, it's better to have a clear approach and know what you want to do before creating PRs!

  1. Yes you're right, looks like we've never actually defined dtype in those classes, although subclasses do. I think any solution here can just assume that anything subclassing _StringInternerMixin should be a str. Do keep in mind that _set_X is only in the _StringInternerMixin class and all other non-string TopologyAttr classes would probably have a different solution, likely something to do with set_atoms, set_residues, set_segments etc.
  2. The user guide has a section on building a local development environment you can use to make changes, write tests, and run tests. (although looking over that now, I strongly recommend using mamba instead of conda, which can be very slow).

@HeetVekariya
Copy link
Contributor

No worries @HeetVekariya, it's better to have a clear approach and know what you want to do before creating PRs!

Thank you 🙏 😄

  • I think we should proceed with below mentioned solution as all the function call for _set_X is from the class which inherits _StringInternerMixin class.
def _set_X(self, ag, values):
        if not isinstance(values, str) and not all(isinstance(v, str) for v in values):
            raise TypeError("All values must be a string")

Question:

  1. You have mentioned set_atoms, set_residues and set_segments, i want to ask if you are talking about methods defined in the above mentioned classes ( set_atoms, set_residues, set_segments ) which makes function call to _set_X or which sets the values like set_atoms, set_residues, set_segments ?
  2. What do you think about my suggestion ?


  • If you talking about methods which makes function call _set_X then,
    • All of them are written for the classes which inherits _StringInternerMixin, so all of them would be having str dtype
    • If not str then we can pass required/expected dtype to _set_X as argument, which will handle it.
  • If i am missing something, can you please provide me information on it.

@lilyminium
Copy link
Member

lilyminium commented Jan 3, 2024

@HeetVekariya the reason I bring up set_atoms, set_residues, etc. -- this issue is about all TopologyAttrs defined in topologyattrs.py. Not all of them subclass _StringInternerMixin and not all of them have string dtypes. Therefore, while your solution where you modify _StringInternerMixin._set_X will work for the string TopologyAttrs (Atomnames, etc) and is part of the solution, it won't work for all TopologyAttrs (Resids, etc).

Perhaps the easiest way for you to see what I mean is to write some tests that currently fail, but will pass with the right solution. For example, try the examples listed in the top comment #2764 (comment). In both those cases, the code @richardjgowers has given, should produce an error. Perhaps you could use pytest.raises to write a test that expects a particular error to be raised in those scenarios. There are examples of similar tests in the testsuite, e.g. here and here.

Writing tests should pass with your solution, but currently fail, is a great first step in opening a PR as it allows you to check that you're actually fixing the right behaviours -- it's basically test driven development.

@HeetVekariya
Copy link
Contributor

  • @lilyminium So i am thinking to make [WIP] PR for this issue as it will require more work, and a PR for 2604 as it does not require much work.
  • Will you allow me for this ?
  • By doing this i might get my hands dirty in writing test cases which will be good.

@lilyminium
Copy link
Member

@HeetVekariya yes sure, go ahead.

@HeetVekariya
Copy link
Contributor

@lilyminium Hi there ! Hope you are doing well.

  • I want your help in understanding the flow of working of the code for this issue.
  • I am trying to, but not able to understand how to tackle it, so can you guide me through a small example, it would be very helpful.

Thank you for your guidance till now.

@orbeckst
Copy link
Member

@HeetVekariya as @lilyminium said above: start a PR where you write a test that fails. Then go from there. The PR can be small and doesn’t have to solve the problem. But it’s a lot easier for others to comment on existing code than to talk about solutions in theory.

You already have a number of code contributions and are more experienced. The kind of comments that you got above are typically what we would consider sufficient for a developer to get started on a problem.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
8 participants