Files
CI 93f55cc2ee Build branch main with version main (ad89f43)
Build pipeline: viash-hub.biobox.main-dkgvl

Source commit: ad89f43726

Source message: Add authors to package config and update author information (#180)

* Add authors to package config and update author information

* update changelog

* add linkedin
2025-06-16 10:27:22 +00:00

76 lines
2.3 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "agat_convert_mfannot2gff",
"description": "Conversion utility for MFannot \"masterfile\" annotation produced by the\n[MFannot pipeline](http://megasun.bch.umontreal.ca/RNAweasel/). Reports\nGFF3 format.\n",
"type": "object",
"$defs": {
"inputs": {
"title": "Inputs",
"type": "object",
"description": "No description",
"properties": {
"mfannot": {
"type": "string",
"format": "path",
"exists": true,
"description": "The mfannot input file.",
"help_text": "Type: `file`, multiple: `False`, required, direction: `input`, example: `\"input.mfannot\"`. "
}
}
},
"outputs": {
"title": "Outputs",
"type": "object",
"description": "No description",
"properties": {
"gff": {
"type": "string",
"format": "path",
"description": "The GFF output file.",
"help_text": "Type: `file`, multiple: `False`, required, default: `\"$id.$key.gff.gff\"`, direction: `output`, example: `\"output.gff\"`. ",
"default": "$id.$key.gff.gff"
}
}
},
"arguments": {
"title": "Arguments",
"type": "object",
"description": "No description",
"properties": {
"config": {
"type": "string",
"format": "path",
"description": "AGAT config file",
"help_text": "Type: `file`, multiple: `False`, direction: `input`, example: `\"custom_agat_config.yaml\"`. "
}
}
},
"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/inputs"
},
{
"$ref": "#/$defs/outputs"
},
{
"$ref": "#/$defs/arguments"
},
{
"$ref": "#/$defs/nextflow input-output arguments"
}
]
}