mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 19:29:54 +00:00
40 lines
1.4 KiB
JSON
40 lines
1.4 KiB
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||
|
"$id": "https://raw.githubusercontent.com/nf-core/taxprofiler/master/assets/schema_input.json",
|
||
|
"title": "nf-core/taxprofiler pipeline - params.input schema",
|
||
|
"description": "Schema for the file provided with params.input",
|
||
|
"type": "array",
|
||
|
"items": {
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"sample": {
|
||
|
"type": "string",
|
||
|
"pattern": "^\\S+$",
|
||
|
"errorMessage": "Sample name must be provided and cannot contain spaces"
|
||
|
},
|
||
|
"fastq_1": {
|
||
|
"type": "string",
|
||
|
"pattern": "^\\S+\\.f(ast)?q\\.gz$",
|
||
|
"errorMessage": "FastQ file for reads 1 must be provided, cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'"
|
||
|
},
|
||
|
"fastq_2": {
|
||
|
"errorMessage": "FastQ file for reads 2 cannot contain spaces and must have extension '.fq.gz' or '.fastq.gz'",
|
||
|
"anyOf": [
|
||
|
{
|
||
|
"type": "string",
|
||
|
"pattern": "^\\S+\\.f(ast)?q\\.gz$"
|
||
|
},
|
||
|
{
|
||
|
"type": "string",
|
||
|
"maxLength": 0
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
},
|
||
|
"required": [
|
||
|
"sample",
|
||
|
"fastq_1"
|
||
|
]
|
||
|
}
|
||
|
}
|