4
|
1 <tool id="flapjack_mabcstats" name="Flapjack MABCStats" version="0.0.1">
|
|
2
|
|
3 <description>Run marker assisted backcrossing analysis on a dataset</description>
|
|
4
|
|
5 <command><![CDATA[
|
|
6 java
|
|
7 #if $advanced_options.show_advanced
|
|
8 -Xmx$advanced_options.memory
|
|
9 #end if
|
|
10 -cp $__tool_directory__/lib/flapjack.jar jhi.flapjack.io.cmd.GenerateMabcStats
|
|
11 -map=$map
|
|
12 -genotypes=$genotypes
|
|
13 -qtls=$qtls
|
|
14 -parent1=$parent1
|
|
15 -parent2=$parent2
|
|
16 -model=$model
|
|
17 -coverage=$coverage
|
|
18 #if $advanced_options.show_advanced
|
|
19 $advanced_options.decimalEnglish
|
|
20 #end if
|
|
21 -output=$output
|
46
|
22 #if $create
|
43
|
23 -project=$project
|
|
24 #end if
|
4
|
25 ]]></command>
|
|
26
|
|
27 <inputs>
|
|
28 <param format="fjmap" name="map" type="data" label="Flapjack map file"
|
|
29 help="Flapjack-formatted (tab-delimited text) input file of map data"/>
|
|
30 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file"
|
|
31 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/>
|
|
32 <param format="fjqtl" name="qtls" type="data" label="Flapjack QTL file"
|
|
33 help="Flapjack-formatted (tab-delimited text) input file of QTL data"/>
|
|
34 <param name="parent1" type="integer" value="1" label="Index of recurrent parent"
|
|
35 help="The index of the recurrent parent in the genotype file"/>
|
|
36 <param name="parent2" type="integer" value="2" label="Index of donor parent"
|
|
37 help="The index of the donor parent in the genotype file"/>
|
|
38 <param name="model" type="select" label="Model"
|
|
39 help="The model to use for calculating statistics">
|
|
40 <option selected="true" value="weighted">Weighted</option>
|
|
41 <option value="unweighted">Unweighted</option>
|
|
42 </param>
|
|
43 <param name="coverage" type="float" value="10" label="Maximum coverage of a marker"
|
|
44 help="The maximum length of genome a marker can represent"/>
|
|
45 <conditional name="advanced_options">
|
|
46 <param name="show_advanced" type="boolean" label="Enable advanced options"
|
|
47 truevalue="show" falsevalue="">
|
|
48 </param>
|
|
49 <when value="show">
|
|
50 <param name="decimalEnglish" type="boolean" truevalue="-decimalEnglish" falsevalue="" checked="True"
|
|
51 label="Force English-style decimal marks"
|
|
52 help="Always process input data using '.' as the decimal separator, irrespective of this Galaxy's locale settings"/>
|
|
53 <param name="memory" type="select" label="Memory"
|
|
54 help="How much memory to use; larger files may require more memory">
|
|
55 <option selected="true" value="64m">64MB</option>
|
|
56 <option value="128m">128MB</option>
|
|
57 <option value="256m">256MB</option>
|
|
58 </param>
|
|
59 </when>
|
43
|
60 </conditional>
|
|
61
|
46
|
62 <param name="create" type="boolean" label="Also create Flapjack project file"
|
|
63 truevalue="true" falsevalue="false" help="Creates an additional Flapjack project file containing the MABC results.">
|
|
64 </param>
|
4
|
65 </inputs>
|
|
66
|
|
67 <outputs>
|
|
68 <data format="tabular" name="output" />
|
43
|
69 <data format="flapjack" name="project">
|
45
|
70 <filter>create == "true"</filter>
|
43
|
71 </data>
|
|
72
|
4
|
73 </outputs>
|
|
74
|
|
75 <stdio>
|
|
76 <exit_code range="1:" />
|
|
77 </stdio>
|
|
78
|
|
79 <help><![CDATA[
|
|
80 .. class:: infomark
|
|
81
|
|
82 **What it does**
|
|
83
|
|
84 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
|
|
85 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
|
|
86
|
|
87 This tool converts a Flapjack-formatted file of genotype data into a corresponding HDF5 file.
|
|
88 See Flapjack's documentation_ for more details on the various Flapjack data formats.
|
|
89
|
|
90 .. _documentation: https://ics.hutton.ac.uk/wiki/index.php/Flapjack_Help_%2D_Projects_and_Data_Formats
|
|
91
|
|
92 ]]></help>
|
|
93 <citations>
|
|
94 <citation type="doi">10.1093/bioinformatics/btq580</citation>
|
|
95 </citations>
|
|
96 </tool> |