Skip to content

Commit

Permalink
API update
Browse files Browse the repository at this point in the history
  • Loading branch information
sdRDM Bot authored and sdRDM Bot committed May 13, 2024
1 parent 5a065b3 commit 7436209
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 24 deletions.
2 changes: 1 addition & 1 deletion FAIRFlowChemistry/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

__URL__ = "https://github.com/FAIRChemistry/FAIRFlowChemistry"
__COMMIT__ = "2db1d881b230dff78178a78a2360339d1bc95946"
__COMMIT__ = "5a065b3f0e832157cb4ab18d031b5495744fc831"
2 changes: 1 addition & 1 deletion FAIRFlowChemistry/core/calibration.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class Calibration(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
4 changes: 2 additions & 2 deletions FAIRFlowChemistry/core/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from sdRDM.base.listplus import ListPlus
from sdRDM.base.utils import forge_signature
from sdRDM.tools.utils import elem2dict
from .componenttype import ComponentType
from .genericattibute import GenericAttibute
from .componenttype import ComponentType


@forge_signature
Expand Down Expand Up @@ -81,7 +81,7 @@ class Component(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
2 changes: 1 addition & 1 deletion FAIRFlowChemistry/core/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class Data(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
4 changes: 2 additions & 2 deletions FAIRFlowChemistry/core/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class GeneralInformation(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down Expand Up @@ -85,7 +85,7 @@ class Dataset(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
14 changes: 7 additions & 7 deletions FAIRFlowChemistry/core/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@
from sdRDM.base.listplus import ListPlus
from sdRDM.base.utils import forge_signature
from sdRDM.tools.utils import elem2dict
from .plantsetup import PlantSetup
from .measurement import Measurement
from .calibration import Calibration
from .speciesdata import SpeciesData
from .data import Data
from .metadata import Metadata
from .component import Component
from .datatype import DataType
from .quantity import Quantity
from .plantsetup import PlantSetup
from .measurementtype import MeasurementType
from .speciesdata import SpeciesData
from .calibration import Calibration
from .measurement import Measurement
from .quantity import Quantity
from .metadata import Metadata


@forge_signature
Expand Down Expand Up @@ -59,7 +59,7 @@ class Experiment(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
2 changes: 1 addition & 1 deletion FAIRFlowChemistry/core/genericattibute.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class GenericAttibute(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
6 changes: 3 additions & 3 deletions FAIRFlowChemistry/core/measurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
from sdRDM.tools.utils import elem2dict
from datetime import datetime as Datetime
from .data import Data
from .metadata import Metadata
from .component import Component
from .datatype import DataType
from .quantity import Quantity
from .measurementtype import MeasurementType
from .quantity import Quantity
from .metadata import Metadata


@forge_signature
Expand Down Expand Up @@ -60,7 +60,7 @@ class Measurement(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
2 changes: 1 addition & 1 deletion FAIRFlowChemistry/core/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class Metadata(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
2 changes: 1 addition & 1 deletion FAIRFlowChemistry/core/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Parameter(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
4 changes: 2 additions & 2 deletions FAIRFlowChemistry/core/plantsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
from sdRDM.base.listplus import ListPlus
from sdRDM.base.utils import forge_signature
from sdRDM.tools.utils import elem2dict
from .componenttype import ComponentType
from .component import Component
from .genericattibute import GenericAttibute
from .componenttype import ComponentType


@forge_signature
Expand Down Expand Up @@ -50,7 +50,7 @@ class PlantSetup(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
4 changes: 2 additions & 2 deletions FAIRFlowChemistry/core/speciesdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
from sdRDM.base.listplus import ListPlus
from sdRDM.base.utils import forge_signature
from sdRDM.tools.utils import elem2dict
from .data import Data
from .calibration import Calibration
from .data import Data


@forge_signature
Expand Down Expand Up @@ -68,7 +68,7 @@ class SpeciesData(sdRDM.DataModel, search_mode="unordered"):
default="https://github.com/FAIRChemistry/FAIRFlowChemistry"
)
_commit: Optional[str] = PrivateAttr(
default="2db1d881b230dff78178a78a2360339d1bc95946"
default="5a065b3f0e832157cb4ab18d031b5495744fc831"
)
_raw_xml_data: Dict = PrivateAttr(default_factory=dict)

Expand Down
1 change: 1 addition & 0 deletions FAIRFlowChemistry/schemes/fairflowchemistry_schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ classDiagram
+PEAKAREAPERCENTAGE
+PEAKASSIGNMENT
+FARADAYEFFIECENCY
+SIGNAL
}
class MeasurementType {
Expand Down

0 comments on commit 7436209

Please sign in to comment.