Mercurial > repos > iuc > bedtools
annotate sortBed.xml @ 29:6bb3cd018203 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 69394918e7a50dad3ae578e932cbac27b96e0d3b
author | iuc |
---|---|
date | Tue, 24 Jul 2018 11:49:55 -0400 |
parents | 95a3b2c25bd1 |
children | 4f7a5ccd2ae9 |
rev | line source |
---|---|
4
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
1 <tool id="bedtools_sortbed" name="SortBED" version="@WRAPPER_VERSION@.0"> |
607c0576c6ab
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 6692e3a4fa1bf6e9a407735afdbb2454ed32b316
iuc
parents:
1
diff
changeset
|
2 <description>order the intervals</description> |
0 | 3 <macros> |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements" /> | |
7 <expand macro="stdio" /> | |
8 <command> | |
1 | 9 <![CDATA[ |
11
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
10 sortBed |
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
11 -i '$input' |
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
12 $option |
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
13 > '$output' |
1 | 14 ]]> |
0 | 15 </command> |
16 <inputs> | |
26
95a3b2c25bd1
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit b75b9e79cf3186a22dc2e1e9d27c1a080b891b59
iuc
parents:
11
diff
changeset
|
17 <param format="@STD_BEDTOOLS_INPUTS@" name="input" type="data" label="Sort the following @STD_BEDTOOLS_INPUT_LABEL@ file"/> |
0 | 18 <param name="option" type="select" label="Sort by"> |
19 <!-- sort -k 1,1 -k2,2 -n a.bed --> | |
20 <option value="">chromosome, then by start position (asc)</option> | |
21 <option value="-sizeA">feature size in ascending order.</option> | |
22 <option value="-sizeD">feature size in descending order.</option> | |
23 <option value="-chrThenSizeA">chromosome, then by feature size (asc).</option> | |
24 <option value="-chrThenSizeD">chromosome, then by feature size (desc).</option> | |
25 <option value="-chrThenScoreA">chromosome, then by score (asc).</option> | |
26 <option value="-chrThenScoreD">chromosome, then by score (desc).</option> | |
27 </param> | |
28 </inputs> | |
29 <outputs> | |
11
7308cc546a36
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/bedtools commit 19967671ddd4e750f53d71274e5c12325a402811
iuc
parents:
4
diff
changeset
|
30 <data format_source="input" name="output" metadata_source="input" label="SortBed on ${input.name}"/> |
0 | 31 </outputs> |
1 | 32 <tests> |
33 <test> | |
34 <param name="input" value="sortBed1.bed" ftype="bed" /> | |
35 <param name="option" value="" /> | |
36 <output name="output" file="sortBed_result1.bed" ftype="bed" /> | |
37 </test> | |
38 </tests> | |
0 | 39 <help> |
1 | 40 <![CDATA[ |
0 | 41 **What it does** |
42 | |
43 Sorts a feature file by chromosome and other criteria. | |
44 | |
45 | |
46 .. class:: warningmark | |
47 | |
48 It should be noted that sortBed is merely a convenience utility, as the UNIX sort utility | |
49 will sort BED files more quickly while using less memory. For example, UNIX sort will sort a BED file | |
50 by chromosome then by start position in the following manner: sort -k 1,1 -k2,2 -n a.bed | |
51 | |
52 @REFERENCES@ | |
1 | 53 ]]> |
0 | 54 </help> |
55 <expand macro="citations" /> | |
56 </tool> |