@datagrok/hit-triage 1.7.0 → 1.7.2
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 +4 -0
- package/README_HD.md +5 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/package.json +1 -1
- package/src/app/consts.ts +1 -0
- package/src/app/dialogs/functions-dialog.ts +47 -14
- package/src/app/utils.ts +114 -1
package/CHANGELOG.md
CHANGED
package/README_HD.md
CHANGED
|
@@ -189,6 +189,10 @@ from unnest(@molecules) as molecules
|
|
|
189
189
|
where is_valid_smiles(Cast(molecules as cstring))
|
|
190
190
|
```
|
|
191
191
|
|
|
192
|
+
If the number of functions is getting large, you might prefer to see only relevant ones in the order you prefer. You can hide/reorder the functions in functions dialog or template using the pencil (✎) icon on the top right corner.
|
|
193
|
+
|
|
194
|
+

|
|
195
|
+
|
|
192
196
|
### Submit Functions
|
|
193
197
|
|
|
194
198
|
Submit functions are used to save or submit the filtered and computed dataset. This could include saving to a private database or additional calculations. Submit functions are defined in the same way as compute functions, but they are tagged with `HitTriageSubmitFunction` tag. The function should accept only two inputs, `Dataframe` `df` and `String` `molecules`, which are the resulting dataframe and name of molecules column respectively. For example, we can create a function that saves the filtered and computed dataset to a database:
|
|
@@ -216,7 +220,7 @@ Similarly, you can manage view permissions, which will restrict access to viewin
|
|
|
216
220
|
|
|
217
221
|

|
|
218
222
|
|
|
219
|
-
You can also modify the default
|
|
223
|
+
You can also modify the default sharing permissions for all newly created campaigns. To do so, modify the HitTriage package settings.
|
|
220
224
|
|
|
221
225
|
1. Go to `Browse` → `Platform` and click on `Plugins` (or directly via a link at `{your_datagrok_url}/packages`).
|
|
222
226
|
2. Under Cheminformatics, click on `HitTriage` package.
|