Hi,
I've got a pipeline composed of 3 tools, 1 of which only makes sense as part of the pipeline, and don't want to have listed in the 'Tools' list.
I've added a hidden: "true" in the top-level json, but upon refresh, I can still see the tool listed. Is it possible to hide a tool from the 'Tools' list but still have it available as part of a pipeline?
Thanks in advance,
{
program: "p -m list_to_vdjc_aggr -stdout -i ",
name: "list_to_vdjc_aggr",
desc: "desc",
hidden: "true",
outFiles: "outfilename",
jobName: "list_to_vdjc_aggr results",
submit: ["Run tests"],
prefix: "-",
category: "generic",
options: [
{group: "Options", desc: "Hover option labels for description", options: [
{file: "", desc: "Input file", required: "in csv format", order: "end"},
]}
]
}
Hi,
I've got a pipeline composed of 3 tools, 1 of which only makes sense as part of the pipeline, and don't want to have listed in the 'Tools' list.
I've added a
hidden: "true"in the top-level json, but upon refresh, I can still see the tool listed. Is it possible to hide a tool from the 'Tools' list but still have it available as part of a pipeline?Thanks in advance,