annotate creatematrix.xml @ 54:8855844f40a8 draft

Uploaded the latest version of our Flapjack tools for Galaxy.
author cropgeeks
date Tue, 14 Nov 2017 06:42:48 -0500
parents
children 6777844fd638
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
54
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
1 <tool id="flapjack_creatematrix" name="Flapjack Create Similarity Matrix" version="0.0.1">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
2 <description>Create a similarity matrix from the given Genotype file</description>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
3 <command><![CDATA[
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
4 java
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
5 #if $adv_opts.show_advanced
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
6 -Xmx$adv_opts.memory
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
7 #end if
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
8 -cp $__tool_directory__/lib/flapjack.jar jhi.flapjack.io.cmd.CreateMatrix
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
9 -g $genotypes
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
10 -o $output
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
11 #if $map
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
12 -m $map
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
13 #end if
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
14 #if $adv_opts.show_advanced
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
15 $adv_opts.allChromosomes
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
16 $adv_opts.collapseHets
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
17 -M "$adv_opts.missingData"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
18 -S "$adv_opts.hetSep"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
19 $adv_opts.transposed
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
20 $adv_opts.decimalEnglish
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
21 #end if
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
22 #if $create_project
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
23 -p $project
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
24 #end if
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
25 ]]></command>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
26 <inputs>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
27 <param format="fjmap" name="map" type="data" label="Flapjack map file"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
28 help="Flapjack-formatted (tab-delimited text) input file of map data"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
29 optional="true"/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
30 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
31 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
32
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
33 <!-- WARNING: Below is the advanced options section shared by all of our tools. If you alter it here you must update the other tools as well.-->
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
34 <conditional name="adv_opts">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
35 <param name="show_advanced" type="boolean"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
36 label="Enable advanced options"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
37 truevalue="show" falsevalue="">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
38 </param>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
39 <when value="show">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
40 <param name="allChromosomes" type="boolean" truevalue="-A" falsevalue="" checked="False"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
41 label="Duplicate all markers onto a single 'All Chromosomes' chromosome"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
42 help="Imports the data so that an additional 'All Chromosomes' chromosome is created, containing every marker in the dataset held together."/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
43
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
44 <param name="collapseHets" type="boolean" truevalue="-C" falsevalue="" checked="True"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
45 label="Don't distinguish between heterozygous alleles"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
46 help="Ignores phase between heterozygous alleles, treating, for example, A/T the same as T/A."/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
47
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
48 <param name="missingData" type="text" value="-"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
49 label="Missing data string"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
50 help="Alleles with missing data are encoded using this string. Clear the box to use an empty string for missing data instead."/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
51
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
52 <param name="hetSep" type="text" value="/"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
53 label="Heterozygous allele separator string"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
54 help="Specifies the string used to separator heterozygous alleles (eg 'A/T'). Clear the box to specify no string is used (eg 'AT')"/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
55
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
56 <param name="transposed" type="boolean" truevalue="-T" falsevalue="" checked="False"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
57 label="Genotype data has been transposed"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
58 help="Flapjack's default format has markers as columns. Select this to specify markers as rows instead."/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
59
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
60 <param name="decimalEnglish" type="boolean" truevalue="-D" falsevalue="" checked="False"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
61 label="Force English-style decimal marks"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
62 help="Always process input data using '.' as the decimal separator, irrespective of this Galaxy server's locale settings."/>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
63
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
64 <param name="memory" type="select"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
65 label="Memory"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
66 help="How much memory to use (larger files may require more memory).">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
67 <option selected="true" value="64m">64MB</option>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
68 <option value="128m">128MB</option>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
69 <option value="256m">256MB</option>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
70 </param>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
71 </when>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
72 </conditional>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
73 <!-- WARNING: Above is the advanced options section shared by all of our tools. If you alter it here you must update the other tools as well.-->
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
74
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
75 <param name="create_project" type="boolean" label="Also create Flapjack project file"
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
76 truevalue="true" falsevalue="false" help="Creates an additional Flapjack project file containing the generated similarity matrix.">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
77 </param>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
78 </inputs>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
79
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
80 <outputs>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
81 <data format="tabular" name="output" />
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
82 <data format="flapjack" name="project">
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
83 <filter>create_project</filter>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
84 </data>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
85 </outputs>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
86
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
87 <stdio>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
88 <exit_code range="1:" />
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
89 </stdio>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
90
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
91 <help><![CDATA[
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
92 .. class:: infomark
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
93
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
94 **What it does**
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
95
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
96 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
97 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
98
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
99 Flapjack documentation_
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
100
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
101 .. _documentation: http://flapjack.hutton.ac.uk/en/latest/command_line_support.html#creatematrix-exe-jhi-flapjack-io-creatematrix
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
102 ]]></help>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
103
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
104 <citations>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
105 <citation type="doi">10.1093/bioinformatics/btq580</citation>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
106 </citations>
8855844f40a8 Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
diff changeset
107 </tool>