File tree Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Expand file tree Collapse file tree 3 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ def src_path_fn(self) -> Callable:
55
55
ClickHouseTable .ENTRIES : new_entries_parquet_path ,
56
56
}[self ]
57
57
58
- def should_load (
58
+ def should_load ( # noqa: PLR0911
59
59
self ,
60
60
reference_genome : ReferenceGenome ,
61
61
dataset_type : DatasetType ,
Original file line number Diff line number Diff line change 15
15
from v03_pipeline .lib .tasks .exports .fields import get_variants_export_fields
16
16
from v03_pipeline .lib .tasks .exports .misc import (
17
17
camelcase_array_structexpression_fields ,
18
+ subset_sorted_transcript_consequences_fields ,
18
19
unmap_formatting_annotation_enums ,
19
20
unmap_reference_dataset_annotation_enums ,
20
21
)
26
27
UpdateVariantAnnotationsTableWithNewSamplesTask ,
27
28
)
28
29
from v03_pipeline .lib .tasks .write_new_variants_table import WriteNewVariantsTableTask
29
- from v03_pipeline .lib .tasks .exports .misc import (
30
- subset_sorted_transcript_consequences_fields ,
31
- )
32
30
33
31
34
32
@luigi .util .inherits (BaseLoadingRunParams )
Original file line number Diff line number Diff line change @@ -363,7 +363,6 @@ def test_mito_write_new_variants_parquet_test(
363
363
export_json [0 ]['sortedTranscriptConsequences' ] = [
364
364
export_json [0 ]['sortedTranscriptConsequences' ][0 ],
365
365
]
366
- print (export_json [0 ]['sortedTranscriptConsequences' ])
367
366
self .assertEqual (
368
367
export_json ,
369
368
[
@@ -418,7 +417,7 @@ def test_mito_write_new_variants_parquet_test(
418
417
'biotype' : 'Mt_tRNA' ,
419
418
'consequenceTerms' : ['non_coding_transcript_exon_variant' ],
420
419
'lofFilters' : None ,
421
- }
420
+ },
422
421
],
423
422
},
424
423
],
You can’t perform that action at this time.
0 commit comments