Mercurial > repos > timpalpant > java_genomics_toolkit
annotate galaxy-conf/IntervalLengthDistribution.xml @ 24:a77e126ae856 draft
Reupload since last upload did not load correctly
author | timpalpant |
---|---|
date | Tue, 19 Jun 2012 22:15:09 -0400 |
parents | 9d56b5b85740 |
children | b43c420a6135 |
rev | line source |
---|---|
20
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
1 <tool id="IntervalLengthDistribution" name="Make histogram" version="1.0.0"> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
2 <description>of read lengths</description> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
3 <command interpreter="sh">galaxyToolRunner.sh ngs.IntervalLengthDistribution -i $input $freq -o $output</command> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
4 <inputs> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
5 <param name="input" type="data" format="sam,bam,bed,bedgraph,gff" label="Reads/Intervals" /> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
6 <param name="freq" type="boolean" checked="false" truevalue="-f" falsevalue="" label="Output normalized frequencies rather than counts" /> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
7 </inputs> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
8 <outputs> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
9 <data format="tabular" name="output" /> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
10 </outputs> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
11 <tests> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
12 <test> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
13 <param name="input" value="test.bed"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
14 <param name="freq" value="false"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
15 <output name="output" file="intervallengthdistribution1.txt"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
16 </test> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
17 <test> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
18 <param name="input" value="test.bed"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
19 <param name="freq" value="true"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
20 <output name="output" file="intervallengthdistribution2.txt"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
21 </test> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
22 <test> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
23 <param name="input" value="test2.bed"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
24 <param name="freq" value="false"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
25 <output name="output" file="intervallengthdistribution3.txt"/> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
26 </test> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
27 </tests> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
28 |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
29 <help> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
30 |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
31 This tool calculates the distribution of interval lengths from a list of intervals or reads in SAM, BAM, Bed, BedGraph, or GFF format. |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
32 |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
33 .. class:: warningmark |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
34 |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
35 For paired-end sequencing reads, the length is the length of the fragment (5' end of read 1 to 5' end of read 2) |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
36 |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
37 </help> |
9d56b5b85740
Reuploaded to see if tools get loaded correctly this time.
timpalpant
parents:
diff
changeset
|
38 </tool> |