annotate galaxy-conf/GeneTrackToWig.xml @ 15:3e477c7e0e73 draft

Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
author timpalpant
date Sat, 09 Jun 2012 16:03:59 -0400
parents eb53be9a09f4
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
15
3e477c7e0e73 Update normalization tools to allow normalizing by chromosome (Z-scorer, scale, etc.) Add new tool to convert any interval file to Bed format. Miscellaneous bug fixes.
timpalpant
parents: 13
diff changeset
1 <tool id="GeneTrackToWig" name="GeneTrack to Wig" version="1.1.0">
11
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
2 <description>converter</description>
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
3 <command interpreter="sh">galaxyToolRunner.sh converters.GeneTrackToWig -i $input -s $shift $zero -a ${chromInfo} -o $output</command>
11
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
4 <inputs>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
5 <param name="input" type="data" format="tabular" label="Input GeneTrack index" />
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
6 <param name="shift" type="integer" value="0" optional="true" label="Shift +/- strand counts by this amount when merging" />
11
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
7 <param name="zero" type="boolean" checked="false" truevalue="-z" falsevalue="" label="Assume zero where there is no data (default is NaN)" />
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
8 </inputs>
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
9 <outputs>
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
10 <data name="output" format="wig" metadata_source="input" />
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
11 </outputs>
13
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
12 <tests>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
13 <test>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
14 <param name="input" value="test.genetrack" ftype="tabular"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
15 <param name="shift" value="73"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
16 <param name="zero" value="true"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
17 <param name="chromInfo" value="sacCer2"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
18 <output name="output" file="geneTrackToWig1.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
19 </test>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
20 <test>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
21 <param name="input" value="test.genetrack" ftype="tabular"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
22 <param name="shift" value="0"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
23 <param name="zero" value="false"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
24 <param name="chromInfo" value="sacCer2"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
25 <output name="output" file="geneTrackToWig2.wig"/>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
26 </test>
eb53be9a09f4 Uploaded
timpalpant
parents: 12
diff changeset
27 </tests>
11
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
28 <help>
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
29
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
30 This tool will convert GeneTrack_ format files into Wig files, optionally offsetting the + and - strand counts by a specified value before merging them.
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
31
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
32 .. _GeneTrack: http://atlas.bx.psu.edu/genetrack/docs/genetrack.html
11
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
33
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
34 .. class:: warningmark
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
35
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
36 This tool requires GeneTrack formatted data. If you have tabular data that was not correctly autodetected, change the metadata by clicking on the pencil icon for the dataset.
12
81d5b81fb3c2 Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents: 11
diff changeset
37
11
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
38 </help>
b1952a90d4bf Uploaded
timpalpant
parents:
diff changeset
39 </tool>