annotate kplogo.xml @ 1:3c13235a05f5 draft

Uploaded
author xuebing
date Fri, 24 Mar 2017 16:09:26 -0400
parents f6226f8823ce
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
1 <tool id="kplogo" name="kpLogo" version="1.0">
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
2 <description>for positional k-mer analysis</description>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
3 <command>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
4
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
5 kpLogo $input $inputtype -o $output -alphabet $alphabet $maxk -startPos $startPos $degenerate -seq $col_seq -weight $col_weight -region $region_start,$region_end 2> tmp;
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
6 cp ${output}.most.significant.each.position.pdf $output;
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
7 cp ${output}.pdf $logo_prob;
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
8 cp ${output}.info.pdf $logo_info;
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
9 cp ${output}.freq.pdf $logo_freq;
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
10 cp ${output}.most.significant.each.position.txt $tab_most;
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
11 cp ${output}.pass.p.cutoff.txt $tab_all;
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
12
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
13 </command>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
14 <inputs>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
15 <page>
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
16 <param format="text" name="input" type="data" label="Input sequences (FASTA or Tabular)" />
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
17
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
18 <param name="alphabet" type="select" label="Sequence type: DNA/RNA or Protein" >
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
19 <option value="dna" selected="True">DNA/RNA</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
20 <option value="protein">Protein</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
21 <option value="other">Other (not supported yet)</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
22 </param>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
23
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
24 <param name="inputtype" type="select" label="Weighted or Ranked" >
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
25 <option value="" selected="True">Unweighted (FASTA or Tab-delimited) </option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
26 <option value="-ranked">Ranked (FASTA or Tab-delimited)</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
27 <option value="-weighted">Weighted (Tab-delimited)</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
28 </param>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
29
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
30
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
31 <param name="col_seq" type="integer" value="1" label="For tabular input, sequence is in this column:" />
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
32
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
33 <param name="col_weight" type="integer" value="2" label="For tabular input, weight is in this column:" />
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
34
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
35 <param name="region_start" type="integer" value="1" label="Starting from position (0 or negative numbers interpreted as distance from the end):" />
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
36
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
37 <param name="region_end" type="integer" value="0" label="Ending at position (0 or negative numbers interpreted as distance from the end):" />
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
38
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
39
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
40
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
41 <param name="maxk" type="select" label="k-mer length"
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
42 help="k-mer length">
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
43 <option value="-max_k 4" selected="True">1,2,3,4</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
44 <option value="-max_k 3">1,2,3</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
45 <option value="-max_k 2">1,2</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
46 <option value="-k 4">4</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
47 <option value="-k 3">3</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
48 <option value="-k 2">2</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
49 <option value="-k 1">1</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
50 </param>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
51
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
52 <param name="degenerate" type="select" label="Degenerate residual (DNA/RNA only)">
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
53 <option value="-gapped" selected="True">ACGTN, i.e. gapped</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
54 <option value="">None (no degenerate residuals)</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
55 <option value="-degenerate all">all IUPAC residuals: ACGTRYMKWSBDHVN</option>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
56 </param>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
57
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
58 <param name="startPos" type="integer" value="1" label="Redefine position 1. The positions before it will be numbered as -1, -2, etc (no 0)." />
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
59
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
60 <param name="fix" type="float" value="0.75" label="Fixation frequency"/>
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
61
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
62 </page>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
63 </inputs>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
64 <outputs>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
65 <data format="pdf" name="logo_info" label="${tool.name} on ${on_string}: info"/>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
66 <data format="pdf" name="logo_freq" label="${tool.name} on ${on_string}: freq"/>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
67 <data format="pdf" name="logo_prob" label="${tool.name} on ${on_string}: prob"/>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
68 <data format="pdf" name="output" label="${tool.name} on ${on_string}: kmer"/>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
69 <data format="tabular" name="tab_all" label="${tool.name} on ${on_string}: all_kmer"/>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
70 <data format="tabular" name="tab_most" label="${tool.name} on ${on_string}: most_sig"/>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
71
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
72
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
73 </outputs>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
74 <help>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
75
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
76 **Note**
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
77
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
78 This is a wrapper for the positional k-mer analysis tool kpLogo_, which is also available as a web server and stand-alone command-line tool. Please refer to the manual_ on the web server for help information.
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
79
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
80 To run kpLogo on local Galaxy instances, one needs to compile and install kpLogo locally. Please refer to the web server for details (click here_).
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
81
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
82 ----
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
83
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
84
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
85 .. _kpLogo: http://kplogo.wi.mit.edu/
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
86
1
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
87 .. _manual: http://kplogo.wi.mit.edu/manual.html
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
88
3c13235a05f5 Uploaded
xuebing
parents: 0
diff changeset
89 .. _here: http://kplogo.wi.mit.edu/manual.html#install-kpLogo-locally
0
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
90
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
91
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
92 </help>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
93
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
94 </tool>
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
95
f6226f8823ce Uploaded
xuebing
parents:
diff changeset
96