annotate Wig_to_bedGraph/galaxy/Wig2bedGraph.xml @ 0:b4f83e06d7bf default tip

Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
author vipints
date Tue, 07 Jun 2011 17:43:04 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
1 <tool id="fml_wig2bed" name="Wig_to_bedGraph" version="1.0.0">
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
2 <description>converter</description>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
3 <command interpreter="perl">wig2bedGraph_converter.pl $inf_wig > $bed_format
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
4 </command>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
5 <inputs>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
6 <param format="wig" name="inf_wig" type="data" label="Convert this file" help="Data in fixedStep or variableStep wiggle format."/>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
7 </inputs>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
8 <outputs>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
9 <data format="bed" name="bed_format" />
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
10 </outputs>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
11 <tests>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
12 <test>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
13 <param name="inf_wig" value="hg17_chrY_pos.wig" />
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
14 <output name="bed_format" file="hg17_chrY_pos.bed" />
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
15 </test>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
16 </tests>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
17 <help>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
18
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
19 **What it does**
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
20
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
21 This tool converts data in wiggle fixedStep_ or variableStep_ format to four column bedGraph_ format.
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
22
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
23 .. _fixedStep: http://genome.ucsc.edu/goldenPath/help/wiggle.html
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
24 .. _variableStep: http://genome.ucsc.edu/goldenPath/help/wiggle.html
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
25 .. _bedGraph: http://genome.ucsc.edu/goldenPath/help/bedgraph.html
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
26
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
27 --------
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
28
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
29 **Example**
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
30
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
31 - The following data in wiggle fixedStep format::
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
32
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
33 track type=wiggle_0 name="ARTS+ chrY" description="ARTS - TSS Finder - chrY - positive strand" visibility=full autoScale=on color=0,200,100 maxHeightPixels=300:150:50 graphType=bar yLineMark=0 yLineOnOff=on smoothingWindow=2
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
34 fixedStep chrom=chrY start=1151 step=50
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
35 -1.17966
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
36 -0.56397
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
37 -0.79706
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
38 -0.99435
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
39 -1.11338
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
40 -1.23153
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
41
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
42 - Will be converted to bedGraph format::
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
43
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
44 chrY 1150 1151 -1.17966
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
45 chrY 1200 1201 -0.56397
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
46 chrY 1250 1251 -0.79706
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
47 chrY 1300 1301 -0.99435
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
48 chrY 1350 1351 -1.11338
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
49 chrY 1400 1401 -1.23153
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
50
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
51 --------
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
52
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
53 **About formats**
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
54
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
55 **Wiggle (variableStep)** The data is introduced by a line beginning with the keyword "variableStep", and the arguments "chrom" and "span", which indicate the chromosome on which the features are located, and the width of each feature, in base pairs. This is followed by a series of two-element lines indicating the start position of each feature, and its quantitative value. Values can be any sort of numeric data, including integers, negative numbers and floating point.
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
56
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
57 **Wiggle (fixedStep)** The data is introduced by a line beginning with the keyword "fixedStep", and the arguments "chrom", "span", "start" and "step". The first two arguments are the same as wiggle variableStep, while "start" and "step" indicate the starting position of the first feature, and the spacing between each feature. This is followed by a numeric value for each step.
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
58
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
59 **bedGraph** There are four required fields: ref_sequence,start,end and score. Note that here the coordinates are "zero-indexed", half open, which means the start coordinate is zero-indexed and the end coordinate is 1-indexed.
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
60
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
61 --------
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
62
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
63 This tool is a part of the **MLB Group at Friedrich Miescher Laboratory of the Max Planck Society**. Copyright (C) 2010-2011 Max Planck Society
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
64 </help>
b4f83e06d7bf Migrated tool version 1.0.0 from old tool shed archive to new tool shed repository
vipints
parents:
diff changeset
65 </tool>