Skip to content

Commit

Permalink
Hide track_format and track_type in Advanced Parameters group
Browse files Browse the repository at this point in the history
  • Loading branch information
tmtabor committed Nov 3, 2021
1 parent d70492d commit a1fc59b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion igv/tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,19 @@ def decorator(func):
@build_ui(name="igv.js: Integrative Genomics Viewer",
description="Use igv.js to embed an interactive genome visualization",
logo="http://igv.org/web/img/favicon.ico",
origin="igv",
origin="+",
run_label="Visualize",
parameter_groups=[
{
"name": "Basic Parameters",
"parameters": ["genome", "tracks", "indices", "locus"],
},
{
"name": "Advanced Parameters",
"parameters": ["track_format", "track_type"],
"hidden": True
}
],
parameters={
"genome": {
"name": "genome",
Expand Down

0 comments on commit a1fc59b

Please sign in to comment.