annotate cloudmap.xml @ 3:dea4e23ba53f draft default tip

upgrade to v0.1.5.1
author wolma
date Fri, 16 Jan 2015 10:53:42 -0500
parents e81a2448d1fb
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
1 <tool id="cloudmap_prepare" name="Prepare variant data for mapping">
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
2 <description>with the CloudMap series of tools.</description>
3
dea4e23ba53f upgrade to v0.1.5.1
wolma
parents: 1
diff changeset
3 <requirements>
dea4e23ba53f upgrade to v0.1.5.1
wolma
parents: 1
diff changeset
4 <requirement type="package" version="0.1.5">mimodd</requirement>
dea4e23ba53f upgrade to v0.1.5.1
wolma
parents: 1
diff changeset
5 </requirements>
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
6 <version_command>mimodd version -q</version_command>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
7 <command>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
8 mimodd cloudmap "$ifile" ${run.mode}
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
9
1
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
10 #if $str($run.mode) != "SVD":
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
11 "${run.refsample}"
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
12 #end if
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
13
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
14 "$sample" -o $ofile
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
15
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
16 #if $seqdict:
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
17 -s $dictfile
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
18 #end if
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
19 </command>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
20
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
21 <inputs>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
22 <param name="ifile" type="data" format="vcf" label="vcf input file" />
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
23 <conditional name="run">
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
24 <param name="mode" type="select" label="CloudMap analysis to prepare data for">
1
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
25 <option value="SVD">EMS Variant Density Mapping</option>
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
26 <option value="VAF">Variant Discovery / Hawaiian Variant Mapping</option>
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
27 </param>
1
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
28 <when value="SVD">
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
29 <param name="refsample" type="hidden" value="None" />
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
30 </when>
1
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
31 <when value="VAF">
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
32 <param name="refsample" type="text" label="name of the reference sample" help="the sample that provides mapping strain variants" />
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
33 </when>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
34 </conditional>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
35 <param name="sample" type="text" label="subject sample name" help="the sample to perform CloudMap mapping for" />
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
36 <param name="seqdict" type="boolean" checked="true" label="Generate species configuration file for CloudMap" />
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
37
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
38 </inputs>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
39
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
40 <outputs>
1
e81a2448d1fb upgrade to v0.1.5.1
wolma
parents: 0
diff changeset
41 <data name="ofile" format="vcf" label="CloudMap-ready ${run.mode} File from ${on_string}" />
0
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
42 <data name="dictfile" format="tabular" label="Species Configuration File for CloudMap from ${on_string}">
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
43 <filter>seqdict</filter>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
44 </data>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
45 </outputs>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
46
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
47 <help>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
48 .. class:: infomark
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
49
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
50 **What it does**
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
51
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
52 The purpose of this tool is to provide compatibility of the MiModD analysis workflow with the external `CloudMap`_ *EMS Variant Density Mapping*, *Variant Discovery Mapping* and *Hawaiian Variant Mapping* tools.
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
53
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
54 These tools complement MiModD by providing easily interpreted visualizations of mapping-by-sequencing analysis workflows.
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
55
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
56 The tool converts a VCF file as generated by the *Extract Variant Sites* or *VCF Filter* tools to the format expected by the *CloudMap* series of tools.
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
57
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
58 Optionally, it also extracts the chromosome names and sizes and reports them in the *CloudMap* *species configuration file* format.
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
59 Such a file is required as input to the current versions of the *CloudMap* *Hawaiian* and *Variant Density* mapping tools, if you are working with a species other than the natively supported ones (i.e., other than *C. elegans* or *A. thaliana*).
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
60
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
61 To use the output datasets of the tool with *CloudMap*, you only have to upload them to any public Galaxy server that hosts *CloudMap* like, e.g., the main Galaxy server at https://usegalaxy.org .
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
62
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
63 .. class:: warningmark
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
64
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
65 EMS Variant Density Mapping is currently limited to *C. elegans* and other species with six chromosomes on the *CloudMap* side.
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
66
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
67 .. _CloudMap: https://usegalaxy.org/u/gm2123/p/cloudmap
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
68
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
69 </help>
17ea8fd2ca18 Imported from capsule None
wolma
parents:
diff changeset
70 </tool>