@datagrok/hit-triage 1.3.2 → 1.3.4
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/CHANGELOG.md +9 -0
- package/README_HD.md +13 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/app/accordeons/new-hit-design-template-accordeon.ts +1 -0
- package/src/app/consts.ts +13 -5
- package/src/app/hit-design-app.ts +63 -13
- package/src/app/hit-design-views/info-view.ts +44 -6
- package/src/app/hit-design-views/submit-view.ts +41 -5
- package/src/app/hit-design-views/tiles-view.ts +44 -6
- package/src/app/hit-design-views/utils.css +8 -0
- package/src/app/pepti-hit-app.ts +3 -3
- package/src/app/pepti-hits-views/info-view.ts +1 -1
- package/src/app/types.ts +1 -1
- package/src/app/utils.ts +82 -2
package/CHANGELOG.md
CHANGED
package/README_HD.md
CHANGED
|
@@ -42,6 +42,10 @@ Campaigns are built based on templates and encompass the actual hit design proce
|
|
|
42
42
|
|
|
43
43
|

|
|
44
44
|
|
|
45
|
+
Campaigns can be groupped either by template key, status or be ungroupped. The groupping setting can be changed by clicking 'Group By' icon next to 'Comntinue Campaign' header.
|
|
46
|
+
|
|
47
|
+

|
|
48
|
+
|
|
45
49
|
## Getting started
|
|
46
50
|
|
|
47
51
|
Continue ongoing campaigns either directly by a link or by selecting it from the campaigns table.
|
|
@@ -60,10 +64,18 @@ After the campaign starts, users can sketch new molecules, filter, modify or add
|
|
|
60
64
|
|
|
61
65
|

|
|
62
66
|
|
|
63
|
-
Hit design campaign consists of two views, a main design view and a tiles view. You can access the tiles view from the
|
|
67
|
+
Hit design campaign consists of two views, a main design view and a tiles view. You can access the tiles view from by clicking the 'Progrss Tracker' button on the ribbon pannel. Tiles view provides a versatile way to organize molecules in the campaign. Users can drag and drop molecules between stages, which were defined in the template.
|
|
64
68
|
|
|
65
69
|

|
|
66
70
|
|
|
71
|
+
As mentioned previously, "Stages" or tiles are defined in the template, but users can also modify them after starting the campaign. To do so, open the Progress Tracker and click the "Modify Stages" button. You can add, remove or rename stages. After clicking OK, the changes will be saved and reflected in the Progress Tracker view. If you remove a stage which had some molecules in it, those molecules will be automatically moved to the first stage.
|
|
72
|
+
|
|
73
|
+

|
|
74
|
+
|
|
75
|
+
Campaign status can be changed through 'Submit' menu. You can set status to anything. When you start typing, you will be suggested other statuses that are already in use.
|
|
76
|
+
|
|
77
|
+

|
|
78
|
+
|
|
67
79
|
## Adding custom compute and submit functions
|
|
68
80
|
|
|
69
81
|
HitDesign allows users to define custom compute and submit functions, and these functions can be written in any Datagrok package that is installed in the environment.
|