69
|
1 <tool id="flapjack_split_by_sample" name="Flapjack Split By Sample" version="0.0.1">
|
68
|
2 <description>create a Flapjack project file from Flapjack formatted input files.</description>
|
69
|
3 <command>
|
68
|
4 python $__tool_directory__/FlapjackProject.py
|
|
5 -j $__tool_directory__/lib/flapjack.jar
|
69
|
6 -g '$genotypes'
|
|
7 -s '$traits'
|
68
|
8 #if $map
|
69
|
9 -m '$map'
|
68
|
10 #end if
|
|
11 #if $qtls
|
69
|
12 -q '$qtls'
|
68
|
13 #end if
|
|
14 #if $adv_opts.show_advanced
|
|
15 -M "$adv_opts.missingData"
|
|
16 -S "$adv_opts.hetSep"
|
|
17 #end if
|
|
18 </command>
|
|
19 <inputs>
|
|
20 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file"
|
|
21 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/>
|
|
22
|
70
|
23 <param format="tabular" name="traits" type="data" label="Flapjack phenotype file"
|
68
|
24 help="Flapjack-formatted (tab-delimited text) input file of phenotype data"/>
|
|
25
|
|
26 <param format="fjmap" name="map" type="data" label="Flapjack map file"
|
|
27 help="Flapjack-formatted (tab-delimited text) input file of map data"
|
|
28 optional="true"/>
|
|
29
|
|
30 <param format="fjqtl" name="qtls" type="data" label="Flapjack QTL file"
|
|
31 help="Flapjack-formatted (tab-delimited text) input file of QTL data"
|
|
32 optional="true"/>
|
|
33
|
|
34 <!-- WARNING: Below is the advanced options section shared by all of our tools. If you alter it here you must update the other tools as well.-->
|
|
35 <conditional name="adv_opts">
|
|
36 <param name="show_advanced" type="boolean"
|
|
37 label="Enable advanced options"
|
|
38 truevalue="show" falsevalue="">
|
|
39 </param>
|
|
40 <when value="show">
|
|
41 <param name="missingData" type="text" value="-"
|
|
42 label="Missing data string"
|
|
43 help="Alleles with missing data are encoded using this string. Clear the box to use an empty string for missing data instead."/>
|
|
44
|
|
45 <param name="hetSep" type="text" value="/"
|
|
46 label="Heterozygous allele separator string"
|
|
47 help="Specifies the string used to separator heterozygous alleles (eg 'A/T'). Clear the box to specify no string is used (eg 'AT')"/>
|
|
48 </when>
|
|
49 </conditional>
|
|
50 <!-- WARNING: Above is the advanced options section shared by all of our tools. If you alter it here you must update the other tools as well.-->
|
|
51 </inputs>
|
|
52
|
|
53 <outputs>
|
|
54 <data name="output" format="flapjack" />
|
|
55 </outputs>
|
|
56
|
|
57 <stdio>
|
|
58 <exit_code range="1:" />
|
|
59 </stdio>
|
|
60
|
|
61 <help><![CDATA[
|
|
62 .. class:: infomark
|
|
63
|
|
64 **What it does**
|
|
65
|
|
66 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data,
|
|
67 allowing for rapid navigation and comparisons between lines, markers and chromosomes.
|
|
68
|
|
69 This tool creates a Flapjack project file from the supplied tab-delimitted flapjack input files.
|
|
70 See Flapjack's documentation_ for more details on the various Flapjack data formats.
|
|
71 More information on the CreateProject tool can be found here_
|
|
72
|
|
73 .. _documentation: http://flapjack.hutton.ac.uk/en/latest/projects_&_data_formats.html
|
|
74 .. _here: http://flapjack.hutton.ac.uk/en/latest/command_line_support.html#createproject-exe-jhi-flapjack-io-createproject
|
|
75 ]]></help>
|
|
76
|
|
77 <citations>
|
|
78 <citation type="doi">10.1093/bioinformatics/btq580</citation>
|
|
79 </citations>
|
|
80 </tool> |