-
Notifications
You must be signed in to change notification settings - Fork 17
Iss1105 - Misc user feedback #1106
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
Conversation
| h('div.app-bar-branding', [ | ||
| h(PcLogoLink), | ||
| h('div.app-bar-title', sources.join(', ') + ' Interactions') | ||
| sources.length === 1 ? h('div.app-bar-title', `Top ${config.MAX_SIF_NODES} interactions involving ${sources[0]}`): |
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.
should we always display max sif nodes config value if there are less nodes than that? e.g. top 25 interactions between mdm2 and tp53 when there are only two actual nodes?
|
It's top 25 genes rather than interactions, right? How about something like this? n = 1 : Interactions with TP53 and the top 25 genes For n = 1, we can have up to 25 resultant genes. n >= 2 : Interactions between TP53, MDM2, and PCNA For n >= 2, we only ever return the n specified with interactions between them. |
|
An alternative for n = 1 : TP53 and its interactions with the top 25 genes |
|
This one has: n = 1: 'Interactions between TP53 and top 25 genes' |
|
You are going to have to cherry pick all of these commits to v2.0.0. Thats the release branch. |
|
Also don't merge development into v2.0.0. There is stuff in development that shouldn't go into v2.0.0. |
|
Cherry-picked this PR into v2.0.0 |
refs #1105