Skip to content

Commit

Permalink
Change reference to 'sequence' to 'assay'
Browse files Browse the repository at this point in the history
  • Loading branch information
EddieLF committed Feb 1, 2024
1 parent f4e37af commit bfb8d9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions metamist/parser/generic_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -739,15 +739,15 @@ def prepare_message(
for sg in sequencing_groups:
sequencing_group_counts[str(sg.sequencing_type)] += 1

str_seq_count = ', '.join(f'{k}={v}' for k, v in assays_count.items())
str_assay_count = ', '.join(f'{k}={v}' for k, v in assays_count.items())
str_seqg_count = ', '.join(
f'{k}={v}' for k, v in sequencing_group_counts.items()
)

message = f"""\
{self.project}: {header}
Assays count: {str_seq_count}
Assays count: {str_assay_count}
Sequencing group count: {str_seqg_count}
Adding {summary['participants']['insert']} participants
Expand Down

0 comments on commit bfb8d9d

Please sign in to comment.