root/galaxy-central/eggs/GeneTrack-2.0.0_beta_1_dev_48da9e998f0caf01c5be731e926f4b0481f658f0-py2.6.egg/genetrack/__init__.py @ 3

リビジョン 3, 1.1 KB (コミッタ: kohda, 14 年 前)

Install Unix tools  http://hannonlab.cshl.edu/galaxy_unix_tools/galaxy.html

行番号 
1"""
2Data analysis and visualization framework for genomic data.
3See the genetrack_ site for installation instructions.
4
5Framework
6=========
7
8Required libraries: numpy_ , bx-python_ and pytables_
9
10Server
11======
12
13Required libraries: django_ and chartdirector_
14
15The default webserver is located under the `server` directory
16and is completely independent of the main genetrack package and therefore is **NOT** documented
17here. The server is implemented with the django_ web framework. See the genetrack_ site for
18more details about the server settings.
19
20.. _genetrack: http://genetrack.bx.psu.edu
21.. _numpy: http://numpy.scipy.org
22.. _bx-python: http://bitbucket.org/james_taylor/bx-python/wiki/Home
23.. _django: http://www.djangoproject.com/
24.. _pytables: http://www.pytables.org/
25.. _chartdirector: http://www.advsofteng.com
26"""
27import sys
28from time import strftime, gmtime
29
30tstamp = strftime("%Y-%j", gmtime() )
31
32__version__ = '2.0.0-beta-1'
33
34# version check
35if sys.version_info < (2, 5):
36    error( 'genetrack requires python 2.5 or higher' )
37
38from genetrack.hdflib import PositionalData
39
40if __name__ == '__main__':
41    print '\n*** GeneTrack import successful ***'
42
Note: リポジトリブラウザについてのヘルプは TracBrowser を参照してください。