Skip to content

Commit

Permalink
updated __all__ tags for 1.00a2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jchang committed Jul 5, 2001
1 parent 56eb624 commit a7a332b
Show file tree
Hide file tree
Showing 21 changed files with 99 additions and 10 deletions.
6 changes: 6 additions & 0 deletions Bio/Align/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
# Align directory

__all__ = [
'AlignInfo',
'FormatConvert',
'Generic'
]
4 changes: 4 additions & 0 deletions Bio/Alphabet/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import string, re

__all__ = [
'IUPAC',
]

# This is used by sequences which contain a finite number of similar
# words.

Expand Down
6 changes: 5 additions & 1 deletion Bio/Blast/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@
# license. Please see the LICENSE file that should have been included
# as part of this package.

__all__ = ['NCBIStandalone', 'NCBIWWW', 'Record']
__all__ = [
'NCBIStandalone',
'NCBIWWW',
'Record',
]
4 changes: 4 additions & 0 deletions Bio/Clustalw/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
o _AlignCreator
o MultipleAlignCL"""

__all__ = [
'clustal_format',
]

# standard library
import os
import string
Expand Down
5 changes: 5 additions & 0 deletions Bio/Data/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# This is a Python module

__all__ = [
'CodonTable',
'IUPACData'
]
5 changes: 5 additions & 0 deletions Bio/Encodings/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
# This is a Python module.

__all__ = [
'IUPACEncoding',
]

4 changes: 4 additions & 0 deletions Bio/Fasta/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
import string
import os

__all__ = [
'FastaAlign',
]


from Bio import File
from Bio import Index
Expand Down
5 changes: 5 additions & 0 deletions Bio/GenBank/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@
download_many Download many GenBank records.
"""
__all__ = [
'LocationParser',
'Record',
'genbank_format',
]
# standard library
import string
import os
Expand Down
5 changes: 5 additions & 0 deletions Bio/Kabat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
# license. Please see the LICENSE file that should have been included
# as part of this package.

__all__ = [
'Record',
'kabat_format'
]

# standard library
import string
import array
Expand Down
5 changes: 4 additions & 1 deletion Bio/Prosite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@
_extract_pattern_hits Extract Prosite patterns from a web page.
"""
__all__ = ['Prodoc', 'Pattern']
__all__ = [
'Pattern',
'Prodoc',
]
from types import *
import string
import re
Expand Down
6 changes: 5 additions & 1 deletion Bio/SCOP/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,8 @@
# license. Please see the LICENSE file that should have been included
# as part of this package.

__all__ = ['Dom', 'Lin', 'Location']
__all__ = [
'Dom',
'Lin',
'Location'
]
3 changes: 3 additions & 0 deletions Bio/SeqIO/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
# Note that once a parser is given an input string, it is free to read
# as much of the data as it wants to read, unless otherwise mentioned.

__all__ = [
'FASTA'
]
5 changes: 5 additions & 0 deletions Bio/SubsMat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
__all__ = [
'FreqTable',
'MatrixInfo'
]

import re
import string
import sys
Expand Down
5 changes: 4 additions & 1 deletion Bio/SwissProt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,7 @@
# license. Please see the LICENSE file that should have been included
# as part of this package.

__all__ = ['SProt', 'KeyWList']
__all__ = [
'KeyWList',
'SProt',
]
4 changes: 4 additions & 0 deletions Bio/Tools/Clustering/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
# 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.

__init__ = [
'kMeans',
]
10 changes: 10 additions & 0 deletions Bio/Tools/MultiProc/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Copyright 2001 by Jeffrey Chang. All rights reserved.
# 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.

__all__ = [
'Scheduler',
'Task',
'copen'
]
4 changes: 4 additions & 0 deletions Bio/Tools/Parsers/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# make files in this directory importable

__all__ = [
'spark',
]
6 changes: 6 additions & 0 deletions Bio/WWW/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# This is a Python module

__all__ = [
'ExPASy',
'NCBI,
'SCOP',
]

import time

class RequestLimiter:
Expand Down
3 changes: 3 additions & 0 deletions Bio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,20 @@
"Data",
"Encodings",
"Enzyme",
"FSSP",
"Fasta",
"File",
"GenBank",
"Gobase",
"Index",
"Kabat",
"Medline",
"PDB",
"ParserSupport",
"PropertyManager",
"Prosite",
"Rebase",
"RecordFile",
"SCOP",
"Seq",
"SeqFeature",
Expand Down
12 changes: 8 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ recursive-include Tests *
global-exclude CVS
global-exclude CVS/*

# Don't include obsolete regression testing frameworks.
exclude Tests/br_regrtest.py
recursive-exclude Tests/UnitTests *

# Don't include obsolete Sequence.py
exclude Bio/Sequence.py

exclude Tests/Amino
exclude Tests/Blast
exclude Tests/Enzymes
Expand All @@ -30,9 +37,6 @@ exclude Tests/Prosite
exclude Tests/Prosite/Doc
exclude Tests/Rebase
exclude Tests/SwissProt
exclude Tests/UnitTests
exclude Tests/UnitTests/Prosite
exclude Tests/UnitTests/Save
exclude Tests/UnitTests/Seq
exclude Tests/output
exclude Tests/Blast/bt008* # file too large

2 changes: 0 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,6 @@ setup.py -- Installation file.

- microarray data

- deprecate Sequence.py

If you see something here you would like to work on, please send mail
to biopython@biopython.org!

Expand Down

0 comments on commit a7a332b

Please sign in to comment.