You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Trait tab is displaying the Trait names, but no datasets are displayed within the traits when the traits are expanded.
This means that users are not able to select datasets:chromosomes to view based on the traits of the features in the datasets.
This display was OK in earlier releases.
Investigation and Estimation
After an initial investigation, the problem is localised to a library used by the Dataset Explorer, and this narrows down the estimated effort to fix the issue to 2-8H.
The text was updated successfully, but these errors were encountered:
... this was broken by #370 which included d3 update; b7e2ae2 converted
from d3.nest() to d3.group(), but additional changes were required.
d3.nest() result is [{key, values}, ..]
d3.group() result is Map key->value
(related note in manage-explorer.js : parentAndScope()).
Instead of maintaining the nested structure, this commit changes nested to grouped.
Closes#454
grouping.js :
in blocksParentAndScope2() and throughout : rename nested to grouped,
including these 2 function names :
fromNestedMulti() -> fromGroupedMulti()
fromNestedParentAndScope() -> fromGroupedParentAndScope()
fromGroupedMulti() :
change recursion check to : values instanceof Map.
if (typeof values !== object) don't call levelMeta.set(values ) (WeakMap.set() only valid for object value).
Description
The Trait tab is displaying the Trait names, but no datasets are displayed within the traits when the traits are expanded.
This means that users are not able to select datasets:chromosomes to view based on the traits of the features in the datasets.
This display was OK in earlier releases.
Investigation and Estimation
After an initial investigation, the problem is localised to a library used by the Dataset Explorer, and this narrows down the estimated effort to fix the issue to 2-8H.
The text was updated successfully, but these errors were encountered: