Skip to content

Commit

Permalink
Fix DeprecationWarning
Browse files Browse the repository at this point in the history
  • Loading branch information
apriha committed Jan 24, 2022
1 parent eb6d67f commit c1c0401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lineage/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ def _load_genetic_map_1000G_GRCh37(filename):
df = pd.read_csv(
tar.extractfile(member),
compression="gzip",
sep="\s+",
sep=r"\s+",
usecols=["Position(bp)", "Rate(cM/Mb)", "Map(cM)"],
)
df = df.rename(
Expand Down

0 comments on commit c1c0401

Please sign in to comment.