1.2.29 • Published 13 days ago

@datagrok/dendrogram v1.2.29

Weekly downloads
-
License
-
Repository
github
Last release
13 days ago

Dendrogram

Dendrogram is a package for the Datagrok platform for phylogenetic trees visualization.

Notations

Now only the Newick tree format is supported.

Viewers

Dendrogram viewer is a pure typescript component derived from DG.JsViewer to be used as a Datagrok viewer. Exposed properties allow customizing the viewer appearance for the line width and color, the node size and fill color.

Dendrogram properties

The viewer expects a data frame with the tag '.newick' (data frame tree data tag name can be customized with the property 'newickTag') containing tree data, but also allowing to set the 'newick' property for data (the 'newick' property value has higher priority over data frame tag).

//name: Dendrogram
//language: javascript
const csv = await grok.dapi.files.readAsText("System:AppData/Dendrogram/data/tree95df.csv");
const newick = await grok.dapi.files.readAsText("System:AppData/Dendrogram/data/tree95.nwk");
const df = DG.DataFrame.fromCsv(csv);
df.setTag('.newick', newick);
const tv = grok.shell.addTableView(df);
const viewer = await df.plot.fromType('Dendrogram', {});
tv.dockManager.dock(viewer, DG.DOCK_TYPE.RIGHT); // TypeError: Cannot read properties of undefined (reading 'H')

Optimized for large trees

The Dendrogram viewer is highly optimized to render trees with hundreds of thousands of nodes.

Large tree

File handlers

Opening file with .nwk, .newick extension will be transformed to a DataFrame of nodes (node, parent, leaf, distance columns) with a DendrogramViewer docked on the right side of the grid. The dendrogram viewer interacts with the data frame on which it is opened on the column with the node names specified in the NodeColumnName property. Current state, hover, and selection are supported and displayed with specific styles in the dendrogram and data frame grid.

.nwk file handler with interactivity

Dendrogram injected to grid, hierarchical clustering

An application developer can inject Dendrogram viewer to a grid linked by row number or leaves' column name. For example Top menu function ML | Hierarchical Clustering calculates the tree on selected features/columns set with specified pairwise distance metric and aggregation method. Mouse over, current, selected and filtered states, row height are synchronized between grid and injected tree in both directions.

ML | Hierarchical Clustering

Hierarchical clustering supports numeric columns, as well as Macromolecule columns and combination of those. Different distance functions will be used depending on the type of macromolecule. Levenstein distance for DNA/RNA/Unknown, Needleman-Wunsch for Proteins and Hamming for pre-aligned columns. Distance matrix calculation is paralellized on web-workers, which yields very fast and efficient compute times. Hierarchical clustering is performed in web-assembly and supports multiple linkage methods, like ward, average, centroid, complete, single, weighted and median. For dataset of 2000 sequences, it takes less than 2 seconds to calculate the tree and render it.

ML | Hierarchical Clustering Sequences

There is also an option to close the dendrogram viewer and restore the original grid view, by clicking on the X button on the top rigth corner of the tree view.

Close dendrogram

When clustering is performed, the tree aplies its own sorting to the table. Therefore, any external sorting will not be alowed. If however, the user wants to sort the table by a specific column, the tree viewer will be hidden, and a message will be displayed to the user. From there, the user can either restore sorting and continue working with the tree, or click on the X button to close the tree and restore the original grid view.

Restore sorting

1.2.29

13 days ago

1.2.27

2 months ago

1.2.26

2 months ago

1.2.22

5 months ago

1.2.18

10 months ago

1.2.19

8 months ago

1.2.20

8 months ago

1.2.21

7 months ago

1.2.17

11 months ago

1.2.6

12 months ago

1.2.5

12 months ago

1.2.4

12 months ago

1.2.3

1 year ago

1.2.2

1 year ago

1.1.2

1 year ago

1.2.9

12 months ago

1.2.12

12 months ago

1.2.10

12 months ago

1.2.11

12 months ago

1.2.16

11 months ago

1.2.14

12 months ago

1.2.15

11 months ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago