@datagrok/peptides 0.8.10 → 0.8.14

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.
Files changed (35) hide show
  1. package/.eslintrc.json +2 -1
  2. package/dist/package-test.js +22699 -0
  3. package/dist/package.js +21502 -0
  4. package/dist/vendors-node_modules_datagrok-libraries_ml_src_workers_dimensionality-reducer_js.js +8914 -0
  5. package/jest.config.js +33 -0
  6. package/package.json +76 -63
  7. package/src/__jest__/remote.test.ts +50 -0
  8. package/src/__jest__/test-node.ts +96 -0
  9. package/src/model.ts +849 -442
  10. package/src/package-test.ts +2 -1
  11. package/src/package.ts +36 -22
  12. package/src/peptides.ts +152 -116
  13. package/src/styles.css +8 -0
  14. package/src/tests/peptides-tests.ts +7 -7
  15. package/src/tests/utils.ts +2 -8
  16. package/src/utils/SAR-multiple-filter.ts +439 -0
  17. package/src/utils/SAR-multiple-selection.ts +177 -0
  18. package/src/utils/cell-renderer.ts +38 -37
  19. package/src/utils/chem-palette.ts +1 -0
  20. package/src/utils/constants.ts +56 -0
  21. package/src/utils/filtering-statistics.ts +62 -0
  22. package/src/utils/multivariate-analysis.ts +5 -3
  23. package/src/utils/peptide-similarity-space.ts +13 -32
  24. package/src/utils/types.ts +10 -0
  25. package/src/viewers/logo-viewer.ts +2 -1
  26. package/src/viewers/peptide-space-viewer.ts +121 -0
  27. package/src/viewers/sar-viewer.ts +109 -293
  28. package/src/viewers/stacked-barchart-viewer.ts +100 -136
  29. package/src/widgets/analyze-peptides.ts +34 -31
  30. package/src/widgets/distribution.ts +61 -0
  31. package/src/widgets/manual-alignment.ts +1 -0
  32. package/src/widgets/subst-table.ts +30 -20
  33. package/src/workers/dimensionality-reducer.ts +8 -8
  34. package/test-Peptides-2f94f62b59a8-c6d7c434.html +256 -0
  35. package/src/viewers/subst-viewer.ts +0 -312
package/.eslintrc.json CHANGED
@@ -34,6 +34,7 @@
34
34
  "error",
35
35
  "1tbs",
36
36
  { "allowSingleLine": true }
37
- ]
37
+ ],
38
+ "block-spacing": 2
38
39
  }
39
40
  }