4
|
1 <tool id="flapjack_createproject" name="Flapjack CreateProject" version="0.0.1">
|
|
2
|
|
3 <!--System.out.println("Usage: createproject <options>\n"
|
|
4 + " where valid options are:\n"
|
|
5 + " -map=<map_file> (optional input file)\n"
|
|
6 + " -genotypes=<genotypes_file> (required input file)\n"
|
|
7 + " -traits=<traits_file> (optional input file)\n"
|
|
8 + " -qtls=<qtl_file> (optional input file)\n"
|
|
9 + " -decimalEnglish (optional input parameter)\n"
|
|
10 + " -project=<project_file> (required output file)\n");-->
|
|
11
|
|
12 <description>Run pedigree verification of F1s (known parents) analysis</description>
|
|
13 <command><![CDATA[
|
|
14 java -Xmx$memory -cp $__tool_directory__/lib/flapjack.jar jhi.flapjack.io.cmd.CreateProject
|
|
15 -map=$map -genotypes=$genotypes -galaxyHTML=$html -project=$output
|
|
16 ]]>
|
|
17 </command>
|
|
18 <inputs>
|
|
19 <param format="fjmap" name="map" type="data" label="Flapjack map file"
|
|
20 help="Flapjack-formatted (tab-delimited text) input file of map data"/>
|
|
21 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file"
|
|
22 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/>
|
|
23
|
|
24 <param argument="decimalEnglish" type="boolean" truevalue="-decimalEnglish" falsevalue="" checked="True"
|
|
25 label="Read input data using decimal English"
|
|
26 help="Build the index using a perfect hash rather than a dense hash. This will require less memory
|
|
27 (especially during quantification), but will take longer to construct "/>
|
|
28 <param name="memory" type="select" label="Memory"
|
|
29 help="How much memory to use; larger files may require more memory">
|
|
30 <option selected="true" value="64m">64MB</option>
|
|
31 <option value="128m">128MB</option>
|
|
32 <option value="256m">256MB</option>
|
|
33 </param>
|
|
34 </inputs>
|
|
35 <outputs>
|
5
|
36 <!-- label="${tool.name} on ${on_string}: project.flapjack" -->
|
4
|
37 <data name="output" format="flapjack" />
|
|
38 <data name="html" format="html" />
|
|
39 </outputs>
|
|
40
|
|
41 <stdio>
|
|
42 <exit_code range="1:" />
|
|
43 </stdio>
|
|
44
|
|
45 <help><![CDATA[
|
|
46 .. class:: infomark
|
|
47
|
|
48 **What it does**
|
|
49
|
|
50 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
|
|
51 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
|
|
52
|
|
53 This tool creates a Flapjack project file from the supplied tab-delimitted flapjack input files.
|
|
54 See Flapjack's documentation_ for more details on the various Flapjack data formats.
|
|
55
|
|
56 .. _documentation: https://ics.hutton.ac.uk/wiki/index.php/Flapjack_Help_%2D_Projects_and_Data_Formats
|
|
57
|
|
58
|
|
59
|
|
60 ]]></help>
|
|
61 <citations>
|
|
62 <citation type="doi">10.1093/bioinformatics/btq580</citation>
|
|
63 </citations>
|
|
64 </tool> |