Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rxu17 committed Jan 24, 2024
1 parent 7b6c2b3 commit e0d7417
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions genie/database_to_staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
"n_depth": "float",
"t_depth": "float",
"mutationInCis_Flag": "boolean",
"Annotation_Status": "string"
"Annotation_Status": "string",
}


Expand Down Expand Up @@ -840,12 +840,13 @@ def store_maf_files(
configured_mafdf = configure_maf(
mafchunk, remove_mafinbed_variants, flagged_mutationInCis_variants
)
configured_mafdf = configured_mafdf[list(FULL_MAF_RELEASE_SCHEMA.keys())]
configured_mafdf = configured_mafdf[
list(FULL_MAF_RELEASE_SCHEMA.keys())
]
# Create maf for release
merged_mafdf = remove_maf_samples(
configured_mafdf, keep_for_merged_consortium_samples
)

append_or_create_release_maf(merged_mafdf, mutations_path)
# Create maf for center staging
center_mafdf = remove_maf_samples(
Expand Down

0 comments on commit e0d7417

Please sign in to comment.