spikeq 1.0.1

A synthetic FASTQ record generator with pattern spiking
{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "title": "spikeq",
    "version": 1,
    "type": "object",
    "properties": {
        "regexSet": {
            "type": "object",
            "properties": {
                "regexSetName": {
                    "type": "string"
                },
                "regex": {
                    "type": "array",
                    "minItems": 1,
                    "items": {
                        "type": "object",
                        "properties": {
                            "regexName": {
                                "type": "string"
                            },
                            "regexString": {
                                "type": "string"
                            }
                        },
                        "required": [
                            "regexName",
                            "regexString"
                        ]
                    }
                }
            },
            "required": [
                "regexSetName",
                "regex"
            ]
        }
    },
    "required": [
        "regexSet"
    ]
}