lrex.AnalysisResult#
- class lrex.AnalysisResult(*args, **kwargs)#
Bases:
Registry
,IsVersioned
Analysis results.
Fields
- version CharField
Version (default
None
).Defines version of a family of records characterized by the same
stem_uid
.Consider using semantic versioning with Python versioning.
- id AutoField
Internal id, valid only in one DB instance.
- uid CharField
Universal id, valid across DB instances.
- name CharField
Name of the analysis.
- description TextField
Description of the analysis.
- transform ForeignKey
The analysis, e.g., a notebook, a script or UI interaction.
- run ForeignKey
Specific run of the analysis.
- created_at DateTimeField
Time of creation of record.
- updated_at DateTimeField
Time of last update to record.
- created_by ForeignKey
Creator of record, a
User
.
- artifacts ManyToManyField
Output artifacts of analysis.
- up_genes ManyToManyField
Up-regulated genes condensed from artifacts.
- down_genes ManyToManyField
Down-regulated genes from artifacts.
Methods