Mercurial > repos > dfornika > mash_screen
annotate mash_screen.xml @ 4:1ea94d7b8372 draft default tip
Uploaded
author | dfornika |
---|---|
date | Mon, 24 Feb 2020 21:05:12 +0000 |
parents | 561dc2d84650 |
children |
rev | line source |
---|---|
3 | 1 <tool id="mash_screen" name="mash screen" version="@TOOL_VERSION@+galaxy2" profile="19.01"> |
2 <description>determines how well query sequences are contained within a pool of sequences</description> | |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
3 <macros> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
4 <import>macros.xml</import> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
5 </macros> |
3 | 6 <expand macro="requirements" /> |
7 <expand macro="version_command" /> | |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
8 <command detect_errors="exit_code"><![CDATA[ |
3 | 9 #if str( $queries_input_source.queries_input_source_selector ) == "tool_data_table": |
10 ln -s '$queries_input_source.queries.fields.path' queries.msh && | |
11 #elif str( $queries_input_source.queries_input_source_selector ) == 'history': | |
12 ln -s '$queries_input_source.queries' queries.msh && | |
13 #end if | |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
14 mash screen |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
15 $winner_takes_all |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
16 -i $minimum_identity_to_report |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
17 -v $maximum_p_value_to_report |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
18 queries.msh |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
19 #if str( $pool_input.pool_input_selector ) == "paired" |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
20 '$pool_input.pool_1' '$pool_input.pool_2' |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
21 #end if |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
22 #if str( $pool_input.pool_input_selector ) == "paired_collection" |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
23 '$pool_input.pool.forward' '$pool_input.pool.reverse' |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
24 #end if |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
25 #if str( $pool_input.pool_input_selector ) == "single" |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
26 '$pool_input.pool' |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
27 #end if |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
28 > '$output' |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
29 ]]></command> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
30 <inputs> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
31 <conditional name="pool_input"> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
32 <param name="pool_input_selector" type="select" label="Single or Paired-end reads" help="Select between paired and single end data"> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
33 <option value="paired">Paired</option> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
34 <option value="single">Single</option> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
35 <option value="paired_collection">Paired Collection</option> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
36 </param> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
37 <when value="paired"> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
38 <param name="pool_1" type="data" format="@INTYPES@" label="Select first set of reads" help="Specify dataset with forward reads"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
39 <param name="pool_2" type="data" format="@INTYPES@" label="Select second set of reads" help="Specify dataset with reverse reads"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
40 </when> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
41 <when value="single"> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
42 <param name="pool" type="data" format="@INTYPES@" label="Select fastq dataset" help="Specify dataset with single reads"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
43 </when> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
44 <when value="paired_collection"> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
45 <param name="pool" format="@INTYPES@" type="data_collection" collection_type="paired" label="Select a paired collection" help="See help section for an explanation of dataset collections"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
46 </when> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
47 </conditional> |
3 | 48 <conditional name="queries_input_source"> |
49 <param name="queries_input_source_selector" type="select" label="Select queries from your history or use one from a tool data table?" help=""> | |
50 <option value="tool_data_table">Queries from tool data table</option> | |
51 <option selected="True" value="history">Queries from history</option> | |
52 </param> | |
53 <when value="tool_data_table"> | |
54 <param name="queries" type="select" label="Queries (Mash Sketch)"> | |
55 <options from_data_table="mash_sketches"/> | |
56 </param> | |
57 </when> | |
58 <when value="history"> | |
59 <param name="queries" type="data" format="msh" /> | |
60 </when> | |
61 </conditional> | |
62 <param name="winner_takes_all" argument="-w" type="boolean" checked="true" truevalue="-w" falsevalue="" label="'Winner takes all' to remove redundancy in the result" | |
63 help="If this option is not enabled, every matching strain from the same species of the reference database is reported in the result."/> | |
64 <param type="float" name="minimum_identity_to_report" argument="-i" value="0." min="-1." max="1." label="Minimum identity to report" /> | |
65 <param type="float" name="maximum_p_value_to_report" argument="-v" value="1." min="0." max="1." label="Maximum p-value to report" /> | |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
66 </inputs> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
67 <outputs> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
68 <data name="output" format="tabular" /> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
69 </outputs> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
70 <tests> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
71 <test> |
3 | 72 <param name="queries_input_source_selector" value="history"/> |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
73 <param name="queries" value="NZ_MYON01000010.1.msh"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
74 <param name="pool_input_selector" value="single"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
75 <param name="pool" value="ERR024951_seqtk_sample_1000_1.fastq"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
76 <output name="output" file="mash_screen_NZ_MYON01000010.1_ERR024951_seqtk_sample_1000_1.tsv"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
77 </test> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
78 <test> |
3 | 79 <param name="queries_input_source_selector" value="history"/> |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
80 <param name="queries" value="NZ_MYON01000010.1.msh"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
81 <param name="pool_input_selector" value="single"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
82 <param name="pool" value="ERR024951_seqtk_sample_1000_2.fastq"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
83 <output name="output" file="mash_screen_NZ_MYON01000010.1_ERR024951_seqtk_sample_1000_2.tsv"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
84 </test> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
85 <test> |
3 | 86 <param name="queries_input_source_selector" value="history"/> |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
87 <param name="queries" value="NZ_MYON01000010.1.msh"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
88 <param name="pool_input_selector" value="paired"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
89 <param name="pool_1" value="ERR024951_seqtk_sample_1000_1.fastq"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
90 <param name="pool_2" value="ERR024951_seqtk_sample_1000_2.fastq"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
91 <output name="output" file="mash_screen_NZ_MYON01000010.1_ERR024951_seqtk_sample_1000_1and2.tsv"/> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
92 </test> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
93 </tests> |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
94 <help><![CDATA[ |
3 | 95 |
96 **What it does** | |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
97 |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
98 Determine how well query sequences are contained within a pool of sequences. |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
99 The queries must be formatted as a single Mash sketch file (.msh), created |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
100 with the `mash sketch` command. The <pool> files can be contigs or reads, in |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
101 fasta or fastq, gzipped or not, and "-" can be given for <pool> to read from |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
102 standard input. The <pool> sequences are assumed to be nucleotides, and will |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
103 be 6-frame translated if the <queries> are amino acids. The output fields are |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
104 [identity, shared-hashes, median-multiplicity, p-value, query-ID, |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
105 query-comment], where median-multiplicity is computed for shared hashes, based |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
106 on the number of observations of those hashes within the pool. |
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
107 ]]></help> |
3 | 108 <expand macro="citations"/> |
0
f27853effdd6
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/mash commit b1e065ba7e15f9f10b969db1d561b0e8fe6d4572-dirty"
dfornika
parents:
diff
changeset
|
109 </tool> |