Mercurial > repos > guerler > dbkit
comparison dbkit_merge.xml @ 2:81c7d4668a7e draft
"planemo upload commit bd03b7888eab0b010acfc3affd38bf4d4e2bb1ef-dirty"
author | guerler |
---|---|
date | Wed, 16 Dec 2020 12:02:48 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1:987e55ea29b8 | 2:81c7d4668a7e |
---|---|
1 <tool id="dbkit_merge" name="DBKit Merge" version="0.1.1" python_template_version="3.5" license="MIT"> | |
2 <description>two databases</description> | |
3 <command detect_errors="exit_code"><![CDATA[ | |
4 python3 '$__tool_directory__/dbkit_merge.py' -fi '$firstindex' -fd '$firstdata' -si '$secondindex' -sd '$seconddata' -oi '$outindex' -od '$outdata' -log '$logfile' | |
5 ]]></command> | |
6 <inputs> | |
7 <param format="ffindex" name="firstindex" type="data" label="First Database Index" help="Select the index file of the first database (ffindex)."/> | |
8 <param format="ffdata" name="firstdata" type="data" label="First Database Content" help="Select the data file of the first database (ffdata)."/> | |
9 <param format="ffindex" name="secondindex" type="data" label="Second Database Index" help="Select the index file of the second database (ffindex)."/> | |
10 <param format="ffdata" name="seconddata" type="data" label="Second Database Content" help="Select the data file of the second database (ffdata)."/> | |
11 </inputs> | |
12 <outputs> | |
13 <data format="ffindex" name="outindex" label="DBKit Merged Index"/> | |
14 <data format="ffdata" name="outdata" label="DBKit Merged Database" /> | |
15 <data format="txt" name="logfile" label="DBKit Merged Log" /> | |
16 </outputs> | |
17 <tests> | |
18 <test> | |
19 <param name="firstindex" value="create/first.ffindex"/> | |
20 <param name="firstdata" value="create/first.ffdata"/> | |
21 <param name="secondindex" value="merge/second.ffindex"/> | |
22 <param name="seconddata" value="merge/second.ffdata"/> | |
23 <output name="index" file="merge/result.ffindex" /> | |
24 <output name="database" file="merge/result.ffdata" /> | |
25 </test> | |
26 </tests> | |
27 <help><![CDATA[ | |
28 This database creation tool merges two pairs of ffindex/ffdata entries into a single ffindex/ffdata pair. | |
29 ]]></help> | |
30 </tool> |