8
|
1
|
|
2 CodonLogo (http://recode.ucc.ie/CodonLogo) is a tool for creating sequence
|
|
3 logos from biological sequence alignments. It can be run from the command line as a standalone webserver or as a CGI webapp.
|
|
4
|
|
5
|
|
6 For help on the command line interface run
|
|
7 ./codonlogo --help
|
|
8
|
|
9 To build a simple logo run
|
|
10 ./codonlogo < cap.fa > logo.eps
|
|
11
|
|
12
|
|
13 To run as a standalone webserver at localhost:8080
|
|
14 ./codonlogo --server
|
|
15
|
|
16
|
|
17 An example file of probabilities is included, examplepriorfile.txt
|
|
18 It can be used with the following command.
|
|
19
|
|
20 ./codonlogo --prior ./examples/Escherichiacoli.txt < cap.fa > logo.eps
|
|
21
|
|
22
|
|
23 examplepriorfile contains the frequencies for codons in human CDS regions.
|
|
24
|
|
25
|
|
26 KNOWN ISSUES:
|
|
27
|
|
28 There is a known issue with GPL Ghostscript 9.04 which affects some users which may cause ghostscript to segfault or prevent codonlogos from being generated in anything other than eps format.
|
|
29
|
|
30 This is believed to be an issue with ghostscript and a bug report has been submitted to the ghostscript mailing list.
|
|
31 This is being investigated. if you encounter this problem it's recommended to downgrade to version 9.01 of ghostscript or earlier .
|
|
32
|
|
33
|
|
34
|
|
35 For converting files to a suitable format the following sites can be used:
|
|
36
|
|
37 http://genome.nci.nih.gov/tools/reformat.html
|
|
38 http://www-bimas.cit.nih.gov/molbio/readseq/
|
|
39
|
|
40
|
|
41
|
|
42
|
|
43 -- Distribution and Modification --
|
|
44 This package is distributed under the new BSD Open Source License.
|
|
45 Please see the LICENSE.txt file for details on copyright and licensing.
|
|
46 The CodonLogo source code can be downloaded from
|
|
47 http://recode.ucc.ie/CodonLogo
|
|
48
|
|
49 CodonLogo requires Python 2.6 or 2.7, the corebio python toolkit for
|
|
50 computational biology (http://code.google.com/p/corebio), and the python
|
|
51 array package 'numpy' (http://www.scipy.org/Download)
|