|
| 1 | +--- |
| 2 | +# This is a sample file to be used as a reference for populating a list of |
| 3 | +# tools that you wish to install into Galaxy from a Tool Shed via the |
| 4 | +# `install_tool_shed_tools.py` script. |
| 5 | +# |
| 6 | +# For each tool you want to install, you must provide the following keys: |
| 7 | +# * name: this is is the name of the tool to install |
| 8 | +# * owner: owner of the Tool Shed repository from where the tools is being |
| 9 | +# installed |
| 10 | +# Further, you need to provide **one** of the following two keys: |
| 11 | +# * tool_panel_section_id: ID of the tool panel section where you want the |
| 12 | +# tool to be installed. The section ID can be found |
| 13 | +# in Galaxy's `shed_tool_conf.xml` config file. Note |
| 14 | +# that the specified section must exist in this file. |
| 15 | +# Otherwise, the tool will be installed outside any |
| 16 | +# section. |
| 17 | +# * tool_panel_section_label: Display label of a tool panel section where |
| 18 | +# you want the tool to be installed. If it does not |
| 19 | +# exist, this section will be created on the target |
| 20 | +# Galaxy instance (note that this is different than |
| 21 | +# when using the ID). |
| 22 | +# Multi-word labels need to be placed in quotes. |
| 23 | +# Each label will have a corresponding ID created; |
| 24 | +# the ID will be an all lowercase version of the |
| 25 | +# label, with multiple words joined with |
| 26 | +# underscores (e.g., 'BED tools' -> 'bed_tools'). |
| 27 | +# |
| 28 | +# Tou can also specify the following optional keys to further define the |
| 29 | +# installation properties: |
| 30 | +# * tool_shed_url: the URL of the Tool Shed from where the tool should be |
| 31 | +# installed. (default: https://toolshed.g2.bx.psu.edu) |
| 32 | +# * revisions: a list of revisions of the tool, all of which will attempt to |
| 33 | +# be installed. (default: latest) |
| 34 | +# * install_tool_dependencies: True or False - whether to install tool |
| 35 | +# dependencies or not. (default: True) |
| 36 | +# * install_repository_dependencies: True or False - whether to install repo |
| 37 | +# dependencies or not. (default: True) |
| 38 | + |
| 39 | +api_key: admin |
| 40 | +galaxy_instance: http://localhost:8080 |
| 41 | +tools: |
| 42 | +- name: graphclust_cmfinder |
| 43 | + owner: rnateam |
| 44 | + tool_panel_section_label: "GraphClust" |
| 45 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 46 | + install_resolver_dependencies: True |
| 47 | + install_tool_dependencies: False |
| 48 | + |
| 49 | +- name: graphclust_postprocessing |
| 50 | + owner: rnateam |
| 51 | + tool_panel_section_label: "GraphClust" |
| 52 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 53 | + install_resolver_dependencies: True |
| 54 | + install_tool_dependencies: False |
| 55 | + |
| 56 | +- name: graphclust_fasta_to_gspan |
| 57 | + owner: rnateam |
| 58 | + tool_panel_section_label: "GraphClust" |
| 59 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 60 | + install_resolver_dependencies: True |
| 61 | + install_tool_dependencies: False |
| 62 | + |
| 63 | +- name: graphclust_mlocarna |
| 64 | + owner: rnateam |
| 65 | + tool_panel_section_label: "GraphClust" |
| 66 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 67 | + install_resolver_dependencies: True |
| 68 | + install_tool_dependencies: False |
| 69 | + |
| 70 | +- name: graphclust_nspdk |
| 71 | + owner: rnateam |
| 72 | + tool_panel_section_label: "GraphClust" |
| 73 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 74 | + install_resolver_dependencies: True |
| 75 | + install_tool_dependencies: False |
| 76 | + |
| 77 | +- name: graphclust_prepocessing_for_mlocarna |
| 78 | + owner: rnateam |
| 79 | + tool_panel_section_label: "GraphClust" |
| 80 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 81 | + install_resolver_dependencies: True |
| 82 | + install_tool_dependencies: False |
| 83 | + |
| 84 | +- name: graphclust_preprocessing |
| 85 | + owner: rnateam |
| 86 | + tool_panel_section_label: "GraphClust" |
| 87 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 88 | + install_resolver_dependencies: True |
| 89 | + install_tool_dependencies: False |
| 90 | + |
| 91 | +- name: text_processing |
| 92 | + owner: bgruening |
| 93 | + tool_panel_section_id: "textutil" |
| 94 | + tool_shed_url: https://toolshed.g2.bx.psu.edu |
| 95 | + install_resolver_dependencies: True |
| 96 | + install_tool_dependencies: False |
0 commit comments