Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/ValueDistribution.xml @ 16:35031c567ece draft
Add sam_fa_indices.loc.sample to enable DNAProperty and FindNMer tools that require samtools indices to be installed.
author | timpalpant |
---|---|
date | Sat, 09 Jun 2012 16:06:25 -0400 |
parents | 3e477c7e0e73 |
children |
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:
12
diff
changeset
|
1 <tool id="WigValueDistribution" name="Compute the value distribution" version="1.1.0"> |
10 | 2 <description>of a (Big)Wig file</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 wigmath.ValueDistribution -i $input |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
4 #if str( $min ) != '' |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
5 --min $min |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
6 #end if |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
7 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
8 #if str( $max ) != '' |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
9 --max $max |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
10 #end if |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
11 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
12 -n $bins -o $output |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
13 </command> |
10 | 14 <inputs> |
15 <param format="bigwig,wig" name="input" type="data" label="(Big)Wig file" /> | |
11 | 16 <param name="min" type="float" optional="true" label="Minimum bin value (optional)" /> |
17 <param name="max" type="float" optional="true" label="Maximum bin value (optional)" /> | |
10 | 18 <param name="bins" type="integer" value="40" label="Number of bins" /> |
19 </inputs> | |
20 <outputs> | |
21 <data format="txt" name="output" /> | |
22 </outputs> | |
23 | |
24 <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
|
25 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
26 This tool computes a histogram of the values in a Wig file, as well as the moments of the distribution. |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
27 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
28 ----- |
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 **Syntax** |
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 - **Input data** is the genomic data used to compute the histogram. |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
33 - **Minimum bin value** is the smallest bin. If unset, it is equal to the minimum value in the input data |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
34 - **Maximum bin value** is the largest bin. If unset, it is equal to the maximum value in the input data |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
35 - **Number of bins** is the number of bins to use. The bin size will be equal to (max - min) / (# bins). |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
36 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
37 ----- |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
38 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
39 **Output** |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
40 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
41 The output is in 2-column tabular format, where the first column represents the lower edge of a bin inteval and the second column represents the number of values that fell in that bin. For example if the **minimum bin value** is 0, the **maximum bin value** is 0.3, and the **number of bins** is 3, then the following output might be produced :: |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
42 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
43 bin count |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
44 <0 3 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
45 0 1 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
46 0.1 10 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
47 0.2 4 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
48 >0.3 12 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
49 |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
50 where there were 3 values in (-inf, 0), 1 value in [0, 0.1), 10 values in [0.1, 0.2), 4 values in [0.2, 0.3), and 12 values in [0.3, inf). |
81d5b81fb3c2
Added help for all tools in the toolkit. Many bug fixes and a few new nucleosome tools.
timpalpant
parents:
11
diff
changeset
|
51 |
10 | 52 </help> |
53 </tool> |