We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d55ee94 commit 7cbe2b2Copy full SHA for 7cbe2b2
1 file changed
src/murfey/util/db.py
@@ -816,13 +816,17 @@ class BFactorParameters(SQLModel, table=True): # type: ignore
816
class_number: int
817
mask_file: str
818
run: bool = True
819
+ processing_job: Optional[ProcessingJob] = Relationship(
820
+ back_populates="bfactor_parameters"
821
+ )
822
823
824
class BFactors(SQLModel, table=True): # type: ignore
825
bfactor_directory: str = Field(primary_key=True)
826
pj_id: int = Field(primary_key=True, foreign_key="processingjob.processingJobId")
827
number_of_particles: int
828
resolution: float
829
+ processing_job: Optional[ProcessingJob] = Relationship(back_populates="bfactors")
830
831
832
class MotionCorrection(SQLModel, table=True): # type: ignore
0 commit comments