| 1 | """ |
|---|
| 2 | Data analysis and visualization framework for genomic data. |
|---|
| 3 | See the genetrack_ site for installation instructions. |
|---|
| 4 | |
|---|
| 5 | Framework |
|---|
| 6 | ========= |
|---|
| 7 | |
|---|
| 8 | Required libraries: numpy_ , bx-python_ and pytables_ |
|---|
| 9 | |
|---|
| 10 | Server |
|---|
| 11 | ====== |
|---|
| 12 | |
|---|
| 13 | Required libraries: django_ and chartdirector_ |
|---|
| 14 | |
|---|
| 15 | The default webserver is located under the `server` directory |
|---|
| 16 | and is completely independent of the main genetrack package and therefore is **NOT** documented |
|---|
| 17 | here. The server is implemented with the django_ web framework. See the genetrack_ site for |
|---|
| 18 | more 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 | """ |
|---|
| 27 | import sys |
|---|
| 28 | from time import strftime, gmtime |
|---|
| 29 | |
|---|
| 30 | tstamp = strftime("%Y-%j", gmtime() ) |
|---|
| 31 | |
|---|
| 32 | __version__ = '2.0.0-beta-1' |
|---|
| 33 | |
|---|
| 34 | # version check |
|---|
| 35 | if sys.version_info < (2, 5): |
|---|
| 36 | error( 'genetrack requires python 2.5 or higher' ) |
|---|
| 37 | |
|---|
| 38 | from genetrack.hdflib import PositionalData |
|---|
| 39 | |
|---|
| 40 | if __name__ == '__main__': |
|---|
| 41 | print '\n*** GeneTrack import successful ***' |
|---|
| 42 | |
|---|