annotate microsats_alignment_level.xml @ 1:7852385470f3

Corrected version string.
author devteam <devteam@galaxyproject.org>
date Thu, 10 Apr 2014 13:47:31 -0400
parents d4368a5a3fc7
children 6f8257ad464b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1
7852385470f3 Corrected version string.
devteam <devteam@galaxyproject.org>
parents: 0
diff changeset
1 <tool id="microsats_align1" name="Extract Orthologous Microsatellites" version="1.0.0">
0
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
2 <description> from pair-wise alignments</description>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
3 <requirements>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
4 <requirement type="package" version="1.0">sputnik</requirement>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
5 </requirements>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
6 <command interpreter="python">
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
7 microsats_alignment_level.py $input1 $separation $out_file1 "2way" $mono_threshold $non_mono_threshold $allow_different_units
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
8 </command>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
9 <inputs>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
10 <page>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
11 <param format="fasta" name="input1" type="data" label="Select data"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
12 <param name="separation" size="10" type="integer" value="10" label="Minimum base pair distance between adjacent microsatellites"
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
13 help="A value of 10 means: Adjacent microsatellites separated by less than 10 base pairs will be excluded from the output."/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
14 <param name="mono_threshold" size="10" type="integer" value="9" label="Minimum Threshold for the number of repeats for mononucleotide microsatellites"
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
15 help="A value of 9 means: All mononucleotide microsatellites having fewer than 9 repeats will be excluded from the output."/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
16 <param name="non_mono_threshold" size="10" type="integer" value="4" label="Minimum Threshold for the number of repeats for non-mononucleotide microsatellites"
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
17 help="A value of 4 means: All non-mononucleotide microsatellites having fewer than 4 repeats will be excluded from the output."/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
18 <param name="allow_different_units" size="5" type="select" label="Allow orthologous positions to have different microsatellite repeat units/motifs?">
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
19 <option value="0" selected="true">No</option>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
20 <option value="1">Yes</option>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
21 </param>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
22 </page>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
23 </inputs>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
24 <outputs>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
25 <data format="tabular" name="out_file1" metadata_source="input1"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
26 </outputs>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
27 <requirements>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
28 <requirement type="package">sputnik</requirement>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
29 </requirements>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
30 <tests>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
31 <test>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
32 <param name="input1" value="2way.maf"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
33 <param name="separation" value="10"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
34 <param name="mono_threshold" value="9"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
35 <param name="non_mono_threshold" value="4"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
36 <param name="allow_different_units" value="0"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
37 <output name="out_file1" file="ortho_ms.tab"/>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
38 </test>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
39 </tests>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
40
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
41 <help>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
42
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
43 .. class:: infomark
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
44
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
45 **What it does**
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
46
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
47 This tool uses a modified version of SPUTNIK to fetch microsatellite repeats from the input fasta sequences and extracts orthologous repeats from the sputnik output. The modified version allows detection of mononucleotide microsatellites. More information on SPUTNIK can be found on this website_. The modified version is available here_.
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
48
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
49 -----
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
50
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
51 .. class:: warningmark
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
52
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
53 **Note**
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
54
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
55 - Any block/s not containing exactly 2 species will be omitted.
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
56
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
57 - This tool will filter out microsatellites based on the user input values for minimum distance and repeat number thresholds. Further, this tool will also filter out microsatellites that have no orthologous microsatellites in one of the species.
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
58
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
59 .. _website: http://espressosoftware.com/pages/sputnik.jsp
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
60 .. _here: http://www.bx.psu.edu/svn/universe/dependencies/sputnik/
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
61 </help>
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
62
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
63
d4368a5a3fc7 Imported from capsule None
devteam
parents:
diff changeset
64 </tool>