annotate blast2html.py @ 1:3292ec015dfd
fix repository dependencies
| author |
Jan Kanis <jan.code@jankanis.nl> |
| date |
Wed, 22 Jul 2015 16:53:22 +0200 |
| parents |
dad02776f538 |
| children |
|
| rev |
line source |
|
0
|
1 #!/usr/bin/env python3
|
|
|
2 # -*- coding: utf-8 -*-
|
|
|
3
|
|
|
4 # Actually this program works with both python 2 and 3, tested against python 2.6
|
|
|
5
|
|
|
6 # Copyright The Hyve B.V. 2014-2015
|
|
|
7 # License: GPL version 3 or (at your option) any higher version
|
|
|
8
|
|
|
9 from __future__ import unicode_literals, division, print_function
|
|
|
10
|
|
|
11 print("Hello World")
|
|
|
12 print("The tool is working!")
|
|
|
13
|
|
|
14
|