Files
CI cd5554d22f Build branch main with version main (173327cc)
Build pipeline: vsh-ci-build-template-k4qzr

Source commit: 173327cc56

Source message: Cellranger multi conversion: fix combined AB + CB probe experiments (#1062)
2025-08-22 08:50:18 +00:00

62 lines
2.2 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "build_cellranger_reference",
"description": "Build a Cell Ranger-compatible reference folder from user-supplied genome FASTA and gene GTF files. Creates a new folder named after the genome.",
"type": "object",
"$defs": {
"arguments": {
"title": "Arguments",
"type": "object",
"description": "No description",
"properties": {
"genome_fasta": {
"type": "string",
"format": "path",
"exists": true,
"description": "Reference genome fasta.",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`, example: `\"genome_sequence.fa.gz\"`. "
},
"transcriptome_gtf": {
"type": "string",
"format": "path",
"exists": true,
"description": "Reference transcriptome annotation.",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`, example: `\"transcriptome_annotation.gtf.gz\"`. "
},
"reference_version": {
"type": "string",
"description": "Optional reference version string to include with reference",
"help_text": "Type: `string`, multiple: `False`. "
},
"output": {
"type": "string",
"format": "path",
"description": "Output folder",
"help_text": "Type: `file`, multiple: `False`, required, default: `\"$id.$key.output\"`, direction: `output`, example: `\"cellranger_reference\"`. ",
"default": "$id.$key.output"
}
}
},
"nextflow input-output arguments": {
"title": "Nextflow input-output arguments",
"type": "object",
"description": "Input/output parameters for Nextflow itself. Please note that both publishDir and publish_dir are supported but at least one has to be configured.",
"properties": {
"publish_dir": {
"type": "string",
"description": "Path to an output directory.",
"help_text": "Type: `string`, multiple: `False`, required, example: `\"output/\"`. "
}
}
}
},
"allOf": [
{
"$ref": "#/$defs/arguments"
},
{
"$ref": "#/$defs/nextflow input-output arguments"
}
]
}