Skip to content

Commit

Permalink
Merge pull request #240 from WormBase/jb2-staging
Browse files Browse the repository at this point in the history
adding help plugin to build script
  • Loading branch information
scottcain authored Oct 18, 2023
2 parents d38f6c7 + 2e45916 commit f0aca9b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
14 changes: 13 additions & 1 deletion jbrowse2/bin/make_global_config.pl
Original file line number Diff line number Diff line change
Expand Up @@ -126,16 +126,28 @@
# but darkened to improve contrast in some JB2 UI elements
$$json{'configuration'}{'theme'}{'palette'}{'tertiary'}{'main'} = '#9da9b6';

#add config for sorting/collapsing categories
$$json{'configuration'}{'hierarchical'}{'sort'}{'trackNames'} = $JSON::true;
$$json{'configuration'}{'hierarchical'}{'sort'}{'categories'} = $JSON::true;
$$json{'configuration'}{'hierarchical'}{'defaultCollapsed'}{'subCategories'} = $JSON::true;
$$json{'configuration'}{'hierarchical'}{'defaultCollapsed'}{'topLevelCategories'} = $JSON::true;



my $plugin;
my $hex;
$$hex{'name'} = "HexJexlPlugin";
$$hex{'umdLoc'}{'uri'} = "hex_plugin.js";
my $vColor;
$$vColor{'name'} = "VariantColorPlugin";
$$vColor{'umdLoc'}{'uri'} = "variantColor_plugin.js";
my @plugins = ($hex, $vColor);
my $help;
$$help{'name'} = "JBrowseSiteSpecificHelp";
$$help{'umdLoc'}{'uri'}= "plugins/JBrowseSiteSpecificHelp/jbrowse-site-specific-help.umd.development.js";
my @plugins = ($hex, $vColor, $help);
$$json{'plugins'} = \@plugins;


#that might be all that's needed
#I dont think we need several of the things that are empty arrays
#in the existing config
Expand Down
1 change: 0 additions & 1 deletion jbrowse2/config/track_configs/rnaseq_splice.json

This file was deleted.

0 comments on commit f0aca9b

Please sign in to comment.