Skip to content

Commit

Permalink
feat: add transcript lookup for genes (#273)
Browse files Browse the repository at this point in the history
* bugfix: removing identifier in front of chromosome on auto populate

* feat: combine genomic coordinate lookup tools into one

* feat: adding lookup for all transcripts for a gene

* feat!: adding transcript lookup for genes

* feat: add transcript lookup for genes

* feat: add transcript lookup for genes

* feat: adding loading message for fetches

* feat: adding loading message during fetches

* style: removing old code

* style: remove unused import

* feat: add transcript lookup for genes

* removing unused file

* feat: add transcript lookup for genes

* feat: adding loading spinner for utilities fetches

* merge conflicts?

* feat: add transcript lookup for genes

* feat: add transcript lookup for genes

* reverting messed up commits

* removing unused imports

* style: ruff refactor

* feat: add transcript lookup feature to TxSegmentElementInput in drag and drop

* feat: clear associated inputs (strand, tx, chromosome) when user clears gene autocomplete

* add transcript

* feat: add transcript lookup to transcript segment element

* fix: styling issues with the transcript select

* update fusor version, coolseqtool version, and tests due to those updates + pydantic

* feat!: update tx segment element with updated cool-seq-tool structure changes

* fix: tx segment element bugs

* update response models

* update response models

* fix: transcript lookup

* fix docstring

* removing number type from text field

* merge recent changes + fixes

* adding comment to leave specific pydantic version

* feat: transcript lookup

* feat: tx lookup

* Update client/src/components/Utilities/GetCoordinates/GetCoordinates.tsx

Co-authored-by: Kori Kuzma <[email protected]>

* Update client/src/components/Utilities/GetCoordinates/GetCoordinates.tsx

Co-authored-by: Kori Kuzma <[email protected]>

---------

Co-authored-by: Kori Kuzma <[email protected]>
  • Loading branch information
katiestahl and korikuzma authored Sep 5, 2024
1 parent 5ad0ec1 commit fcf4891
Show file tree
Hide file tree
Showing 21 changed files with 438 additions and 309 deletions.
1 change: 1 addition & 0 deletions client/src/components/Pages/Structure/Builder/Builder.scss
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
.mid-inputs {
display: flex;
justify-content: space-between;
align-items: center;
}

.bottom-inputs {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const StaticElement: React.FC<BaseStructuralElementProps> = ({
handleDelete,
validated: true,
icon,
pendingResponse: false
pendingResponse: false,
});

export default StaticElement;
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export interface BaseStructuralElementProps {
element: ClientElementUnion;
handleDelete?: (id?: string) => void;
icon: JSX.Element;
pendingResponse?: boolean
pendingResponse?: boolean;
}

export interface StructuralElementInputProps
Expand Down
Loading

0 comments on commit fcf4891

Please sign in to comment.