-
Notifications
You must be signed in to change notification settings - Fork 30
/
output_definition.json
52 lines (52 loc) · 1.7 KB
/
output_definition.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
{
"files": {
"workflow-report": {
"filepath": "./wf-template-report.html",
"title": "workflow report",
"description": "Report for all samples",
"mime-type": "text/html",
"optional": false,
"type": "aggregated"
},
"read-stats-per-file": {
"filepath": "./fastq_ingress_results/reads/fastcat_stats/per-file-stats.tsv",
"title": "Per file read stats",
"description": "A TSV with per file read stats, including all samples.",
"mime-type": "text/tsv",
"optional": false,
"type": "aggregated"
},
"read-stats-per-read": {
"filepath": "./fastq_ingress_results/reads/fastcat_stats/per-read-stats.tsv",
"title": "Per read stats",
"description": "A TSV with per read stats, including all samples.",
"mime-type": "text/tsv",
"optional": false,
"type": "aggregated"
},
"run-ids": {
"filepath": "./fastq_ingress_results/reads/fastcat_stats/run_ids",
"title": "Run ID's",
"description": "List of run ID's present in reads.",
"mime-type": "text/txt",
"optional": false,
"type": "aggregated"
},
"metamap": {
"filepath": "./fastq_ingress_results/reads/metamap.json",
"title": "Meta map json",
"description": "Meta data used in workflow presented in a JSON.",
"mime-type": "text/json",
"optional": false,
"type": "aggregated"
},
"sample-data": {
"filepath": "./fastq_ingress_results/reads/{{ alias }}.fastq.gz",
"title": "Concatenated sequence data",
"description": "Per sample reads concatenated in to one fastq file.",
"mime-type": "text/json",
"optional": false,
"type": "per-sample"
}
}
}