Skip to content

Commit

Permalink
Patch sequencing_started_at
Browse files Browse the repository at this point in the history
  • Loading branch information
islean committed Aug 29, 2024
1 parent a4566a2 commit 692d987
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion cg/cli/get.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,11 @@ def get_sequencing_run(context: click.Context, samples: bool, flow_cell_id: str)
sequencing_run.device.internal_id,
sequencing_run.sequencer_type,
sequencing_run.sequencer_name,
sequencing_run.sequencing_started_at.date(),
(
sequencing_run.sequencing_started_at.date()
if sequencing_run.sequencing_started_at
else "Not available"
),
sequencing_run.sequencing_completed_at.date(),
sequencing_run.archived_at.date() if sequencing_run.archived_at else "No",
sequencing_run.data_availability,
Expand Down

0 comments on commit 692d987

Please sign in to comment.