-
Notifications
You must be signed in to change notification settings - Fork 0
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
Orthogroup tree table 1254 fixes #1259
Merged
bobular
merged 15 commits into
orthogroup-tree-table
from
orthogroup-tree-table__1254-fixes
Nov 6, 2024
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
5e04a76
new warning added, no new component, sorry
bobular bbd65ea
improved tree error warning with link to contact form
bobular 564f453
use display names in SelectList button labels
bobular 6907790
standardised search behaviour with help text
bobular 494e55d
Merge remote-tracking branch 'origin/orthogroup-tree-table' into orth…
bobular 25def36
protein filter and paged table interaction fixed
bobular 075fff3
fixed label display issue in EDA
bobular 0c382ac
Merge remote-tracking branch 'origin/orthogroup-tree-table' into orth…
bobular 997837d
target _blank
bobular 2e76120
fix import path
bobular 6b8f7f4
show table for 1 or 2 protein groups, not the error. Changes to Check…
bobular 5deced2
changes to CheckboxList/SelectList generics 2 of 2
bobular 4557b84
reset button also cancels text search
bobular 2fa75aa
error banner was showing instead of loading spinner for large groups,…
bobular 7ef7b0e
use const for min seqs in tree
bobular 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
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.
Are both comparisons necessary?
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.
Yes, I think so.
sortRows()
returns the protein table rows in tree leaf order. Proteins that are missing from the tree are an obvious problem. But the tree can also be bigger (more leaves) than the protein table (though Rich says it won't happen) - it's best to play on the safe side.Just using
mesaRows.length !== leaves?.length
won't protect against a protein table of X rows and a tree with X leaves, but where none of the proteins/leaves match each other.