Skip to content

Commit 02f26dc

Browse files
committed
correct table import
1 parent dbeef74 commit 02f26dc

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

v03_pipeline/lib/tasks/write_imported_callset.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,7 @@
2929
class WriteImportedCallsetTask(BaseWriteTask):
3030
def complete(self) -> luigi.Target:
3131
if super().complete():
32-
mt = import_callset(
33-
self.callset_path,
34-
self.reference_genome,
35-
self.dataset_type,
36-
)
32+
mt = hl.read_matrix_table(self.output().path)
3733
# Handle case where callset was previously imported
3834
# with a different sex/relatedness flag.
3935
additional_row_fields = get_additional_row_fields(

0 commit comments

Comments
 (0)