Skip to content

Commit 7796513

Browse files
committed
Merge branch 'dev' of github.com:broadinstitute/seqr-loading-pipelines into dev
2 parents 4aa8689 + 04b7788 commit 7796513

6 files changed

+11
-0
lines changed

v03_pipeline/lib/tasks/base/base_update_lookup_table.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,6 @@ def initialize_table(self) -> hl.Table:
4646
remap_pedigree_hash=hl.tint32,
4747
),
4848
),
49+
migrations=hl.empty_array(hl.tstr),
4950
),
5051
)

v03_pipeline/lib/tasks/update_lookup_table.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,6 @@ def update_table(self, ht: hl.Table) -> hl.Table:
115115
),
116116
),
117117
),
118+
migrations=ht.migrations,
118119
)
119120
return ht

v03_pipeline/lib/tasks/update_lookup_table_test.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def test_skip_update_lookup_table_task(self) -> None:
5151
),
5252
),
5353
},
54+
migrations=[],
5455
),
5556
],
5657
)
@@ -89,6 +90,7 @@ def test_update_lookup_table_task(self) -> None:
8990
),
9091
),
9192
},
93+
migrations=[],
9294
),
9395
],
9496
)

v03_pipeline/lib/tasks/update_lookup_table_with_deleted_families_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ def test_delete_project_empty_table(
3333
project_sample_types=[],
3434
project_families={},
3535
updates=set(),
36+
migrations=[],
3637
),
3738
],
3839
)
@@ -137,6 +138,7 @@ def test_delete_project(
137138
remap_pedigree_hash=123,
138139
),
139140
},
141+
migrations=hl.empty_array(hl.tstr),
140142
),
141143
)
142144
worker = luigi.worker.Worker()
@@ -172,6 +174,7 @@ def test_delete_project(
172174
remap_pedigree_hash=123,
173175
),
174176
},
177+
migrations=[],
175178
),
176179
],
177180
)

v03_pipeline/lib/tasks/update_lookup_table_with_deleted_project_test.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def test_delete_project_empty_table(
3232
project_sample_types=[],
3333
project_families={},
3434
updates=set(),
35+
migrations=[],
3536
),
3637
],
3738
)
@@ -136,6 +137,7 @@ def test_delete_project(
136137
remap_pedigree_hash=123,
137138
),
138139
},
140+
migrations=hl.empty_array(hl.tstr),
139141
),
140142
)
141143
worker = luigi.worker.Worker()
@@ -162,6 +164,7 @@ def test_delete_project(
162164
remap_pedigree_hash=123,
163165
),
164166
},
167+
migrations=[],
165168
),
166169
],
167170
)

v03_pipeline/lib/tasks/update_variant_annotations_table_with_deleted_project_test.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ def setUp(self) -> None:
107107
remap_pedigree_hash=123,
108108
),
109109
},
110+
migrations=hl.empty_array(hl.tstr),
110111
),
111112
)
112113
ht.write(

0 commit comments

Comments
 (0)