Mercurial > repos > sybila > pithya
diff 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 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pithya.xml Tue Oct 04 12:35:12 2022 +0000 @@ -0,0 +1,41 @@ +<tool id="pithya" name="PITHYA" version="@TOOL_VERSION@_galaxy0"> + <description>- computes CTL parameter synthesis</description> + <macros> + <import>macros.xml</import> + </macros> + <expand macro="creator"/> + <requirements> + <container type="docker">sybila/pithya:@TOOL_VERSION@</container> + </requirements> + <command>pithya + -m '$input_model' + -p '$input_property' + --parallelism '$threads' + #if $cut_thrs + --cut-to-range + #end if + -r 'json' + -ro '$output' + -lo 'stdout' + </command> + + <inputs> + <param format="pithya.model" name="input_model" type="data" label="Pithya model file."/> + <param format="pithya.property" name="input_property" type="data" label="CTL property file."/> + <param type="boolean" name="cut_thrs" checked="false" label="Cut the thresholds" help="...exceeding explicit minimum and maximum thresholds." /> + <param name="threads" size="2" type="integer" min="1" max="32" value="2" label="Number of threads used for parallelism." /> + </inputs> + + <outputs> + <data format="pithya.result" name="output" /> + </outputs> + + <tests> + <test> + <param name="input_model" value="example.pithya.model"/> + <param name="input_property" value="properties.pithya.property"/> + <output name="output" file="result.pithya.result"/> + </test> + </tests> + +</tool>