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