comparison pithya.xml @ 0:c288b90b86ed draft

planemo upload for repository https://github.com/sybila/galaxytools/tree/main/tools/pithya commit 6a5b2e93f1e70d98b46c4963cac4210c3bfc78b9
author sybila
date Tue, 04 Oct 2022 12:35:12 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:c288b90b86ed
1 <tool id="pithya" name="PITHYA" version="@TOOL_VERSION@_galaxy0">
2 <description>- computes CTL parameter synthesis</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="creator"/>
7 <requirements>
8 <container type="docker">sybila/pithya:@TOOL_VERSION@</container>
9 </requirements>
10 <command>pithya
11 -m '$input_model'
12 -p '$input_property'
13 --parallelism '$threads'
14 #if $cut_thrs
15 --cut-to-range
16 #end if
17 -r 'json'
18 -ro '$output'
19 -lo 'stdout'
20 </command>
21
22 <inputs>
23 <param format="pithya.model" name="input_model" type="data" label="Pithya model file."/>
24 <param format="pithya.property" name="input_property" type="data" label="CTL property file."/>
25 <param type="boolean" name="cut_thrs" checked="false" label="Cut the thresholds" help="...exceeding explicit minimum and maximum thresholds." />
26 <param name="threads" size="2" type="integer" min="1" max="32" value="2" label="Number of threads used for parallelism." />
27 </inputs>
28
29 <outputs>
30 <data format="pithya.result" name="output" />
31 </outputs>
32
33 <tests>
34 <test>
35 <param name="input_model" value="example.pithya.model"/>
36 <param name="input_property" value="properties.pithya.property"/>
37 <output name="output" file="result.pithya.result"/>
38 </test>
39 </tests>
40
41 </tool>