Mercurial > repos > cropgeeks > flapjack
annotate fj2hdf5.xml @ 73:c79e832868ed draft
Uploaded
author | cropgeeks |
---|---|
date | Thu, 22 Feb 2018 10:15:09 -0500 |
parents | 6777844fd638 |
children |
rev | line source |
---|---|
4 | 1 <tool id="flapjack_fj2hdf5" name="Flapjack to HDF5" 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 Flapjack formatted genotype file into HDF5</description> |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
3 <command><![CDATA[ |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
4 java |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
5 #if $adv_opts.show_advanced |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
6 -Xmx$adv_opts.memory |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
7 #end if |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
8 -cp $__tool_directory__/lib/flapjack.jar jhi.flapjack.io.cmd.FJTabbedToHdf5Converter |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
9 -g $genotypes |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
10 -h $output |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
11 ]]></command> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
12 <inputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
13 <param format="fjgenotype" name="genotypes" type="data" label="Flapjack genotype file" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
14 help="Flapjack-formatted (tab-delimited text) input file of genotype data"/> |
4 | 15 |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
16 <conditional name="adv_opts"> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
17 <param name="show_advanced" type="boolean" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
18 label="Enable advanced options" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
19 truevalue="show" falsevalue=""> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
20 </param> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
21 <when value="show"> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
22 <param name="memory" type="select" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
23 label="Memory" |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
24 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:
4
diff
changeset
|
25 <option selected="true" value="64m">64MB</option> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
26 <option value="128m">128MB</option> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
27 <option value="256m">256MB</option> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
28 </param> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
29 </when> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
30 </conditional> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
31 </inputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
32 |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
33 <outputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
34 <data format="h5" name="output" /> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
35 </outputs> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
36 |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
37 <stdio> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
38 <exit_code range="1:" /> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
39 </stdio> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
40 |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
41 <help><![CDATA[ |
4 | 42 .. class:: infomark |
43 | |
44 **What it does** | |
45 | |
46 Flapjack is a multi-platform application providing interactive visualizations of high-throughput genotype data, | |
47 allowing for rapid navigation and comparisons between lines, markers and chromosomes. | |
48 | |
49 This tool converts a Flapjack-formatted file of genotype data into a corresponding HDF5 file. | |
50 See Flapjack's documentation_ for more details on the various Flapjack data formats. | |
51 | |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
52 .. _documentation: http://flapjack.hutton.ac.uk/en/latest/projects_&_data_formats.html |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
53 ]]></help> |
4 | 54 |
54
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
55 <citations> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
56 <citation type="doi">10.1093/bioinformatics/btq580</citation> |
8855844f40a8
Uploaded the latest version of our Flapjack tools for Galaxy.
cropgeeks
parents:
4
diff
changeset
|
57 </citations> |
4 | 58 </tool> |