-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnextflow_schema.json
74 lines (74 loc) · 2.34 KB
/
nextflow_schema.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
63
64
65
66
67
68
69
70
71
72
73
74
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com//master/nextflow_schema.json",
"title": " pipeline parameters",
"description": "",
"type": "object",
"properties": {
"experiment_name": {
"type": "string",
"description": "Name of the experiment, used for reports (title and filename)."
},
"data_dir": {
"type": "string",
"description": "Path to the directory containing POD5 files.",
"format": "directory-path"
},
"sample_data": {
"type": "string",
"default": "input/samples.csv",
"format": "file-path",
"schema": "/assets/samples_data_schema.json",
"mimetype": "text/csv",
"description": "Path to the CSV file containing the sample data (if not provided, will not perform demultiplexing)."
},
"output_dir": {
"type": "string",
"default": "results/",
"description": "Directory for saving results."
},
"fastq_output": {
"type": "boolean",
"default": true,
"description": "Generates FASTQ files if `true`; otherwise, generates UBAM files."
},
"qscore_filter": {
"type": "integer",
"default": 10,
"description": "Minimum QScore threshold for \"pass\" data, used in demultiplexing."
},
"dorado_basecalling_model": {
"type": "string",
"default": "sup",
"description": "Model used for basecalling. Check Dorado help for available options."
},
"dorado_basecalling_gpus": {
"type": "integer",
"default": 1,
"description": "Number of GPUs to allocate for basecalling."
},
"dorado_demux_kit": {
"type": "string",
"default": "SQK-NBD114-96",
"description": "Kit identifier used for demultiplexing."
},
"dorado_demux_both_ends": {
"type": "boolean",
"description": "Demultiplexes using barcodes on both ends (5' and 3') if `true`."
},
"use_dorado_container": {
"type": "boolean",
"default": true,
"description": "Uses Dorado via container if `true`; expects a local installation if `false`."
},
"qc_tools": {
"type": "array",
"items": {
"type": "string",
"enum": ["nanoq", "nanoplot", "fastqc", "toulligqc", "pycoqc"]
},
"description": "Specifies which QC tools to run."
}
},
"required": ["data_dir"]
}