comparison macros.xml @ 0:30fc9f2bcbe4 draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tools/irissv/ commit 80a64f32dbd465d72a10e69a749def733dea8ffc"
author iuc
date Tue, 19 Jan 2021 20:30:21 +0000
parents
children 1d4f065fa0ef
comparison
equal deleted inserted replaced
-1:000000000000 0:30fc9f2bcbe4
1 <?xml version="1.0"?>
2 <macros>
3 <token name="@TOOL_VERSION@">1.0.4</token>
4 <token name="@PROFILE@">18.01</token>
5 <xml name="requirements">
6 <requirements>
7 <requirement type="package" version="1.9">samtools</requirement>
8 <requirement type="package" version="@TOOL_VERSION@">irissv</requirement>
9 </requirements>
10 </xml>
11 <xml name="version_command">
12 <version_command>iris</version_command>
13 </xml>
14 <xml name="citations">
15 <citations>
16 <citation type="bibtex">@online{iris,
17 author = {Melanie Kirsche},
18 title = {iris},
19 year = 2021,
20 url = {https://github.com/mkirsche/Iris},
21 urldate = {2021-01-13}
22 }</citation>
23 </citations>
24 </xml>
25
26 <!--
27 command
28 -->
29
30 <token name="@REF_FASTA@"><![CDATA[
31 #if $reference_source.reference_source_selector == 'history':
32 ln -f -s '$reference_source.ref_file' reference.fa &&
33 #else:
34 ln -f -s '$reference_source.ref_file.fields.path' reference.fa &&
35 #end if
36 ]]></token>
37
38 <xml name="reference">
39 <conditional name="reference_source">
40 <param name="reference_source_selector" type="select" label="Choose the source for the reference genome">
41 <option value="cached">Use a built-in genome</option>
42 <option value="history">Use a genome from history</option>
43 </param>
44 <when value="cached">
45 <param name="ref_file" type="select" label="Using reference genome" help="Select genome from the list">
46 <options from_data_table="all_fasta">
47 <filter type="sort_by" column="2"/>
48 <validator type="no_options" message="No reference genomes are available"/>
49 </options>
50 <validator type="no_options" message="A built-in reference genome is not available for the build associated with the selected input file"/>
51 </param>
52 </when>
53 <when value="history">
54 <param name="ref_file" type="data" format="fasta,fastq" label="Use the following dataset as the reference sequence" help="You can upload a FASTA or FASTQ sequence to the history and use it as reference"/>
55 </when>
56 </conditional>
57 </xml>
58 <!--
59 Help
60 -->
61
62 <token name="@WID@"><![CDATA[
63 *irissv*, or Implement for Refining Insertion Sequences is a tool which corrects the sequences of structural variant calls (currently only insertions). It uses FalconSense to obtain consensus sequences of the reads surrounding each variant and aligns these sequences back to the reference at the insertion site, resulting in an insertion which takes into account the aggregate information of all supporting reads.
64 ]]></token>
65 <token name="@REFERENCES@"><![CDATA[
66 More information is available in the `github <https://github.com/mkirsche/Iris>`_.
67 ]]></token>
68 </macros>