@@ -67,7 +67,7 @@ Parsing a FASTA file using Bio.SeqIO.parse with ``format='fasta'`` interprets
6767lines before the first line starting with '>' as comments and skips them. To be
6868consistent with the most common interpretation of the FASTA file format, the
6969use of such comment lines at the beginning of the FASTA file was deprecated in
70- Biopython Release 1.85.
70+ Biopython Release 1.85, and removed in Biopython release 1.87 .
7171As an alternative, you can use ``format='fasta-pearson' `` to specify the FASTA
7272file format as defined by William Pearson's FASTA aligner program, allowing for
7373comment lines at the top of the FASTA file (lines anywhere in the file starting
@@ -94,17 +94,18 @@ Please use ``format(record, "tab")`` instead.
9494
9595Bio.SeqIO.UniprotIO
9696-------------------
97- Parsing a UniProt XML file opened in text mode (if the file was opened using
98- ``open("myuniprotfile.xml") ``) was deprecated in Release 1.85, as this may lead
99- to garbled characters. Please open the file in binary mode (as in
100- ``open("myuniprotfile.xml", "rb") ``), or let ``Bio.SeqIO.parse `` take care of
101- opening and closing files by passing the file name instead of a file handle.
97+ The ability to parse a UniProt XML file opened in text mode (if the file was
98+ opened using ``open("myuniprotfile.xml") ``) was deprecated in Release 1.85 and
99+ removed in Release 1.87, as this may lead to garbled characters. Please open
100+ the file in binary mode (as in ``open("myuniprotfile.xml", "rb") ``), or let
101+ ``Bio.SeqIO.parse `` take care of opening and closing files by passing the file
102+ name instead of a file handle.
102103
103104Bio.Entrez
104105----------
105106The ``egquery `` function wrapping the NCBI EGQuery (Entrez Global Query)
106- API was deprecated in Release 1.84. The API has stopped working and the
107- NCBI said this API was no longer being maintained.
107+ API was deprecated in Release 1.84, and removed in Release 1.87. The API has
108+ stopped working and the NCBI said this API was no longer being maintained.
108109
109110Bio.SCOP
110111--------
@@ -251,9 +252,9 @@ The ``instances`` attribute of the ``Motif`` class in ``Bio.motifs`` was
251252deprecated in release 1.82, and removed in release 1.86. Instead of
252253``mymotif.instances ``, please use ``mymotif.alignment.sequences ``.
253254
254- The ``Instance `` class in ``Bio.motifs.meme `` was deprecated in release 1.85.
255- This class is a subclass from ``Seq ``, but does not provide any additional
256- capabilities. Please use a ``Seq `` object instead.
255+ The ``Instance `` class in ``Bio.motifs.meme `` was deprecated in release 1.85,
256+ and removed in release 1.87. This class is a subclass from ``Seq ``, but does
257+ not provide any additional capabilities. Please use a ``Seq `` object instead.
257258
258259Bio.Restriction.RanaConfig
259260--------------------------
@@ -590,7 +591,8 @@ Function 'GC' in Bio.SeqUtils was deprecated in Release 1.80, and removed in
590591Release 1.82. Instead use function 'gc_fraction'.
591592
592593Function get_amino_acids_percent in Bio.SeqUtils.ProteinAnalysis was deprecated
593- in Release 1.85. Use the amino_acids_percent property instead.
594+ in Release 1.85, and removed in Release 1.87. Use the amino_acids_percent
595+ property instead.
594596
595597Bio.PopGen.Async
596598----------------
0 commit comments