Mercurial > repos > devteam > lastz
comparison lastz_macros.xml @ 3:c3767eaae954 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/lastz commit 13e9724b44888b0de9535ac7b561ad9686038413
author | iuc |
---|---|
date | Thu, 17 May 2018 04:28:59 -0400 |
parents | 8e9252994649 |
children | ac0ffffa649e |
comparison
equal
deleted
inserted
replaced
2:8e9252994649 | 3:c3767eaae954 |
---|---|
1 <macros> | 1 <macros> |
2 <token name="@LASTZ_CONDA_VERSION@">1.0.4</token> | 2 <token name="@LASTZ_CONDA_VERSION@">1.0.4</token> |
3 <token name="@TARGET_INPUT_COMMAND_LINE@"> | 3 <token name="@TARGET_INPUT_COMMAND_LINE@"><![CDATA[ |
4 #if $source.ref_source=="history": | 4 #if $source.ref_source=="history": |
5 '${source.target}' | 5 #if $source.target.is_of_type('fasta.gz'): |
6 <(gunzip -c '${source.target}') | |
7 #else: | |
8 '${source.target}' | |
9 #end if | |
6 #else: | 10 #else: |
7 '${source.target_2bit.fields.path}' | 11 '${source.target_2bit.fields.path}' |
8 #end if | 12 #end if |
13 ]]> | |
14 </token> | |
15 <token name="@query_input@"><![CDATA[ | |
16 #if $query.is_of_type('fasta.gz','fastq.gz'): | |
17 <(gunzip -c '${query}') | |
18 #elif $query.is_of_type('fastq.bz2'): | |
19 <(bunzip2 -c '${query}') | |
20 #else: | |
21 '${query}' | |
22 #end if | |
23 ]]> | |
9 </token> | 24 </token> |
10 <xml name="target_input"> | 25 <xml name="target_input"> |
11 <conditional name="source"> | 26 <conditional name="source"> |
12 <param name="ref_source" type="select" label="Select TARGET sequnce(s) to align against" help="If your TARGET is in history, choose 'from your history' option"> | 27 <param name="ref_source" type="select" label="Select TARGET sequnce(s) to align against" help="If your TARGET is in history, choose 'from your history' option"> |
13 <option value="cached">locally cached</option> | 28 <option value="cached">locally cached</option> |
17 <param name="target_2bit" type="select" label="Using reference genome" help="If your genome of interest is not listed, contact the Galaxy team"> | 32 <param name="target_2bit" type="select" label="Using reference genome" help="If your genome of interest is not listed, contact the Galaxy team"> |
18 <options from_data_table="lastz_seqs" /> | 33 <options from_data_table="lastz_seqs" /> |
19 </param> | 34 </param> |
20 </when> | 35 </when> |
21 <when value="history"> | 36 <when value="history"> |
22 <param name="target" type="data" format="fasta" label="Select a reference dataset" /> | 37 <param name="target" type="data" format="fasta,fasta.gz" label="Select a reference dataset" /> |
23 </when> | 38 </when> |
24 </conditional> | 39 </conditional> |
25 </xml> | 40 </xml> |
26 <xml name="citations"> | 41 <xml name="citations"> |
27 <citations> | 42 <citations> |