Update dependencies and improve Python path handling
Updated several frontend dependencies including MUI packages and added new ones like `@mui/x-charts`. Adjusted the Python path setup in the CI configuration to correctly point to the `aaredb` backend, ensuring accurate module resolution.
This commit is contained in:
@ -363,6 +363,11 @@ class SampleEventResponse(SampleEventCreate):
|
||||
from_attributes = True
|
||||
|
||||
|
||||
class CurvePoint(BaseModel):
|
||||
resolution: float
|
||||
value: float
|
||||
|
||||
|
||||
class Results(BaseModel):
|
||||
pipeline: str
|
||||
resolution: float
|
||||
@ -371,8 +376,8 @@ class Results(BaseModel):
|
||||
rmerge: float
|
||||
rmeas: float
|
||||
isig: float
|
||||
cc: float
|
||||
cchalf: float
|
||||
cc: List[CurvePoint]
|
||||
cchalf: List[CurvePoint]
|
||||
completeness: float
|
||||
multiplicity: float
|
||||
nobs: int
|
||||
|
Reference in New Issue
Block a user