Skip to content

Commit

Permalink
fix: schema fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xyg123 committed Nov 22, 2024
1 parent 42e4ce9 commit 55f947f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/gentropy/assets/schemas/intervals.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"metadata": {},
"name": "geneId",
"nullable": false,
"nullable": true,
"type": "string"
},
{
Expand Down
3 changes: 2 additions & 1 deletion src/gentropy/dataset/intervals.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ def overlap_variant_index(
],
how="inner",
)
.drop("start", "end", "vi_chromosome", "position")
.drop("vi_chromosome", "position")
# .drop("start", "end", "vi_chromosome", "position")
),
_schema=Intervals.get_schema(),
)

0 comments on commit 55f947f

Please sign in to comment.