Mercurial > repos > iuc > vapor
comparison vapor.xml @ 1:7bf891a13ace draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/vapor commit 8417888e4ecc1fd033d3412957c5475e29f66403
author | iuc |
---|---|
date | Sat, 01 Oct 2022 14:11:42 +0000 |
parents | 3fe0d1df3950 |
children | b1ca81ce88f9 |
comparison
equal
deleted
inserted
replaced
0:3fe0d1df3950 | 1:7bf891a13ace |
---|---|
1 <tool id="vapor" name="VAPOR" version="@TOOL_VERSION@+galaxy0" profile="21.05"> | 1 <tool id="vapor" name="VAPOR" version="@TOOL_VERSION@+galaxy1" profile="21.05"> |
2 <description> | 2 <description> |
3 Classify Influenza samples from raw short read sequence data | 3 Classify Influenza samples from raw short read sequence data |
4 </description> | 4 </description> |
5 <macros> | 5 <macros> |
6 <token name="@TOOL_VERSION@">1.0.2</token> | 6 <token name="@TOOL_VERSION@">1.0.2</token> |
27 -q | 27 -q |
28 > out_file | 28 > out_file |
29 ]]> </command> | 29 ]]> </command> |
30 <inputs> | 30 <inputs> |
31 <param name="fasta_file" format="fasta" type="data" label="FASTA file" help="Raw short read sequences (full length reference segment sequences)" /> | 31 <param name="fasta_file" format="fasta" type="data" label="FASTA file" help="Raw short read sequences (full length reference segment sequences)" /> |
32 <param name="fastq_file" format="fastq,fastq.gz" type="data" multiple="true" label="FASTQ file(s)" help="WGS reads" /> | 32 <param name="fastq_file" format="fastq,fastq.gz,fastqsanger,fastqsanger.gz" type="data" multiple="true" label="FASTQ file(s)" help="WGS reads" /> |
33 <param name="output_type" type="select" label="Output type"> | 33 <param name="output_type" type="select" label="Output type"> |
34 <option value="scores" selected="true">Return scores only</option> | 34 <option value="scores" selected="true">Return scores only</option> |
35 <option value="fasta">Return FASTA only</option> | 35 <option value="fasta">Return FASTA only</option> |
36 </param> | 36 </param> |
37 <section name="opt" title="Optional arguments" expanded="true"> | 37 <section name="opt" title="Optional arguments" expanded="true"> |
42 <param name="min_kmer_prop" type="float" value="0.1" label="Min kmer proportion" help="Minimum proportion of matched kmers allowed for queries" /> | 42 <param name="min_kmer_prop" type="float" value="0.1" label="Min kmer proportion" help="Minimum proportion of matched kmers allowed for queries" /> |
43 <param name="top_seed_frac" type="float" min="0.0" max="1.0" value="0.2" label="Fraction of best seeds to extend" help="" /> | 43 <param name="top_seed_frac" type="float" min="0.0" max="1.0" value="0.2" label="Fraction of best seeds to extend" help="" /> |
44 </section> | 44 </section> |
45 </inputs> | 45 </inputs> |
46 <outputs> | 46 <outputs> |
47 <data name="output_scores" from_work_dir="out_file" format="tabular" label="VAPOR: closest reference"> | 47 <data name="output_scores" from_work_dir="out_file" format="tabular" label="${tool.name} on ${on_string}: closest reference scores"> |
48 <filter>output_type == "scores"</filter> | 48 <filter>output_type == "scores"</filter> |
49 <actions> | 49 <actions> |
50 <action name="column_names" type="metadata" default="% of query bases in reads,Total score,Query length,Mean score,Reads after culling,Query description" /> | 50 <action name="column_names" type="metadata" default="% of query bases in reads,Total score,Query length,Mean score,Reads after culling,Query description" /> |
51 </actions> | 51 </actions> |
52 </data> | 52 </data> |
53 <data name="output_fasta" from_work_dir="out_file" format="fasta" label="VAPOR: closest reference (fasta)"> | 53 <data name="output_fasta" from_work_dir="out_file" format="fasta" label="${tool.name} on ${on_string}: closest reference fasta"> |
54 <filter>output_type == "fasta"</filter> | 54 <filter>output_type == "fasta"</filter> |
55 </data> | 55 </data> |
56 </outputs> | 56 </outputs> |
57 <tests> | 57 <tests> |
58 <test expect_num_outputs="1"> | 58 <test expect_num_outputs="1"> |
59 <param name="fasta_file" value="HA_sample.fa" /> | 59 <param name="fasta_file" value="HA_sample.fa" /> |
60 <param name="fastq_file" value="test_reads.fq" /> | 60 <param name="fastq_file" value="test_reads.fq" /> |
61 <output name="output_scores" file="output1.tab" /> | |
62 </test> | |
63 <test expect_num_outputs="1"> | |
64 <param name="fasta_file" value="HA_sample.fa" /> | |
65 <param name="fastq_file" value="test_reads.fastqsanger.gz" /> | |
61 <output name="output_scores" file="output1.tab" /> | 66 <output name="output_scores" file="output1.tab" /> |
62 </test> | 67 </test> |
63 <test expect_num_outputs="1"> | 68 <test expect_num_outputs="1"> |
64 <param name="fasta_file" value="HA_sample.fa" /> | 69 <param name="fasta_file" value="HA_sample.fa" /> |
65 <param name="fastq_file" value="test_reads.fq" /> | 70 <param name="fastq_file" value="test_reads.fq" /> |