-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.json
More file actions
65 lines (65 loc) · 1.66 KB
/
config.json
File metadata and controls
65 lines (65 loc) · 1.66 KB
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
63
64
65
{
"command": [
"Rscript",
"--vanilla",
"code/countAmpliconsAWS.R",
"--rundir",
"$RUNDIR/",
"--basespaceID",
"$BASESPACE_ID",
"--threads",
"8",
"--season",
"winter",
"--skipDownload",
"TRUE"
],
"inputs": {
"path_args": [
{
"env_var_name": "BASESPACE_ID",
"path_regex": "([^/]+)",
"path_regex_match_group": 1
}
],
"query_args": [],
"body_args": []
},
"outputs": {
"results": {
"kind": "file",
"format": "csv",
"input_path": "LIMS_results.csv",
"remapped_columns": [
{
"output_name": "plateIndex",
"input_name": "Plate_384_Number",
"skip_list": ["NA"]
},
{
"output_name": "plateCell",
"input_name": "Sample_Well",
"skip_list": ["NA"]
},
{
"output_name": "marker1",
"input_name": "index",
"skip_list": ["NA"]
},
{
"output_name": "marker2",
"input_name": "index2",
"skip_list": ["NA"]
},
{
"output_name": "classification",
"input_name": "classification"
}
]
},
"attachments": [
"*.pdf",
"LIMS_results.csv"
]
}
}