0
|
1 <tool id="maxent" name="splice site score">
|
|
2 <description>using max entropy model</description>
|
|
3 <command interpreter="perl">$script $input > $out_file1 </command>
|
|
4 <inputs>
|
|
5 <param name="input" format="txt" type="data" label="Sequence file" help="fasta or raw sequence (one sequence per line)"/>
|
|
6 <param name="script" type="select" label="Select model">
|
|
7 <option value="splicesitescore/score5.pl" selected="true">5' splice site</option>
|
|
8 <option value="splicesitescore/score3.pl">3' splice site</option>
|
|
9 </param>
|
8
|
10 <param name="genome" type="select" label="Select chromsome size file" >
|
|
11 <options from_file="chrsize.loc">
|
|
12 <column name="name" index="0"/>
|
|
13 <column name="value" index="1"/>
|
|
14 </options>
|
|
15 </param>
|
|
16
|
0
|
17 </inputs>
|
|
18 <outputs>
|
|
19 <data format="tabular" name="out_file1" />
|
|
20 </outputs>
|
|
21 <help>
|
|
22
|
|
23 **What it does**
|
|
24
|
|
25 This tool computes splice site scores using a max entropy model. See more details here:
|
|
26
|
|
27 http://genes.mit.edu/burgelab/maxent/Xmaxentscan_scoreseq.html
|
|
28
|
|
29 -----
|
|
30
|
|
31 **Example input for 5' splice site sequence**
|
|
32
|
|
33 3 exonic and 6 intronic nucleotides flanking the junction::
|
|
34
|
|
35 CTGGTGAGT
|
|
36 AAGGTACAG
|
|
37
|
|
38 or fasta format::
|
|
39
|
|
40 >seq1
|
|
41 CTGGTGAGT
|
|
42 >seq2
|
|
43 AAGGTACAG
|
|
44
|
|
45 Output::
|
|
46
|
|
47 CTGGTGAGT 10.10
|
|
48 AAGGTACAG 8.04
|
|
49
|
|
50 or fasta format::
|
|
51
|
|
52 >seq1 CTGGTGAGT 10.10
|
|
53 >seq2 AAGGTACAG 8.04
|
|
54
|
|
55
|
|
56 -----
|
|
57
|
|
58 **Example input for 3' splice site sequence**
|
|
59
|
|
60 3 exonic and 20 intronic nucleotides flanking the junction::
|
|
61
|
|
62 CCTGCATCCTCTGTTCCCAGGTG
|
|
63 TTTCTTCCCTCCGGGAACAGTGG
|
|
64
|
|
65 Output::
|
|
66
|
|
67 CCTGCATCCTCTGTTCCCAGGTG 10.47
|
|
68 TTTCTTCCCTCCGGGAACAGTGG 6.22
|
|
69
|
|
70 </help>
|
|
71 </tool>
|