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
|
|
22 ]]></command>
|
|
23
|
|
24 <inputs>
|
|
25 <param format="fjmap" name="map" type="data" label="Flapjack map file"
|
|
26 help="Flapjack-formatted (tab-delimited text) input file of map data"/>
|
|
27 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file"
|
|
28 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/>
|
|
29 <param format="fjqtl" name="qtls" type="data" label="Flapjack QTL file"
|
|
30 help="Flapjack-formatted (tab-delimited text) input file of QTL data"/>
|
|
31 <param name="parent1" type="integer" value="1" label="Index of recurrent parent"
|
|
32 help="The index of the recurrent parent in the genotype file"/>
|
|
33 <param name="parent2" type="integer" value="2" label="Index of donor parent"
|
|
34 help="The index of the donor parent in the genotype file"/>
|
|
35 <param name="model" type="select" label="Model"
|
|
36 help="The model to use for calculating statistics">
|
|
37 <option selected="true" value="weighted">Weighted</option>
|
|
38 <option value="unweighted">Unweighted</option>
|
|
39 </param>
|
|
40 <param name="coverage" type="float" value="10" label="Maximum coverage of a marker"
|
|
41 help="The maximum length of genome a marker can represent"/>
|
|
42 <conditional name="advanced_options">
|
|
43 <param name="show_advanced" type="boolean" label="Enable advanced options"
|
|
44 truevalue="show" falsevalue="">
|
|
45 </param>
|
|
46 <when value="show">
|
|
47 <param name="decimalEnglish" type="boolean" truevalue="-decimalEnglish" falsevalue="" checked="True"
|
|
48 label="Force English-style decimal marks"
|
|
49 help="Always process input data using '.' as the decimal separator, irrespective of this Galaxy's locale settings"/>
|
|
50 <param name="memory" type="select" label="Memory"
|
|
51 help="How much memory to use; larger files may require more memory">
|
|
52 <option selected="true" value="64m">64MB</option>
|
|
53 <option value="128m">128MB</option>
|
|
54 <option value="256m">256MB</option>
|
|
55 </param>
|
|
56 </when>
|
|
57 </conditional>
|
|
58 </inputs>
|
|
59
|
|
60 <outputs>
|
|
61 <data format="tabular" name="output" />
|
|
62 </outputs>
|
|
63
|
|
64 <stdio>
|
|
65 <exit_code range="1:" />
|
|
66 </stdio>
|
|
67
|
|
68 <help><![CDATA[
|
|
69 .. class:: infomark
|
|
70
|
|
71 **What it does**
|
|
72
|
|
73 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
|
|
74 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
|
|
75
|
|
76 This tool converts a Flapjack-formatted file of genotype data into a corresponding HDF5 file.
|
|
77 See Flapjack's documentation_ for more details on the various Flapjack data formats.
|
|
78
|
|
79 .. _documentation: https://ics.hutton.ac.uk/wiki/index.php/Flapjack_Help_%2D_Projects_and_Data_Formats
|
|
80
|
|
81 ]]></help>
|
|
82 <citations>
|
|
83 <citation type="doi">10.1093/bioinformatics/btq580</citation>
|
|
84 </citations>
|
|
85 </tool> |