Skip to content

Commit

Permalink
fix: off-by-one well location in seq plate .tsv download
Browse files Browse the repository at this point in the history
  • Loading branch information
alubbock committed Oct 9, 2024
1 parent 46e2d4f commit f7836d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/antigenapi/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ def download_sequencing_plate_tsv(self, request, pk, submission_idx):

well_dat.append(
f"{elisa_well.plate_id}:"
f"{PlateLocations.labels[elisa_well.location]} "
f"{PlateLocations.labels[elisa_well.location - 1]} "
f"[{elisa_well.antigen}]"
)

Expand Down

0 comments on commit f7836d1

Please sign in to comment.