annotate flanking_features.xml @ 2:a09d13b108fd draft

planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
author devteam
date Thu, 22 Jun 2017 18:41:16 -0400
parents 90100b587723
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
1 <tool id="flanking_features_1" name="Fetch closest non-overlapping feature" version="4.0.1">
2
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
2 <description>for every interval</description>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
3 <macros>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
4 <import>macros.xml</import>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
5 </macros>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
6 <expand macro="requirements" />
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
7 <command><![CDATA[
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
8 python '$__tool_directory__/flanking_features.py'
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
9 '$input1'
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
10 '$input2'
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
11 '$out_file1'
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
12 $direction
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
13
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
14 #if $input1.is_of_type('gff')
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
15 -1 1,4,5,7 --gff1
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
16 #else:
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
17 -1 ${input1.metadata.chromCol},${input1.metadata.startCol},${input1.metadata.endCol},${input1.metadata.strandCol}
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
18 #end if
0
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
19
2
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
20 #if $input2.is_of_type('gff')
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
21 -2 1,4,5,7 --gff2
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
22 #else:
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
23 -2 ${input2.metadata.chromCol},${input2.metadata.startCol},${input2.metadata.endCol},${input2.metadata.strandCol}
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
24 #end if
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
25 ]]></command>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
26 <inputs>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
27 <param name="input1" type="data" format="interval,gff" label="For every interval in"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
28 <param name="input2" type="data" format="interval,gff" label="Fetch closest feature(s) from"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
29 <param name="direction" type="select" label="Located">
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
30 <option value="Either">Either Upstream or Downstream</option>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
31 <option value="Both">Both Upstream and Downstream</option>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
32 <option value="Upstream">Upstream</option>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
33 <option value="Downstream">Downstream</option>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
34 </param>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
35 </inputs>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
36 <outputs>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
37 <data name="out_file1" format_source="input1" metadata_source="input1"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
38 </outputs>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
39 <tests>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
40 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
41 <param name="input1" value="4_windows.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
42 <param name="input2" value="4_windows_2.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
43 <param name="direction" value="Either"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
44 <output name="out_file1" file="closest_features_either.interval"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
45 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
46 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
47 <param name="input1" value="4_windows.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
48 <param name="input2" value="4_windows_2.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
49 <param name="direction" value="Both"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
50 <output name="out_file1" file="closest_features.interval"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
51 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
52 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
53 <param name="input1" value="4_windows.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
54 <param name="input2" value="4_windows_2.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
55 <param name="direction" value="Upstream"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
56 <output name="out_file1" file="closest_features_up.interval"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
57 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
58 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
59 <param name="input1" value="4_windows.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
60 <param name="input2" value="4_windows_2.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
61 <param name="direction" value="Downstream"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
62 <output name="out_file1" file="closest_features_down.interval"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
63 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
64 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
65 <param name="input1" value="4_windows.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
66 <param name="input2" value="4_windows_3.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
67 <param name="direction" value="Both"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
68 <output name="out_file1" file="closest_features_both.interval"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
69 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
70 <!-- Tests for GFF functionality. -->
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
71 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
72 <param name="input1" value="4_windows.bed"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
73 <param name="input2" value="4_windows_2.gff" ftype="gff" />
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
74 <param name="direction" value="Either"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
75 <output name="out_file1" file="closest_features_both.gff"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
76 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
77 <test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
78 <param name="input1" value="4_windows.gff" ftype="gff" />
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
79 <param name="input2" value="4_windows_2.gff" ftype="gff" />
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
80 <param name="direction" value="Either"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
81 <output name="out_file1" file="closest_features_both2.gff"/>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
82 </test>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
83 </tests>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
84 <help><![CDATA[
0
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
85 .. class:: infomark
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
86
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
87 **What it does**
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
88
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
89 For every interval in the **interval** dataset, this tool fetches the **closest non-overlapping** upstream and / or downstream features from the **features** dataset.
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
90
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
91 -----
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
92
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
93 .. class:: warningmark
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
94
2
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
95 **Note:**
0
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
96
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
97 Every line should contain at least 3 columns: chromosome number, start and stop coordinates. If any of these columns is missing or if start and stop coordinates are not numerical, the lines will be treated as invalid and skipped. The number of skipped lines is documented in the resulting history item as a "data issue".
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
98
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
99 If the strand column is missing from your input interval dataset, the intervals will be considered to be on positive strand. You can add a strand column to your input dataset by using the *Text Manipulation->Add column* tool.
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
100
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
101 For GFF files, features are added as a GTF-style attribute at the end of the line.
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
102
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
103 -----
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
104
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
105 **Example**
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
106
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
107 If the **intervals** are::
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
108
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
109 chr1 10 100 Query1.1
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
110 chr1 500 1000 Query1.2
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
111 chr1 1100 1250 Query1.3
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
112
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
113 and the **features** are::
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
114
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
115 chr1 120 180 Query2.1
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
116 chr1 140 200 Query2.2
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
117 chr1 580 1050 Query2.3
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
118 chr1 2000 2204 Query2.4
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
119 chr1 2500 3000 Query2.5
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
120
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
121 Running this tool for **Both Upstream and Downstream** will return::
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
122
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
123 chr1 10 100 Query1.1 chr1 120 180 Query2.1
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
124 chr1 500 1000 Query1.2 chr1 140 200 Query2.2
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
125 chr1 500 1000 Query1.2 chr1 2000 2204 Query2.4
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
126 chr1 1100 1250 Query1.3 chr1 580 1050 Query2.3
90100b587723 Imported from capsule None
devteam
parents:
diff changeset
127 chr1 1100 1250 Query1.3 chr1 2000 2204 Query2.4
2
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
128 ]]></help>
a09d13b108fd planemo upload for repository https://github.com/galaxyproject/tools-devteam/tree/master/tool_collections/gops/flanking_features commit cae3e05d02e60f595bb8b6d77a84f030e9bd1689
devteam
parents: 0
diff changeset
129 </tool>