Mercurial > repos > cropgeeks > flapjack
annotate hapmap2fj.xml @ 70:ca17d7295f9e draft
Uploaded
author | cropgeeks |
---|---|
date | Thu, 22 Feb 2018 07:42:08 -0500 |
parents | 6777844fd638 |
children |
rev | line source |
---|---|
36 | 1 <tool id="flapjack_hapmap2fj" name="HapMap to Flapjack" version="0.0.1"> |
55
6777844fd638
Updated the descriptions of the Flapjack tools to be more consistent.
cropgeeks
parents:
54
diff
changeset
|
2 <description>convert a HapMap formatted file into a Flapjack formatted genotype file</description> |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
3 <command><![CDATA[ |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
4 java |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
5 #if $adv_opts.show_advanced |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
6 -Xmx$adv_opts.memory |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
7 #end if |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
8 -cp $__tool_directory__/lib/flapjack.jar jhi.flapjack.io.cmd.HapMapToFJTabbedConverter |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
9 -h $hapmap |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
10 -s $separator |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
11 -m $map |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
12 -g $genotypes |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
13 ]]></command> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
14 <inputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
15 <param format="txt" name="hapmap" type="data" label="Source file" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
16 help="HapMap Formatted File"/> |
36 | 17 |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
18 <param name="separator" type="boolean" label="File is tab-separated" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
19 truevalue="t" falsevalue="s"> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
20 </param> |
36 | 21 |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
22 <conditional name="adv_opts"> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
23 <param name="show_advanced" type="boolean" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
24 label="Enable advanced options" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
25 truevalue="show" falsevalue=""> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
26 </param> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
27 <when value="show"> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
28 <param name="memory" type="select" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
29 label="Memory" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
30 help="How much memory to use (larger files may require more memory)."> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
31 <option selected="true" value="64m">64MB</option> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
32 <option value="128m">128MB</option> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
33 <option value="256m">256MB</option> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
34 </param> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
35 </when> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
36 </conditional> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
37 </inputs> |
36 | 38 |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
39 <outputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
40 <data format="fjmap" name="map" /> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
41 <data format="fjgenotype" name="genotypes" /> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
42 </outputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
43 |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
44 <stdio> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
45 <exit_code range="1:" /> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
46 </stdio> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
47 |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
48 <help><![CDATA[ |
36 | 49 .. class:: infomark |
50 | |
51 **What it does** | |
52 | |
53 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data, | |
54 allowing for rapid navigation and comparisons between lines, markers and chromosomes. | |
55 | |
56 This tool converts a Flapjack-formatted file of genotype data into a corresponding HDF5 file. | |
57 See Flapjack's documentation_ for more details on the various Flapjack data formats. | |
58 | |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
59 .. _documentation: https://ics.hutton.ac.uk/wiki/index.php/Flapjack_Help_%2D_Projects_and_Data_Formats |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
60 ]]></help> |
36 | 61 |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
62 <citations> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
63 <citation type="doi">10.1093/bioinformatics/btq580</citation> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
36
diff
changeset
|
64 </citations> |
36 | 65 </tool> |