-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: cell type info and info panel refactor #1043
Merged
Merged
Changes from 25 commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
543642f
feat: cell type info and info panel refactor
kaloster 1fd5909
chore: Updated [rdev] values.yaml image tags to sha-543642f3
kaloster 6548442
chore: style cleanup and constants
kaloster 3ea8d5d
chore: Updated [rdev] values.yaml image tags to sha-6548442e
kaloster 0ba7d94
Merge branch 'main' into kaloster/cell-type-info
kaloster ddc0fec
fix: mypy typing
kaloster cd60fde
Merge branch 'main' into kaloster/cell-type-info
kaloster 50dae4e
fix: existing tests after refactor
kaloster 04ccae5
chore: Updated [rdev] values.yaml image tags to sha-50dae4ef
kaloster c36b9bf
chore: e2e and unit tests
kaloster da9947f
Merge branch 'main' into kaloster/cell-type-info
kaloster dc6815e
fix: error handling and tweaks
kaloster 3882bc0
chore: Updated [rdev] values.yaml image tags to sha-dc6815ed
kaloster 4f1d534
fix: some visual tweaks
kaloster 136d8c0
chore: Updated [rdev] values.yaml image tags to sha-4f1d534a
kaloster 9a210ab
fix: selected point size
kaloster d9777c1
chore: Updated [rdev] values.yaml image tags to sha-9a210aba
kaloster 23f53c6
fix: Update SDS theme font to Roboto Condensed
tihuan a6dc7df
chore: font cleanup
kaloster 3579de2
chore: Updated [rdev] values.yaml image tags to sha-a6dc7df8
kaloster cdc787e
fix: address feedback
kaloster 8857820
fix: address feedback
kaloster 6064234
chore: Updated [rdev] values.yaml image tags to sha-88578202
kaloster ba17a04
Merge branch 'main' into kaloster/cell-type-info
kaloster 4f8f19f
chore: Updated [rdev] values.yaml image tags to sha-ba17a049
kaloster 48718b8
fix: remove enum
kaloster da9ec60
Merge branch 'main' into kaloster/cell-type-info
kaloster bf4bef9
chore: update types
kaloster f3a8ba1
chore: Updated [rdev] values.yaml image tags to sha-bf4bef92
kaloster File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -143,3 +143,30 @@ export interface PublisherMetadata { | |
published_month: number; | ||
published_year: number; | ||
} | ||
|
||
export interface CellInfo { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. awesome types man! |
||
cellId: string; | ||
cellName: string; | ||
cellDescription: string; | ||
synonyms: string[]; | ||
references: string[]; | ||
error: string | null; | ||
loading: boolean; | ||
} | ||
|
||
export interface GeneInfo { | ||
gene: string | null; | ||
geneName: string; | ||
geneSummary: string; | ||
geneSynonyms: string[]; | ||
geneUrl: string; | ||
showWarningBanner: boolean; | ||
infoError: string | null; | ||
loading: boolean; | ||
} | ||
|
||
export enum ActiveTab { | ||
Gene = "Gene", | ||
Dataset = "Dataset", | ||
CellType = "CellType", | ||
} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Skipping for
pbmc3k.cxg
dataset as there is nocell_type
categoryThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great context! Can we add that as code comment please?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I added an item in the Q3 list to consolidate e2e test dataset to just hopefully one, so we don't have to deal with so many different test datasets 😆