Mercurial > repos > ufz > vibrant_build_database
comparison data_manager/vibrant_datamanager.xml @ 0:200343b50d46 draft
planemo upload for repository https://github.com/Helmholtz-UFZ/ufz-galaxy-tools/blob/main/data_managers/data_manager_vibrant commit 652d6d214d2de01b29badbb1fad8648d6fd6153b
author | ufz |
---|---|
date | Mon, 16 Sep 2024 09:52:54 +0000 |
parents | |
children | 3f68072f2da6 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:200343b50d46 |
---|---|
1 <tool id="vibrant_build_database" name="vibrant" tool_type="manage_data" version="@TOOL_VERSION@+galaxy@VERSION_SUFFIX@" profile="@PROFILE@"> | |
2 <description>database builder</description> | |
3 <macros> | |
4 <token name="@TOOL_VERSION@">1.2.1</token> | |
5 <token name="@VERSION_SUFFIX@">0</token> | |
6 <token name="@PROFILE@">22.01</token> | |
7 </macros> | |
8 <xrefs> | |
9 <xref type="bio.tools">VIBRANT</xref> | |
10 </xrefs> | |
11 <requirements> | |
12 <requirement type="package" version="@TOOL_VERSION@">vibrant</requirement> | |
13 </requirements> | |
14 <command detect_errors="exit_code"><![CDATA[ | |
15 set -eo pipefail; | |
16 download-db.sh vibrant_db && | |
17 cp '$dmjson' '$out_file' | |
18 ]]></command> | |
19 <configfiles> | |
20 <configfile name="dmjson"><![CDATA[ | |
21 { | |
22 "data_tables":{ | |
23 "vibrant":[ | |
24 { | |
25 "path":"vibrant_db", | |
26 "name":"Version @TOOL_VERSION@", | |
27 "version":"@TOOL_VERSION@", | |
28 "value":"@TOOL_VERSION@" | |
29 } | |
30 ] | |
31 } | |
32 }]]> | |
33 </configfile> | |
34 </configfiles> | |
35 <inputs/> | |
36 <outputs> | |
37 <data name="out_file" format="data_manager_json" /> | |
38 </outputs> | |
39 <tests> | |
40 <!-- <test expect_num_outputs="1"> | |
41 <output name="out_file"> | |
42 <assert_contents> | |
43 <has_text text='"value":"@TOOL_VERSION@"'/> | |
44 <has_text text='"name":"Version @TOOL_VERSION@"'/> | |
45 </assert_contents> | |
46 </output> | |
47 </test> --> | |
48 </tests> | |
49 <help><![CDATA[ | |
50 Download and vibrant reference data using https://raw.githubusercontent.com/AnantharamanLab/VIBRANT/master/databases/VIBRANT_setup.py | |
51 ]]></help> | |
52 <citations> | |
53 <citation type="doi">10.1186/s40168-020-00867-0</citation> | |
54 </citations> | |
55 </tool> |