Skip to content
Snippets Groups Projects
Commit 57d068c7 authored by Sander Bollen's avatar Sander Bollen
Browse files

add example config and schema

parent fbf97659
No related branches found
No related tags found
No related merge requests found
{
"samples": {
"sample_01": {
"libraries": {
"lib_l1": {
"R1": "1.fq.gz",
"R2": "2.fq.gz"
},
"lib_l2": {
"R1": "1.1.fq.gz",
"R2": "1.2.fq.gz"
}
}
},
"sample_02": {
"libraries": {
"lib_l1": {
"R1": "3.1.fq.gz",
"R2": "3.2.fq.gz"
}
}
}
}
}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "JSON schema for samples config for the hutspot pipeline",
"type": "object",
"required": ["samples"],
"properties": {
"samples": {
"type": "object",
"additionalProperties": {
"description": "sample object",
"type": "object",
"required": ["libraries"],
"properties": {
"libraries": {
"type": "object",
"additionalProperties": {
"description": "library",
"type": "object",
"required": ["R1", "R2"],
"properties": {
"R1": {"type": "string"},
"R2": {"type": "string"}
}
}
}
}
}
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment