@datagrok/bio 2.4.9 → 2.4.10
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/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/package.ts +15 -11
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Leonid Stolbov",
|
|
6
6
|
"email": "lstolbov@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.4.
|
|
8
|
+
"version": "2.4.10",
|
|
9
9
|
"description": "Bioinformatics support (import/export of sequences, conversion, visualization, analysis). [See more](https://github.com/datagrok-ai/public/blob/master/packages/Bio/README.md) for details.",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
package/src/package.ts
CHANGED
|
@@ -758,30 +758,34 @@ export function bioSubstructureFilter(): BioSubstructureFilter {
|
|
|
758
758
|
|
|
759
759
|
// -- Demo --
|
|
760
760
|
|
|
761
|
-
//
|
|
762
|
-
//
|
|
761
|
+
// demoBio01
|
|
762
|
+
//name: demoBioSimilarityDiversity
|
|
763
|
+
//meta.demoPath: Bioinformatics | Similarity, Diversity
|
|
763
764
|
//description:
|
|
764
|
-
export async function
|
|
765
|
+
export async function demoBioSimilarityDiversity(): Promise<void> {
|
|
765
766
|
await demoBio01UI('func/Bio.demoBio01');
|
|
766
767
|
}
|
|
767
768
|
|
|
768
|
-
//
|
|
769
|
-
//
|
|
769
|
+
// demoBio01a
|
|
770
|
+
//name:demoBioSequenceSpace
|
|
771
|
+
//meta.demoPath: Bioinformatics | Sequence Space
|
|
770
772
|
//description:
|
|
771
|
-
export async function
|
|
773
|
+
export async function demoBioSequenceSpace(): Promise<void> {
|
|
772
774
|
await demoBio01aUI('func/Bio.demoBio01a');
|
|
773
775
|
}
|
|
774
776
|
|
|
775
|
-
//
|
|
776
|
-
//
|
|
777
|
+
// demoBio01b
|
|
778
|
+
//name: demoBioActivityCliffs
|
|
779
|
+
//meta.demoPath: Bioinformatics | Activity Cliffs
|
|
777
780
|
//description:
|
|
778
|
-
export async function
|
|
781
|
+
export async function demoBioActivityCliffs(): Promise<void> {
|
|
779
782
|
await demoBio01bUI('func/Bio.demoBio01b');
|
|
780
783
|
}
|
|
781
784
|
|
|
782
|
-
//
|
|
785
|
+
// demoBio05
|
|
786
|
+
//name: demoBioHelmMsaSequenceSpace
|
|
783
787
|
//meta.demoPath: Bioinformatics | Helm, MSA, Sequence Space
|
|
784
788
|
//description:
|
|
785
|
-
export async function
|
|
789
|
+
export async function demoBioHelmMsaSequenceSpace(): Promise<void> {
|
|
786
790
|
await demoBio05UI('func/demoBio05');
|
|
787
791
|
}
|