Skip to content

Commit

Permalink
feat: update calls to fusor and cool-seq-tool with updated params
Browse files Browse the repository at this point in the history
  • Loading branch information
katiestahl committed Aug 21, 2024
1 parent b2c6787 commit 053843e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion server/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ dependencies = [
"boto3",
"botocore",
"fusor ~= 0.2.0",
"cool-seq-tool ~= 0.5.1",
"cool-seq-tool ~= 0.7.0",
"pydantic == 2.4.2",
"gene-normalizer ~= 0.4.0",
]
Expand Down
4 changes: 2 additions & 2 deletions server/src/curfu/routers/constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def build_tx_segment_gct(
tx_segment, warnings = await request.app.state.fusor.transcript_segment_element(
tx_to_genomic_coords=False,
transcript=parse_identifier(transcript),
chromosome=parse_identifier(chromosome),
genomic_ac=parse_identifier(chromosome),
seg_start_genomic=start,
seg_end_genomic=end,
)
Expand Down Expand Up @@ -145,7 +145,7 @@ async def build_tx_segment_gcg(
tx_segment, warnings = await request.app.state.fusor.transcript_segment_element(
tx_to_genomic_coords=False,
gene=gene,
chromosome=parse_identifier(chromosome),
genomic_ac=parse_identifier(chromosome),
seg_start_genomic=start,
seg_end_genomic=end,
)
Expand Down

0 comments on commit 053843e

Please sign in to comment.