You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
426 B

  1. class InvalidVersionError(Exception):
  2. """
  3. We don't know how to parse the version of ND2 that we were given.
  4. """
  5. pass
  6. class NoImageError(Exception):
  7. """
  8. Some apparent images in ND2s are just completely blank placeholders. These are used when the number of images per
  9. cycle are unequal (e.g. if you take fluorescent images every 2 minutes, and bright field images every minute).
  10. """
  11. pass