Skip to content

Commit

Permalink
Adds missing licence headers and a tiny bit of documentation with lin…
Browse files Browse the repository at this point in the history
…ks to the wise2 website.
  • Loading branch information
peterc committed Mar 15, 2008
1 parent dbd1a90 commit 8dc3c72
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 5 deletions.
15 changes: 13 additions & 2 deletions Bio/Wise/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
#!/usr/bin/env python

__version__ = "$Revision: 1.15 $"
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
#
# Bio.Wise contains modules for running and processing the output of
# some of the models in the Wise2 package by Ewan Birney available from:
# ftp://ftp.ebi.ac.uk/pub/software/unix/wise2/
# http://www.ebi.ac.uk/Wise2/
#
# Bio.Wise.psw is for protein Smith-Waterman alignments
# Bio.Wise.dnal is for Smith-Waterman DNA alignments

__version__ = "$Revision: 1.16 $"

import os
import sys
Expand Down
13 changes: 12 additions & 1 deletion Bio/Wise/dnal.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
#!/usr/bin/env python
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.
#
# Bio.Wise contains modules for running and processing the output of
# some of the models in the Wise2 package by Ewan Birney available from:
# ftp://ftp.ebi.ac.uk/pub/software/unix/wise2/
# http://www.ebi.ac.uk/Wise2/
#
# Bio.Wise.psw is for protein Smith-Waterman alignments
# Bio.Wise.dnal is for Smith-Waterman DNA alignments

from __future__ import division

__version__ = "$Revision: 1.10 $"
__version__ = "$Revision: 1.11 $"

import commands
import itertools
Expand Down
12 changes: 10 additions & 2 deletions Bio/Wise/psw.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@
# This code is part of the Biopython distribution and governed by its
# license. Please see the LICENSE file that should have been included
# as part of this package.

__version__ = "$Revision: 1.4 $"
#
# Bio.Wise contains modules for running and processing the output of
# some of the models in the Wise2 package by Ewan Birney available from:
# ftp://ftp.ebi.ac.uk/pub/software/unix/wise2/
# http://www.ebi.ac.uk/Wise2/
#
# Bio.Wise.psw is for protein Smith-Waterman alignments
# Bio.Wise.dnal is for Smith-Waterman DNA alignments

__version__ = "$Revision: 1.5 $"

import exceptions
import os
Expand Down

0 comments on commit 8dc3c72

Please sign in to comment.