Skip to content

Commit

Permalink
feat: update variable names with cool-seq-tool updates
Browse files Browse the repository at this point in the history
  • Loading branch information
katiestahl committed Aug 20, 2024
1 parent fbe0a83 commit b2c6787
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
2 changes: 0 additions & 2 deletions client/src/components/Pages/Summary/Main/Summary.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,6 @@ export const Summary: React.FC<Props> = ({ setVisibleTab }) => {
setFormattedFusion(formattedFusion);
}, [fusion]);

console.log(formattedFusion);

return (
<>
{(!validationErrors || validationErrors.length === 0) &&
Expand Down
8 changes: 4 additions & 4 deletions server/src/curfu/routers/constructors.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ async def build_tx_segment_gct(
tx_to_genomic_coords=False,
transcript=parse_identifier(transcript),
chromosome=parse_identifier(chromosome),
genomic_start=start,
genomic_end=end,
seg_start_genomic=start,
seg_end_genomic=end,
)
return TxSegmentElementResponse(element=tx_segment, warnings=warnings)

Expand Down Expand Up @@ -146,8 +146,8 @@ async def build_tx_segment_gcg(
tx_to_genomic_coords=False,
gene=gene,
chromosome=parse_identifier(chromosome),
genomic_start=start,
genomic_end=end,
seg_start_genomic=start,
seg_end_genomic=end,
)
return TxSegmentElementResponse(element=tx_segment, warnings=warnings)

Expand Down
4 changes: 2 additions & 2 deletions server/src/curfu/routers/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ async def get_exon_coords(

response = await request.app.state.fusor.cool_seq_tool.ex_g_coords_mapper.genomic_to_tx_segment(
genomic_ac=chromosome,
genomic_start=start,
genomic_end=end,
seg_start_genomic=start,
seg_end_genomic=end,
transcript=transcript,
gene=gene,
)
Expand Down

0 comments on commit b2c6787

Please sign in to comment.