Skip to content

Commit 106cf82

Browse files
committed
lint
1 parent 458376b commit 106cf82

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

genie/database_to_staging.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ def filter_out_germline_variants(
686686
input_data: pd.DataFrame, status_col_str: str
687687
) -> pd.DataFrame:
688688
"""Filters out germline variants given a status col str. Genie pipeline
689-
cannot have any of these variants. NOTE: We have to search for the
689+
cannot have any of these variants. NOTE: We have to search for the
690690
status column because there's no column name validation in the release
691691
steps so the status column may have different casing.
692692

tests/test_database_to_staging.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,12 @@ def test_store_assay_info_files(syn):
142142
),
143143
(
144144
pd.DataFrame(
145-
dict(SV_Status=["GERMLINE", "SOMATIC"], Sample_ID=["GENIE-1", "GENIE-2"])
145+
dict(
146+
SV_Status=["GERMLINE", "SOMATIC"], Sample_ID=["GENIE-1", "GENIE-2"]
147+
)
146148
),
147149
"SV_STATUS",
148-
pd.DataFrame(
149-
dict(SV_Status=["SOMATIC"], Sample_ID=["GENIE-2"])
150-
),
150+
pd.DataFrame(dict(SV_Status=["SOMATIC"], Sample_ID=["GENIE-2"])),
151151
),
152152
],
153153
ids=["all_germline", "some_germline", "no_germline", "diff_status_col_case"],

0 commit comments

Comments
 (0)