action mcw_get_mapped_qtlby_position_using_get { label: "Returns a list QTL for given position and assembly map" provider: mcw method: GET path: "/qtls/mapped/{chr}/{start}/{stop}/{mapKey}" encoding: json input: { type: "object" properties: { chr: { type: "string" } mapKey: { type: "integer" format: "int32" } start: { type: "integer" format: "int64" } stop: { type: "integer" format: "int64" } } required: ["chr", "mapKey", "start", "stop"] additionalProperties: false } output: { type: "object" additionalProperties: true } }