view macros.xml @ 7:ce5d418183c5 draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/kallisto/ commit f173f58bc695c22364685c2ffbb9f3e95708f00f
author iuc
date Mon, 05 Jun 2023 22:06:13 +0000
parents a157781cddd7
children
line wrap: on
line source

<?xml version="1.0"?>
<macros>
    <token name="@TOOL_VERSION@">0.48.0</token>
    <token name="@VERSION_SUFFIX@">1</token>
    <xml name="requirements">
        <requirements>
            <requirement type="package" version="@TOOL_VERSION@">kallisto</requirement>
            <requirement type="package" version="1.14">samtools</requirement>
        </requirements>
    </xml>
    <xml name="citations">
        <citations>
            <citation type="doi">doi:10.1038/nbt.3519</citation>
        </citations>
    </xml>
    <xml name="reference_input">
        <conditional name="reference_transcriptome">
            <param name="reference_transcriptome_source" type="select" label="Reference transcriptome for quantification">
                <option value="indexed" selected="true">Use a built-in transcriptome</option>
                <option value="history">Use a transcriptome from history</option>
            </param>
            <when value="indexed">
                <param name="index" type="select" label="Select a reference transcriptome" help="If your transcriptome of interest is not listed, contact your Galaxy administrator">
                    <options from_data_table="kallisto_indexes">
                        <filter type="sort_by" column="2" />
                        <validator type="no_options" message="No transcriptomes are available for the selected input dataset" />
                    </options>
                </param>
            </when>
            <when value="history">
                <param name="reference" type="data" format="fasta" label="FASTA reference transcriptome" />
            </when>
        </conditional>
    </xml>
    <xml name="macro_lib_type">
        <param name="lib_type" type="select" label="Library strandness information">
            <option value="">Unstranded</option>
            <option value="--fr-stranded">Strand specific reads, first read forward</option>
            <option value="--rf-stranded">Strand specific reads, first read reverse</option>
        </param>
    </xml>
</macros>