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
|
6
|
15 -map=$map -genotypes=$genotypes
|
|
16 ## -galaxyHTML=$html
|
|
17 -project=$output
|
4
|
18 ]]>
|
|
19 </command>
|
|
20 <inputs>
|
|
21 <param format="fjmap" name="map" type="data" label="Flapjack map file"
|
|
22 help="Flapjack-formatted (tab-delimited text) input file of map data"/>
|
|
23 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file"
|
|
24 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/>
|
|
25
|
|
26 <param argument="decimalEnglish" type="boolean" truevalue="-decimalEnglish" falsevalue="" checked="True"
|
|
27 label="Read input data using decimal English"
|
|
28 help="Build the index using a perfect hash rather than a dense hash. This will require less memory
|
|
29 (especially during quantification), but will take longer to construct "/>
|
|
30 <param name="memory" type="select" label="Memory"
|
|
31 help="How much memory to use; larger files may require more memory">
|
|
32 <option selected="true" value="64m">64MB</option>
|
|
33 <option value="128m">128MB</option>
|
|
34 <option value="256m">256MB</option>
|
|
35 </param>
|
|
36 </inputs>
|
|
37 <outputs>
|
5
|
38 <!-- label="${tool.name} on ${on_string}: project.flapjack" -->
|
4
|
39 <data name="output" format="flapjack" />
|
6
|
40 <!--<data name="html" format="html" />-->
|
4
|
41 </outputs>
|
|
42
|
|
43 <stdio>
|
|
44 <exit_code range="1:" />
|
|
45 </stdio>
|
|
46
|
|
47 <help><![CDATA[
|
|
48 .. class:: infomark
|
|
49
|
|
50 **What it does**
|
|
51
|
|
52 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
|
|
53 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
|
|
54
|
|
55 This tool creates a Flapjack project file from the supplied tab-delimitted flapjack input files.
|
|
56 See Flapjack's documentation_ for more details on the various Flapjack data formats.
|
|
57
|
|
58 .. _documentation: https://ics.hutton.ac.uk/wiki/index.php/Flapjack_Help_%2D_Projects_and_Data_Formats
|
|
59
|
|
60
|
|
61
|
|
62 ]]></help>
|
|
63 <citations>
|
|
64 <citation type="doi">10.1093/bioinformatics/btq580</citation>
|
|
65 </citations>
|
|
66 </tool> |