Skip to content

Commit

Permalink
snake case
Browse files Browse the repository at this point in the history
  • Loading branch information
gsfk committed Oct 18, 2024
1 parent 3d0697b commit b833883
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bento_beacon/utils/reference.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import requests


def gene_position_lookup(geneId: str, assemblyId: str) -> dict[str, str | int | None]:
reference_url = current_app.config["REFERENCE_URL"] + f"/genomes/{assemblyId}/features?name={geneId}"
def gene_position_lookup(gene_id: str, assembly_id: str) -> dict[str, str | int | None]:
reference_url = current_app.config["REFERENCE_URL"] + f"/genomes/{assembly_id}/features?name={gene_id}"
try:
r = requests.get(
reference_url,
Expand Down

0 comments on commit b833883

Please sign in to comment.