65
|
1 <tool id="intertek_flapjack_snp_sample_processor" name="Intertek / Flapjack - SNP Sample File Processor" version="0.0.1">
|
60
|
2 <description>convert an HDF5 formatted genotype file into a Flapjack formatted genotype file</description>
|
|
3 <command><![CDATA[
|
|
4 java
|
|
5 #if $adv_opts.show_advanced
|
|
6 -Xmx$adv_opts.memory
|
|
7 #end if
|
65
|
8 -cp $__tool_directory__/lib/flapjack.jar jhi.flapjack.io.cmd.IntertekFlapjackSnpSampleFileProcessor
|
60
|
9 -g $genotype
|
|
10 -i $intertek
|
|
11 -o $output
|
|
12 ]]></command>
|
|
13 <inputs>
|
65
|
14 <param format="txt" name="intertek" type="data" label="Favourable allele file"
|
60
|
15 help="An Intertek file with favourable and unfavourable allele information for markers."/>
|
|
16 <param format="fjgenotype" name="genotype" type="data" label="Flapjack genotype file"
|
|
17 help="A Flapjack formatted genotype file with markers which match those in the intertek file so that we can
|
|
18 add the favourable and unfavourable allele information to this Flapjack genotype file."
|
|
19 optional="true"/>
|
|
20
|
|
21 <conditional name="adv_opts">
|
|
22 <param name="show_advanced" type="boolean"
|
|
23 label="Enable advanced options"
|
|
24 truevalue="show" falsevalue="">
|
|
25 </param>
|
|
26 <when value="show">
|
|
27 <param name="memory" type="select"
|
|
28 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 </when>
|
|
35 </conditional>
|
|
36 </inputs>
|
|
37
|
|
38 <outputs>
|
|
39 <data format="fjgenotype" name="output" />
|
|
40 </outputs>
|
|
41
|
|
42 <stdio>
|
|
43 <exit_code range="1:" />
|
|
44 </stdio>
|
|
45
|
|
46 <help><![CDATA[
|
|
47 .. class:: infomark
|
|
48
|
|
49 **What it does**
|
|
50
|
|
51 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
|
|
52 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
|
|
53
|
|
54 This tool converts a Flapjack-formatted file of genotype data into a corresponding HDF5 file.
|
|
55 See Flapjack's documentation_ for more details on the various Flapjack data formats.
|
|
56
|
|
57 .. _documentation: http://flapjack.hutton.ac.uk/en/latest/projects_&_data_formats.html
|
|
58 ]]></help>
|
|
59
|
|
60 <citations>
|
|
61 <citation type="doi">10.1093/bioinformatics/btq580</citation>
|
|
62 </citations>
|
|
63 </tool> |