We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cb6ef5 commit 1e0dacaCopy full SHA for 1e0daca
genotype_api/services/endpoint_services/plate_service.py
@@ -85,9 +85,9 @@ def upload_plate(self, file: UploadFile) -> None:
85
new_plate: Plate = self.store.get_plate_by_plate_id(plate_id=plate_id)
86
analyses: list[Analysis] = list(excel_parser.generate_analyses(plate_id=new_plate.id))
87
self.store.check_analyses_objects(analyses=analyses, analysis_type=Types.GENOTYPE)
88
+ self.store.create_analyses_samples(analyses=analyses)
89
for analysis in analyses:
90
self.store.create_analysis(analysis=analysis)
- self.store.create_analyses_samples(analyses=analyses)
91
plate_obj.analyses = analyses
92
93
sample: Sample = self.store.get_sample_by_id(sample_id=analysis.sample_id)
0 commit comments