Skip to content

Commit

Permalink
Merge pull request #21 from selfdecode/fix/fga-incorrect-build
Browse files Browse the repository at this point in the history
fix: fga build incorrectly detected
  • Loading branch information
laurentdufloux committed Mar 28, 2024
2 parents 8f86b97 + 34717d8 commit 4fa08fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snps/io/reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -1505,7 +1505,7 @@ def parse(sep):
compression=compression,
)
df["chrom"] = df["chrom"].map(CHROMOSOME_FGA)
return (df,)
return (df, False, 38) # incorrectly detects build as 37

return self.read_helper("fga", parser)

Expand Down

0 comments on commit 4fa08fc

Please sign in to comment.