Mercurial > repos > artbio > snvtocnv
view macro.xml @ 2:e0724d649885 draft default tip
planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/snvtocnv commit 116f2555558a283190cd1dd60ee25b359bcda51e
author | artbio |
---|---|
date | Fri, 20 May 2022 17:07:54 +0000 |
parents | b77d7a0a45e8 |
children |
line wrap: on
line source
<macros> <token name="@pipefail@"><![CDATA[set -o | grep -q pipefail && set -o pipefail;]]></token> <token name="@set_fasta_index@"><![CDATA[ #if str( $reference_source.reference_source_selector ) == "history": cp '${reference_source.ref_file}' reference.fa && #else: cp '${reference_source.index.fields.path}' reference.fa && #end if ]]></token> <macro name="reference_source_conditional"> <conditional name="reference_source"> <param name="reference_source_selector" type="select" label="Will you select a reference genome from your history or use a built-in index?" help="Built-ins were indexed using default options. See `Indexes` section of help below"> <option value="cached">Use a built-in genome index</option> <option value="history">Use a genome from history and build index</option> </param> <when value="cached"> <param name="index" type="select" label="Using built-in genome" help="Select genome sorted and with chr prefix (chr1, chr2, ...)"> <options from_data_table="fasta_indexes"> <filter type="sort_by" column="2" /> <validator type="no_options" message="No indexes are available" /> </options> <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/> </param> </when> <when value="history"> <param name="ref_file" type="data" format="fasta" label="Use the following dataset as the reference sequence" help="You can upload a FASTA sequence to the history and use it as reference" /> </when> </conditional> </macro> </macros>