-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchris_plugin_info.json
62 lines (60 loc) · 1.56 KB
/
chris_plugin_info.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "pl-abs",
"version": "1.0.1",
"dock_image": "ghcr.io/fnndsc/pl-abs:1.0.1",
"public_repo": "https://github.com/FNNDSC/pl-abs",
"icon": "",
"authors": "Jennings Zhang <[email protected]>",
"title": "Absolute Value",
"category": "Utility",
"description": "A ChRIS plugin to calculate absolute value of numbers in data files",
"documentation": "https://github.com/FNNDSC/pl-abs",
"license": "MIT",
"type": "ds",
"parameters": [
{
"name": "input_files",
"type": "str",
"optional": true,
"flag": "--input-files",
"short_flag": "-i",
"action": "store",
"help": "File extensions of files to include.",
"default": ".txt",
"ui_exposed": true
},
{
"name": "output_suffix",
"type": "str",
"optional": true,
"flag": "--output-suffix",
"short_flag": "-o",
"action": "store",
"help": "File extensions of files to include.",
"default": "",
"ui_exposed": true
},
{
"name": "copy",
"type": "bool",
"optional": true,
"flag": "--copy",
"short_flag": "-c",
"action": "store_true",
"help": "Copy ignored files to output dir",
"default": false,
"ui_exposed": true
}
],
"selfpath": "/usr/local/bin",
"selfexec": "abs",
"execshell": "/docker-entrypoint.sh",
"min_number_of_workers": 1,
"max_number_of_workers": 1,
"min_memory_limit": "100Mi",
"max_memory_limit": "",
"min_cpu_limit": "100m",
"max_cpu_limit": "",
"min_gpu_limit": 0,
"max_gpu_limit": 0
}