X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=binaries%2Fsrc%2Fdisembl%2Fbiopython-1.50%2FBio%2FWriter.py;fp=binaries%2Fsrc%2Fdisembl%2Fbiopython-1.50%2FBio%2FWriter.py;h=9247de22b6ef0b72ec5b1f6be429473622f2f09a;hb=f47da0247a9f9a8ac55571234064a0d3ded06b6c;hp=0000000000000000000000000000000000000000;hpb=6ff5fdd71d597d015fdc1df7eb0a352f8086eaa9;p=jabaws.git diff --git a/binaries/src/disembl/biopython-1.50/Bio/Writer.py b/binaries/src/disembl/biopython-1.50/Bio/Writer.py new file mode 100644 index 0000000..9247de2 --- /dev/null +++ b/binaries/src/disembl/biopython-1.50/Bio/Writer.py @@ -0,0 +1,17 @@ +"""Part of an old unused and undocumented sequence writing framework (DEPRECATED).""" + +import warnings +warnings.warn("Bio.Writer and Bio.writer.* are deprecated. If you do use"\ + +" these modules, please get in touch via the mailing list or"\ + +" bugzilla to avoid their permanent removal from Biopython.", \ + DeprecationWarning) + +class Writer: + def __init__(self, outfile): + self.outfile = outfile + def writeHeader(self): + pass + def write(self, record): + pass + def writeFooter(self): + pass