Skip to content

Commit

Permalink
add names to simpletypes
Browse files Browse the repository at this point in the history
  • Loading branch information
tlambert03 committed Jun 30, 2023
1 parent c002ee6 commit 04b1a6a
Showing 1 changed file with 113 additions and 0 deletions.
113 changes: 113 additions & 0 deletions src/ome_types/model/simple_types.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
from ome_types.model.ome_2016_06 import (
Binning,
Marker,
NamingConvention,
PixelType,
UnitsElectricPotential,
UnitsFrequency,
UnitsLength,
UnitsPower,
UnitsPressure,
UnitsTemperature,
UnitsTime,
)
from ome_types.model.ome_2016_06 import (
Shape_FontFamily as FontFamily,
)

__all__ = [
"PixelType",
"Binning",
"FontFamily",
"Hex40",
"LSID",
"Marker",
"Color",
"NamingConvention",
"NonNegativeFloat",
"NonNegativeInt",
"NonNegativeLong",
"PercentFraction",
"PixelType",
"PositiveFloat",
"PositiveInt",
"UnitsAngle",
"UnitsElectricPotential",
"UnitsFrequency",
"UnitsLength",
"UnitsPower",
"UnitsPressure",
"UnitsTemperature",
"UnitsTime",
"UniversallyUniqueIdentifier",
"AnnotationID",
"ChannelID",
"DatasetID",
"DetectorID",
"DichroicID",
"ExperimenterGroupID",
"ExperimenterID",
"ExperimentID",
"FilterID",
"FilterSetID",
"FolderID",
"ImageID",
"InstrumentID",
"LightSourceID",
"MicrobeamManipulationID",
"ModuleID",
"ObjectiveID",
"PixelsID",
"PlateAcquisitionID",
"PlateID",
"ProjectID",
"ReagentID",
"ROIID",
"ScreenID",
"ShapeID",
"WellID",
"WellSampleID",
]


Color = int # TODO
Hex40 = bytes
NonNegativeFloat = float
NonNegativeInt = int
NonNegativeLong = int
PercentFraction = float
PositiveFloat = float
PositiveInt = int
UnitsAngle = str
UniversallyUniqueIdentifier = str

# IDs

LSID = str
AnnotationID = str
ChannelID = str
DatasetID = str
DetectorID = str
DichroicID = str
ExperimenterGroupID = str
ExperimenterID = str
ExperimentID = str
FilterID = str
FilterSetID = str
FolderID = str
ImageID = str
InstrumentID = str
LightSourceID = str
MicrobeamManipulationID = str
ModuleID = str
ObjectiveID = str
PixelsID = str
ROIID = str
PlateAcquisitionID = str
PlateID = str
ProjectID = str
ReagentID = str
ScreenID = str
ShapeID = str
WellID = str
WellSampleID = str

0 comments on commit 04b1a6a

Please sign in to comment.