Skip to content

Commit

Permalink
fixing referencing of sequencing group attributes when upserting assay
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-harper committed Jan 18, 2024
1 parent 4df08e1 commit 2f66f18
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions scripts/add_nagim_gvcfs_to_tob_wgs_test_metamist.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,13 +155,9 @@ def main(project: str, project_id: int, sample_path_mappings: str, suffix: str):
AssayUpsert(
type=sg['type'],
meta={
'sequencing_type': sg['assays'][0]['meta'][
'sequencing_type'
],
'sequencing_platform': sg['assays'][0]['meta'][
'sequencing_platform'
],
'sequencing_technology': sg['assays'][0]['meta'][
'sequencing_type': sg['sequencing_type'],
'sequencing_platform': sg['sequencing_platform'],
'sequencing_technology': sg[
'sequencing_technology'
],
},
Expand Down

0 comments on commit 2f66f18

Please sign in to comment.