File: dataset.py

package info (click to toggle)
python-pbcore 1.2.11%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 18,612 kB
  • ctags: 5,336
  • sloc: python: 22,160; xml: 2,667; makefile: 239
file content (13 lines) | stat: -rwxr-xr-x 396 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

import sys

def main(argv=sys.argv):
    """This file, its use in setup.py should be removed after 1.2.8 is cut"""
    print ("WARNING: dataset.py is no longer part of pbcore. It has moved to "
           "pbcoretools (https://github.com/PacificBiosciences/pbcoretools) "
           "and is now just 'dataset'")
    exit(1)

if __name__ == '__main__':
    sys.exit(main())