-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchris_plugin_info.json
57 lines (57 loc) · 1.52 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
{
"type": "ds",
"parameters": [
{
"name": "filter",
"type": "str",
"optional": false,
"flag": "--filter",
"short_flag": "-f",
"action": "store",
"help": "Input path filter. Paths which do not match this regex are excluded.",
"default": null,
"ui_exposed": true
},
{
"name": "expression",
"type": "str",
"optional": false,
"flag": "--expression",
"short_flag": "-e",
"action": "store",
"help": "Regular expression to match paths. See https://docs.rs/regex/1.5.5/regex/#syntax",
"default": null,
"ui_exposed": true
},
{
"name": "replacement",
"type": "str",
"optional": false,
"flag": "--replace",
"short_flag": "-r",
"action": "store",
"help": "Replacement string with capture groups. See https://docs.rs/regex/1.5.5/regex/#grouping-and-flags",
"default": null,
"ui_exposed": true
}
],
"icon": "",
"authors": "FNNDSC <[email protected]>",
"title": "Bulk Rename",
"category": "Utility",
"description": "A ChRIS plugin to rename paths using regex",
"documentation": "https://github.com/FNNDSC/pl-bulk-rename",
"license": "MIT",
"version": "0.1.3",
"selfpath": "/usr/local/bin",
"selfexec": "bulkrename",
"execshell": "/docker-entrypoint.sh",
"min_number_of_workers": 1,
"max_number_of_workers": 1,
"min_memory_limit": "",
"max_memory_limit": "",
"min_cpu_limit": "",
"max_cpu_limit": "",
"min_gpu_limit": 0,
"max_gpu_limit": 0
}