Skip to content

Commit

Permalink
fix: extra argument
Browse files Browse the repository at this point in the history
  • Loading branch information
d0choa committed Oct 2, 2024
1 parent 9308c4d commit 0de744e
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/gentropy/gwas_catalog_ingestion.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,6 @@ def __init__(
ancestry_lut = session.spark.read.csv(
list(catalog_ancestry_files), sep="\t", header=True
)
sumstats_lut = session.spark.read.csv(
catalog_sumstats_lut, sep="\t", header=False
)
catalog_associations = session.spark.read.csv(
catalog_associations_file, sep="\t", header=True
).persist()
Expand All @@ -71,7 +68,7 @@ def __init__(
# Transform
study_index, study_locus = GWASCatalogStudySplitter.split(
StudyIndexGWASCatalogParser.from_source(
catalog_studies, ancestry_lut, sumstats_lut
catalog_studies, ancestry_lut
).annotate_from_study_curation(gwas_catalog_study_curation),
GWASCatalogCuratedAssociationsParser.from_source(
catalog_associations, gnomad_variants
Expand Down

0 comments on commit 0de744e

Please sign in to comment.