@datagrok/bio 1.0.5 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,3 +1,46 @@
1
1
  # Bio
2
2
 
3
3
  Bio is a [package](https://datagrok.ai/help/develop/develop#packages) for the [Datagrok](https://datagrok.ai) platform.
4
+
5
+ # Web Logo
6
+
7
+ Web Logo is used to visualize a graphical representation of multiple sequence alignment (amino acids or
8
+ nucleotides). Each logo consists of stacks of symbols, one stack for each position in the sequence.
9
+ The overall height of the stack indicates the sequence conservation at that position,
10
+ while the height of symbols within the stack indicates the relative frequency of each amino at that position.
11
+
12
+ In general, a sequence logo provides a richer and more precise description of, for example, a binding site,
13
+ than would a consensus sequence.
14
+
15
+ You must specify the tag ```semType``` with value ```AminoacidsMultipleAlignment``` or
16
+ ```NucleotidesMultipleAlignment``` for the data column with multiple alignment sequences, it is mandatory to
17
+ select the palette for monomers' colors.
18
+
19
+ You can customize the look of the viewer with properties. Properties ```startPosition``` and ```endPosition```)
20
+ allow to display multiple alignment partially. If property ```startPosition``` (```endPosition```)
21
+ is not specified, then the Logo will be plotted from the first (till the last) position of sequences.
22
+
23
+ ## General
24
+
25
+ | | |
26
+ |-------------|--------------|
27
+ | Right click | Context menu |
28
+
29
+ ## Properties
30
+
31
+ | Property name | Default | Description |
32
+ |----------------------|---------|------------------------------------------------------|
33
+ | positionWidth | 16 | Width of one position stack [px] |
34
+ | minHeight | 50 | Minimum height of Logo [px] |
35
+ | maxHeight | 100 | Maximum height of Logo [px] |
36
+ | considerNullSequence | false | Should logo consider null seqences of data |
37
+ | sequenceColumnName | null | source of multiple alignment sequences (column name) |
38
+ | startPositionName | null | name of the first position to display Logo partially |
39
+ | endPositionName | null | name of the last position to display Logo partially |
40
+
41
+ ![Web Logo](./web-logo-properties.gif "Web Logo")
42
+
43
+ See also:
44
+
45
+ * [Viewers](../viewers.md)
46
+ * [Table view](../../overview/table-view.md)