view pithya.xml @ 1:79404dc57ba2 draft default tip

planemo upload for repository https://github.com/sybila/galaxytools/tree/main/tools/pithya commit 559ab668b8c6a946587513a48c56ae343840ff23
author sybila
date Thu, 06 Oct 2022 09:40:27 +0000
parents c288b90b86ed
children
line wrap: on
line source

<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>