We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c06cb70 commit bf5b7beCopy full SHA for bf5b7be
v03_pipeline/lib/tasks/write_remapped_and_subsetted_callset.py
@@ -37,15 +37,12 @@ class WriteRemappedAndSubsettedCallsetTask(BaseWriteTask):
37
project_pedigree_path = luigi.Parameter()
38
39
def complete(self) -> luigi.Target:
40
- return (
41
- super().complete()
42
- and hl.eval(
43
- hl.read_matrix_table(self.output().path).globals.remap_pedigree_hash
44
- == remap_pedigree_hash(
45
- self.project_remap_path,
46
- self.project_pedigree_path,
47
- ),
48
- )
+ return super().complete() and hl.eval(
+ hl.read_matrix_table(self.output().path).globals.remap_pedigree_hash
+ == remap_pedigree_hash(
+ self.project_remap_path,
+ self.project_pedigree_path,
+ ),
49
)
50
51
def output(self) -> luigi.Target:
0 commit comments