File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -222,8 +222,8 @@ def valid_filters_path(
222
222
callset_path : str ,
223
223
) -> str | None :
224
224
if (
225
- not Env .EXPECT_WES_FILTERS or
226
- not dataset_type .expect_filters (sample_type )
225
+ not Env .EXPECT_WES_FILTERS
226
+ or not dataset_type .expect_filters (sample_type )
227
227
or 'part_one_outputs' not in callset_path
228
228
):
229
229
return None
Original file line number Diff line number Diff line change @@ -54,8 +54,8 @@ def requires(self) -> list[luigi.Task]:
54
54
RawFileTask (self .project_pedigree_path ),
55
55
]
56
56
if (
57
- Env .CHECK_SEX_AND_RELATEDNESS and
58
- not self .skip_check_sex_and_relatedness
57
+ Env .CHECK_SEX_AND_RELATEDNESS
58
+ and not self .skip_check_sex_and_relatedness
59
59
and self .dataset_type .check_sex_and_relatedness
60
60
):
61
61
requirements = [
You can’t perform that action at this time.
0 commit comments