Skip to content

Commit

Permalink
Change to replace entrezID with gene/accession in CNV bedfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
g-pyxl committed Feb 20, 2025
1 parent 7a41b56 commit 347ac2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/bed_generator/bed_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class BedGenerator:
},
'cnv': {
'fields': [
lambda r, _: str(r['entrez_id'])
lambda r, _: f"{r['gene']};{r['accession']}"
]
}
}
Expand Down

0 comments on commit 347ac2f

Please sign in to comment.