3 Revision history for Bioperl core modules
7 1.6.0 (currently Release Candidate 1)
8 The 1.6 series is derived from subversion HEAD and exists as a separate
9 release branch. This will represent the last of the alternating
10 developer/stable releases. Code in svn HEAD will be divided up into
11 several smaller packages, including a developer subdistribution for
12 code considered experimental, unstable, or untested.
14 Full detail of changes included since the 1.5.2 release are online at:
15 http://www.bioperl.org/wiki/Change_log. Bugs remaining to be addressed
16 are online at http://bugzilla.open-bio.org, with specific bugs highlighted
19 The following represent the most important changes:
22 - Split into a separate distribution on CPAN, primarily so development
23 isn't reliant on a complete BioPerl release.
26 - Common test bed for all BioPerl modules
29 - Common Module::Build-based subclass for all BioPerl modules
32 - Complete refactoring to split up parsing (Bio::Tools::EUtilities),
33 parameter handling (Bio::Tools::EUtilities::EUtilParameters),
34 and user agent request posting and retrieval
36 o Test implementation and reorganization
37 - Tests have been reorganized into groups based on classes or use
39 - Automated test coverage is now online:
40 http://www.bioperl.org/wiki/Test_Coverage
41 - After this release, untested modules will be moved into a
42 separate developer distribution until tests can be derived.
43 Also, new modules to be added are expected to have a test suite
44 and adequate test coverage.
46 1.5.2 Developer release
47 Full details of changes since 1.5.1 are available online at:
48 http://www.bioperl.org/wiki/Change_log
49 The following represents a brief overview of the most important changes.
52 - Overhaul. Brand new system fully allows markers to have multiple
53 positions on multiple maps, and to have relative positions. Should be
57 - This module and all the modules in the Taxonomy directory now
58 deprecated in favour of Bio::Taxon and Bio::Tree::Tree
63 * get_Taxonomy_Node() eventually to be deprecated, renamed get_taxon().
65 * New methods ancestor(), each_Descendent() and _handle_internal_id().
67 * Allows for different database modules to create Bio::Taxon objects
68 with the same internal id when the same taxon is requested from each.
71 * get_Children_Taxids() is deprecated, superceded by each_Descendent().
73 * No longer includes the fake root node 'root'; there are multiple roots
74 now (10239, 12884, 12908, 29384 and 131567). Consistent with entrez.pm
77 * get_node() has new option -full
79 * Caches data retrieved from website
82 - Now a Bio::Taxon. Carries out the species name -> specific name munging
83 that Bio::DB::Taxonomy modules and SeqIO modules used to do, for
84 backward compatability in species() method.
86 o Bio::Search and Bio::SearchIO
87 - Overhaul. The existing system has been sped up via some minor changes
88 (mostly gain-of-function to the API). Bio::PullParserI is introduced
89 as a potential eventual replacment for the existing system, though as
90 yet only a Hmmpfam parser exists written using it.
93 1.5.1 Developer release
95 o Major problem with how Annotations were written out with
96 Bio::Seq is fixed by reverting to old behavior for
97 Bio::Annotation objects.
102 * bug #1871; REFLOOP' parsing loop, I changed the pattern to
103 expect at l east 9 spaces at the beginning of a line to
104 indicate line wrapping.
106 * Treat multi-line SOURCE sections correctly, this defect broke
107 both common_name() and classification()
109 * parse swissprot fields in genpept file
111 * parse WGS genbank records
114 * Changed regexp for ID line. The capturing parentheses are
115 the same, the difference is an optional repeated-not-semi-
116 colon expression following the captured \S+. This means the
117 regexp works when the division looks like /PRO;/ or when the
118 division looks like /ANG ;/ - the latter is from EMBL
121 * fix ID line parsing: the molecule string can have spaces in
122 it. Like: "genomic DNA"
124 - swiss.pm: bugs #1727, #1734
127 * Added parser for entrezgene ASN1 (text format) files.
128 Uses Bio::ASN1::EntrezGene as a low level parser (get it from CPAN)
132 - maf.pm coordinate problem fixed
134 o Bio::Taxonomy and Bio::DB::Taxonomy
136 - Parse NCBI XML now so that nearly all the taxonomy up-and-down
137 can be done via Web without downloading all the sequence.
139 o Bio::Tools::Run::RemoteBlast supports more options and complies
140 to changes to the NCBI interface. It is reccomended that you
141 retrieve the data in XML instead of plain-text BLAST report to
142 insure proper parsing and retrieval of all information as NCBI
143 fully expects to change things in the future.
145 o Bio::Tree and Bio::TreeIO
147 - Fixes so that re-rooting a tree works properly
149 - Writing out nhx format from a newick/nexus file will properly output
150 bootstrap information. The use must move the internal node labels over
152 for my $node ( grep { ! $_->is_Leaf } $tree->get_nodes ) {
153 $node->bootstrap($node->id);
156 - Nexus parsing is much more flexible now, does not care about
159 - Cladogram drawing module in Bio::Tree::Draw
161 - Node height and depth now properly calculated
163 - fix tree pruning algorithm so that node with 1 child gets merged
165 o Graphics tweaks. Glyph::xyplot improved. Many other small-medium sized
166 bugs and improvements were added, see Gbrowse mailing list for most of
169 o Bio::DB::GFF partially supports GFF3. See information about
170 gff3_munge flag in scripts/Bio-DB-GFF/bulk_load_gff.pl.
172 o Better location parsing in Bio::Factory::FTLocationFactory -
173 this is part of the engine for parsing EMBL/GenBank feature table
174 locations. Nested join/order-by/complement are allowed now
176 o Bio::PrimarySeqI->translate now takes named parameters
178 o Bio::Tools::Phylo::PAML - parsing RST (ancestral sequence
179 reconstruction) is now supported. Parsing different models and
180 branch specific parametes are now supported.
182 o Bio::Factory::FTLocationFactory - parse hierarchical locations
185 o Bio::Matrix::DistanceMatrix returns arrayrefs instead of arrays
186 for getter/setter functions
190 - blast bug #1739; match scientific notation in score
191 and possible e+ values
193 - blast.pm reads more WU-BLAST parameters and parameters, match
194 a full database pathname,
196 - Handle NCBI WEB and newer BLAST formats specifically
197 (Query|Sbjct:) match in alignment blocks can now be (Query|Sbjct).
199 - psl off-by-one error fixed
201 - exonerate parsing much improved, CIGAR and VULGAR can be parsed
202 and HSPs can be constructed from them.
204 - HSPs query/hit now have a seqdesc field filled out (this was
205 always available via $hit->description and
206 $result->query_description
208 - hmmer.pm can parse -A0 hmmpfam files
210 - Writer::GbrowseGFF more customizeable.
212 o Bio::Tools::Hmmpfam
213 make e-value default score displayed in gff, rather than raw score
214 allow parse of multiple records
217 1.5 Developer release
219 o Bio::Align::DNAStatistics and Bio::Align::ProteinStatistics
220 provide Jukes-Cantor and Kimura pairwise distance methods,
223 o Bio::AlignIO support for "po" format of POA, and "maf";
224 Bio::AlignIO::largemultifasta is a new alternative to
225 Bio::AlignIO::fasta for temporary file-based manipulation of
226 particularly large multiple sequence alignments.
228 o Bio::Assembly::Singlet allows orphan, unassembled sequences to
229 be treated similarly as an assembled contig.
231 o Bio::CodonUsage provides new rare_codon() and probable_codons()
232 methods for identifying particular codons that encode a given
235 o Bio::Coordinate::Utils provides new from_align() method to build
236 a Bio::Coordinate pair directly from a
237 Bio::Align::AlignI-conforming object.
239 o Bio::DB::Biblio::eutils is a class for querying NCBI's Eutils.
240 Send a Pubmed, Pubmed Central, Entrez, or other query to NCBI's
241 web service using standard Pubmed query syntax, and retrieve
244 o Bio::DB::GFF has various sundry bug fixes.
246 o Bio::FeatureIO is a new SeqIO-style subsystem for
247 writing/reading genomic features to/from files. I/O classes
248 exist for BED, GTF (aka GFF v2.5), and GFF v3. Bio::FeatureIO
249 classes only read/write Bio::SeqFeature::Annotated objects.
250 Notably, the GFF v3 class requires features to be typed into the
253 o Bio::Graph namespace contains new modules for manipulation and
254 analysis of protein interaction graphs.
256 o Bio::Graphics has many bug fixes and shiny new glyphs.
258 o Bio::Index::Hmmer and Bio::Index::Qual provide multiple-file
259 indexing for HMMER reports and FASTA qual files, respectively.
261 o Bio::Map::Clone, Bio::Map::Contig, and Bio::Map::FPCMarker are
262 new objects that can be placed within a Bio::Map::MapI-compliant
263 genetic/physical map; Bio::Map::Physical provides a new physical
264 map type; Bio::MapIO::fpc provides finger-printed clone mapping
267 o Bio::Matrix::PSM provide new support for postion-specific
268 (scoring) matrices (e.g. profiles, or "possums").
270 o Bio::Ontology::Ontology and Bio::Ontology::Term objects can now
271 be instantiated without explicitly using Bio::OntologyIO. This
272 is possible through changes to Bio::Ontology::OntologyStore to
273 download ontology files from the web as necessary. Locations of
274 ontology files are hard-coded into
275 Bio::Ontology::DocumentRegistry.
277 o Bio::PopGen includes many new methods and data types for
278 population genetics analyses.
280 o New constructor to Bio::Range, unions(). Given a list of
281 ranges, returns another list of "flattened" ranges --
282 overlapping ranges are merged into a single range with the
283 mininum and maximum coordinates of the entire overlapping group.
285 o Bio::Root::IO now supports -url, in addition to -file and -fh.
286 The new -url argument allows one to specify the network address
287 of a file for input. -url currently only works for GET
288 requests, and thus is read-only.
290 o Bio::SearchIO::hmmer now returns individual Hit objects for each
291 domain alignment (thus containing only one HSP); previously
292 separate alignments would be merged into one hit if the domain
293 involved in the alignments was the same, but this only worked
294 when the repeated domain occured without interruption by any
295 other domain, leading to a confusing mixture of Hit and HSP
298 o Bio::Search::Result::ResultI-compliant report objects now
299 implement the "get_statistics" method to access
300 Bio::Search::StatisticsI objects that encapsulate any
301 statistical parameters associated with the search (e.g. Karlin's
302 lambda for BLAST/FASTA).
304 o Bio::Seq::LargeLocatableSeq combines the functionality already
305 found in Bio::Seq::LargeSeq and Bio::LocatableSeq.
307 o Bio::SeqFeature::Annotated is a replacement for
308 Bio::SeqFeature::Generic. It breaks compliance with the
309 Bio::SeqFeatureI interface because the author was sick of
310 dealing with untyped annotation tags. All
311 Bio::SeqFeature::Annotated annotations are Bio::AnnotationI
312 compliant, and accessible through Bio::Annotation::Collection.
314 o Bio::SeqFeature::Primer implements a Tm() method for primer
315 melting point predictions.
317 o Bio::SeqIO now supports AGAVE, BSML (via SAX), CHAOS-XML,
318 InterProScan-XML, TIGR-XML, and NCBI TinySeq formats.
320 o Bio::Taxonomy::Node now implements the methods necessary for
321 Bio::Species interoperability.
323 o Bio::Tools::CodonTable has new reverse_translate_all() and
324 make_iupac_string() methods.
326 o Bio::Tools::dpAlign now provides sequence profile alignments.
328 o Bio::Tools::GFF now parses GFF version 2.5 (a.k.a. GTF).
330 o Bio::Tools::Fgenesh, Bio::Tools::tRNAscanSE are new report
333 o Bio::Tools::SiRNA includes two new rulesets (Saigo and Tuschl)
334 for designing small inhibitory RNA.
336 o Bio::Tree::DistanceFactory provides NJ and UPGMA tree-building
337 methods based on a distance matrix.
339 o Bio::Tree::Statistics provides an assess_bootstrap() method to
340 calculate bootstrap support values on a guide tree topology,
341 based on provided bootstrap tree topologies.
343 o Bio::TreeIO now supports the Pagel (PAG) tree format.
349 o Improvements to Bio::AlignIO::nexus for parsing TreeBase nexus files
351 o Bio::Graphics will work with gd1 or gd2
354 - hmmer.pm Better hmmpfam parsing, fix bug for small number of alignment outputs
356 - blast.pm Parse multi-line query fields properly
357 - small speed improvements to blasttable.pm and others
359 o Bio::DB::Taxonomy has better support for hierarchy traversal so that
360 Bio::Taxonomy::Node can be as simple as Bio::Species object while still
361 supporting more complex queries
364 1.4. Stable major release
366 Since initial 1.2.0, 3000 separate changes have been made to make this release.
368 o installable scripts
370 o global module version from Bio::Root:Version
373 - major improvements; SVG support
376 - population genetics
377 - support several population genetics types of questions.
378 - Tests for statistical neutrality of mutations
379 (Fu and Li's D/F, Tajima's D) are in Bio::PopGen::Statistics.
380 Tests of population structure (Wright's F-statistic: Fst) is in
381 Bio::PopGen::PopStats. Calculating composite linkage
382 disequilibrium (LD) is available in Bio::PopGen::Statistics as
384 - Bio::PopGen::IO for reading in prettybase (SeattleSNPs)
385 and csv (comma delimited formatted) data.
387 - a directory for implementing population simulations has
388 been added Bio::PopGen::Simulation and 2 simulations - a
389 Coalescent and a simple single-locus multi-allele genetic drift
390 simulation have been provided. This replaces the code in
391 Bio::Tree::RandomTree which has been deprecated until proper
392 methods for generating random phylogenetic trees are
396 - new restrion analysis modules
398 o Bio::Tools::Analysis
399 - web based DNA and Protein analysis framework and several
403 - per residue annotable sequences
406 - Bio::Matrix::PSM - Position Scoring Matrix
407 - Bio::Matrix::IO has been added for generalized parsing of
408 matrix data. Matrix::IO::scoring and Matrix::IO::phylip are
409 initial implementations for parsing BLOSUM/PAM and Phylip
410 Distance matricies respectively. A generic matrix
411 implementation for general use was added in
412 Bio::Matrix::Generic.
419 o Bio::Tools::SiRNA, Bio::SeqFeature::SiRNA
420 - small inhibitory RNA
422 o Bio::SeqFeature::Tools
423 - seqFeature mapping tools
424 - Bio::SeqFeature::Tools::Unflattener.pm
425 -- deal with mapping GenBank feature collections into
426 Chado/GFF3 processable feature sets (with SO term mappings)
428 o Bio::Tools::dpAlign
429 - pure perl dynamic programming sequence alignment
432 o new Bio::SearchIO formats
433 - axt and psl: UCSC formats.
434 - blasttable: NCBI -m 8 or -m 9 format from blastall
436 o new Bio::SeqIO formats
437 - chado, tab, kegg, tigr, game
438 - important fixes for old modules
442 o improved Bio::Tools::Genewise
444 o Bio::SeqIO now can recongnize sequence formats automatically from
447 o new parsers in Bio::Tools:
448 Blat, Geneid, Lagan, Mdust, Promoterwise, PrositeScan,
450 o Bio::DB::Registry bugs fixed
451 - BerkeleyDB-indexed flat files can be used by the OBDA system
452 - Multiple seqdatabase.ini locations in OBDA_SEARCH_PATH are all
453 used by the OBDA system
456 - SimpleWebAnalysis, Trees, Feature Annotation, OBDA Access, Flat
459 o hundreds of new and improved files
463 o Bio::Tree::AlleleNode has been updated to be a container of
464 an Bio::PopGen::Individual object for use in the Coalescent simulations.
469 1.2.3 Stable release update
470 o Bug #1475 - Fix and add speedup to spliced_seq for remote location
472 o Bug #1477 - Sel --> Sec abbreviation fixed
473 o Fix bug #1487 where paring in-between locations when
474 end < start caused the FTLocationFactory logic to fail.
475 o Fix bug #1489 which was not dealing with keywords as an
476 arrayref properly (this is fixed on the main trunk because
477 keywords returns a string and the array is accessible via
479 o Bio::Tree::Tree memory leak (bug #1480) fixed
480 Added a new initialization option -nodelete which
481 won't try and cleanup the containing nodes if this
483 o Bug with parsing labeled nodes with Bio::TreeIO::newick fixed
484 this was only present on the branch for the 1.2.1 and 1.2.2 series
485 - Also merged main trunk changes to the branch which make
486 newick -> nhx round tripping more effective (storing branch length
487 and bootstrap values in same locate for NodeNHX and Node
488 implementations.) Fixes to TreeIO parsing for labeled internal
489 also required small changes to TreeIO::nhx. Improved
490 tests for this module as well.
492 - Fixed bugs in BLAST parsing which couldn't parse NCBI
493 gapped blast properly (was losing hit significance values due to
494 the extra unexpeted column).
495 - Parsing of blastcl3 (netblast from NCBI) now can handle case of
496 integer overflow (# of letters in nt seq dbs is > MAX_INT)
497 although doesn't try to correct it - will get the negative
498 number for you. Added a test for this as well.
499 - Fixed HMMER parsing bug which prevented parsing when a hmmpfam report
500 has no top-level family classification scores but does have scores and
501 alignments for individual domains.
502 - Parsing FASTA reports where ungapped percent ID is < 10 and the
503 regular expression to match the line was missing the possibility of
504 an extra space. This is rare, which is why we probably did not
506 - BLAST parsing picks up more of the statistics/parameter fields
507 at the bottom of reports. Still not fully complete.
508 - SearchIO::Writer::HTMLResultWriter and TextResultWriter
509 were fixed to include many improvements and added flexiblity
510 in outputting the files. Bug #1495 was also fixed in the process.
512 - Update for GFF3 compatibility.
513 - Added scripts for importing from UCSC and GenBank.
514 - Added a 1.2003 version number.
517 - Added a 1.2003 version number.
518 o SeqIO::swiss Bug #1504 fixed with swiss writing which was not
519 properly writing keywords out.
520 o Bio::SeqIO::genbank
521 - Fixed bug/enhancement #1513 where dates of
522 the form D-MMM-YYYY were not parsed. Even though this is
523 invalid format we can handle it - and also cleanup the date
524 string so it is properly formatted.
525 - Bug/enhancement #1517 fixed so that SEGMENT line can be parsed
526 and written with Genbank format. Similarly bug #1515 is fixed to
527 parse in the ORIGIN text.
528 o Bio::SeqIO::fasta, a new method called preferred_id_type allows you
529 to specify the ID type, one of (accession accession.version
530 display primary). See Bio::SeqIO::preferred_id_type method
531 documentation for more information.
532 o Unigene parsing updated to handle file format changes by NCBI
534 1.2.2 Stable release update
536 o A series of bug fixes of the Bio::OntologyIO dagflat-related parsers:
537 - auto-discover ontology name
538 - bug in parsing relationships when certain characters are in the term
539 - fixed hard-coded prefix for term identifiers
540 - various smaller issues
542 o Fixed bug in Bio::Annotation::OntologyTerm of not implementing all
543 of Bio::Ontology::TermI
545 o brought the OBDA Registry code up to latest specs
549 - accession number retrieval fixed
551 o Bio::SearchIO::blast - fix bug #1443 (missing last hits), parse megablast
553 o Bio::SearchIO::Writer::(HTML|Text)ResultWriter fix bugs #1458,
554 #1459 which now properly report alignment start/end info
555 for translated BLAST/FASTA searches.
557 o Bio::TreeIO::newick can parse labeled internal nodes
559 o Bio::Tools::BPbl2seq can properly report strand info for HSPs
560 for BLASTX if if you provide -report_type => 'BLASTX' when
561 initializing a BPbl2seq object. Bioperl 1.3 will have better
562 support for bl2seq in the SearchIO system.
564 o Bio::Root::IO support a -noclose boolean flag which will not
565 close a filehandle upon object cleanup - useful when sharing
566 a filehandle among objects. Additionally code added s.t.
567 STDOUT/STDIN/STDERR will never be closed by Root::IO cleanup.
569 o Bio::Tools::Genemark bug #1435 fixed which was missing last prediction
571 o Bio::SeqIO::genbank
572 - bug #1456 fixed which generated extra sequence lines
573 - write moltype correctly for genpept
575 1.2.1 Stable release update
577 o Inclusion of WrapperBase, a needed component for StandAloneBlast
579 o Addition from main trunk of Ontology objects, principly to allow
580 BioSQL releases against 1.2.1
582 o Fixes and cleanup of Bio::Coordinate modules
584 o A fix to Bio::Index::EMBL allowing retrieval of entries using
585 the primary accession number
587 o Other bug fixes, including bpindex GenBank fix
589 o Bio::SeqIO::genbank bug #1389 fixed
591 1.2 Stable major release
593 o More functionality added to Bio::Perl, the newbie module
595 o Bug fixes in Bio::TreeIO::newick fixes bug introduced in 1.0.2
596 Support for New Hampshire Extended (NHX) format parsing.
598 o Bio::Tools added support for parsing Genomewise, Pseudowise, Est2Genome,
599 Tmhmm, SignalP, Seg, RepeatMasker, FootPrinter, and a lightweight
602 o New ontology parsing Bio::Ontology
604 o Bug fixes in Bio::SearchIO for HMMer parsing, support for
605 multi-report (mlib) fasta reports, support for waba and exonerate.
607 o Bio::ClusterIO for parsing Unigene clusters
609 o Bio::Assembly added for representing phrap and ace assembly clusters.
611 o Rudimentary support for writing Chado XML (see
612 GMOD project: www.gmod.org for more information)
614 o Bio::Coordinate for mapping between different coordinate systems such
615 as protein -> cDNA -> Exon -> DNA and back. Useful for mapping
616 features into different coordinate systems.
618 o Bio::DB::GenBank/Bio::DB::GenPept now support Entrez queries
619 with the get_Stream_by_query method and supports the latest
620 NCBI eutils interface.
622 o Bugs fixed in Bio::SeqFeature::Collection an in-memory fast
623 object for extracting subsets of features : currently only
624 supports extraction by location.
626 1.1.1 Developer release
628 o Deprecated modules are now listed in the DEPRECATED file
630 o New HowTo documents located in doc/howto describing
633 o Note that bugs are now stored at bugzilla.bioperl.org
634 and all old bugs are searchable through the bugzilla interface.
636 o Several reported bugs in Bio::Tools::Sigcleave and Bio::SimpleAlign
639 o Support for Genewise parsing in Bio::Tools::Genewise
641 o Start of Ontology framework with Bio::Ontology
643 o Speedup to the Bio::Root::Root object method _rearrange.
644 A global _load_module method was implemented to simplify the
645 dynamic loading of modules ala Bio::SeqIO::genbank. This
646 method is now used by all the XXIO (AlignIO,TreeIO,SearchIO,SeqIO,
649 o Several performance improvements to sequence parsing in Bio::SeqIO.
650 Attempt to speedup by reducing object creation overhead.
652 o Bio::DB::GenBank and Bio::DB::GenPept use the NCBI's approved
653 method for sequence retrieval with their E-utils CGI scripts.
654 More work to support Entrez queries to their fullest is planned
657 o Numerous fixes to Bio::SearchIO and sequence parsing (swissprot)
659 1.1 Developer release
661 o Bio::Tools::Run has been broken off into a new pkg bioperl-run,
662 this separation removes some of the complexity in our test suite
663 and separates the core modules in bioperl from those that need
664 external programs to run.
666 o With latest ExtUtils::MakeMaker module installed SGI/IRIX should
667 not run into trouble running the makefile
669 o Bio::Location and Bio::SeqIO::FTHelper are fixed to properly
670 read,create,and write locations for grouped/split locations
671 (like mRNA features on genomic sequence).
673 o Bio::Tools::Phlyo added for wrappers for parsing Molphy (protml)
674 and PAML (codeml,aaml, etc) parsing.
676 o Bio::Tree:: objects expanded to handle testing monophyly,
677 paraphyly, least common ancestor, etc.
679 o Bio::Coordinate for mapping locations from different coordinate spaces
681 o Bio::SearchIO::waba added for parsing WABA, Bio::SearchIO::hmmer
682 added for parsing hmmpfam and hmmsearch output.
684 o Bio::SearchIO::Writer::TextResultWriter for outputting
685 a pseudo-blast textfile format
688 1.0.2 Bug fix release
690 o Note: The modules Bio::DB::GenBank and Bio::DB::GenPept provided
691 in this release will not work after December 2002 when NCBI
692 shuts off the old Entrez cgi scripts. We have already fixed
693 on our main development branch and the functionality will be
694 available in the next stable bioperl release (1.2) slated for
697 o Numerous parsing bugs in Bio::SearchIO::fasta found through
698 testset by Robin Emig. These were fixed as was the get_aln
699 method in Bio::Search::HSP::GenericHSP to handle the extra
700 context sequence that is provided with a FastA alignment.
702 o Migrating differences between Bio::Search::XX::BlastXX to
703 Bio::Search::XX::GenericXX objects. This included mechanism
704 to retrieve whole list of HSPs from Hits and whole list of Hits from
705 Results in addition to the current next_XX iterator methods that
706 are available. Added seq_inds() method to GenericHSP which identifies
707 indexes in the query or hit sequences where conserved,identical,gaps,
708 or mismatch residues are located (adapted from Steve Chervitz's
709 implementation in BlastHSP).
711 o Bio::DB::GFF bugs fixed and are necessary for latest GBrowse release.
712 Bio::DB::GFF::RelSegment is now Bio::SeqI compliant.
714 o Bio::Graphics glyph set improved and extended for GBrowse release
716 o Bio::Tree::Tree get_nodes implementation improvement thanks
717 to Howard Ross notice performance problem when writing out
720 o Bio::Location::Fuzzy::new named parameter -loc_type became
721 -location_type, Bio::Location::Simple::new named parameter
722 -seqid becamse -seq_id.
724 o Fixed major Bio::AlignIO::emboss parsing bug on needle output,
725 was mis-detecting that gaps should be placed at the beginning of
726 the alignment when the best alignment starts internally in the
729 1.0.1 Bug fix release
731 o Minor bug fixes to Bio::DB:GFF. Glyph sets improved.
733 o Parser fixes in SearchIO blast, fasta for more complete WU BLAST
734 and mixed (3.3 - 3.4) versions of FASTA.
736 o Small API change to add methods for completeness across
737 implementations of Bio::Search objects. These new methods
738 in the interface are implemented by the GenericXX object as well
739 as the BlastXX objects.
740 * Bio::Search::Result::ResultI
741 - hits() method returns list of all Hits (next_hit is an
744 * Bio::Search::Hit::HitI
745 - hsps() method returns list of all HSPs (next_hsp is an
748 o The Bio::SearchIO::Writer classes have been fixed to handle results
749 created from either psiblast (Search::BlastXX objects) or
750 blast|fasta|blastxml objects (Search::GenericXX objects). More work
751 has to be done here to make it work properly and will nee major
754 o Bugs in Bio::Tools::HMMER fixed, including
755 * #1178 - Root::IO destructor wasn't being called
756 * #1034 - filter_on_cutoff now behaves properly
758 o Bio::SeqFeature::Computation initialization args fixed and
761 o Tests are somewhat cleaner, flat.t now properly cleans up after itsself,
763 o Updated FAQ with more example based answers to typical questions
765 o Bug #1202 was fixed which would improperly join together qual values
766 parsed by Bio::SeqIO::qual when a trailing space was not present before
769 1.0.0 Major Stable Release
771 This represents a major release of bioperl with significant
772 improvements over the 0.7.x series of releases.
774 o Bio::Tools::Blast is officially deprecated. Please see
775 Bio::SearchIO for BLAST and FastA parsing.
777 o The methods trunc() and subseq() in Bio::PrimarySeqI now accepts
778 Bio::LocationI objects as well as start/end.
780 o Bio::Biblio contains modules for Bibliographic data.
781 Bio::DB::Biblio contains the query modules. Additionally one can
782 parse medlinexml from the ebi bibliographic query service (BQS)
783 system and Pubmed xml from NCBI. See Martin Senger's
784 documentation in Bio::Biblio for more information.
786 o Bio::DB::Registry is a sequence database registry part of
787 Open Bioinformatics Database Access. See
788 http://obda.open-bio.org for more information.
790 o File-based and In-Memory Sequence caching is provided by
791 Bio::DB::InMemoryCache and Bio::DB::FileCache which acts like a
794 o Bio::Graphics for rendering sequences as PNG,JPG, or GIFs has
795 been added by Lincoln Stein.
797 o XEMBL SOAP service access in provided in Bio::DB::XEMBL.
799 o A FAQ has been started and is included in the release to provide
800 a starting point for frequent questions and issues.
802 0.9.3 Developer's release
804 o Event based parsing system improved (SearchIO). With parsers for
805 XML Blast (blastxml), Text Blast (blast), and FASTA results (fasta).
806 Additionally a lazy parsing system for text and html blast reports was
807 added and is called psiblast (name subject to change in future releases).
809 o Bio::Search objects improved and standardized with associated Interfaces
810 written. The concept of a search "Hit" was standardized to be called
811 "hit" consistently and the use of "subject" was deprecated in all active
814 o Bio::Structure added (since 0.9.1) for Protein structure objects
815 and PDB parser to retrieve and write these structures from data files.
817 o Several important Bio::DB::GFF bug fixes for handling features that
818 are mapped to multiple reference points. Updated mysql adaptor
819 so as to be able to store large (>100 megabase) chunks of DNA into
820 Bio::DB::GFF databases.
822 0.9.2 Developer's release
824 o Bio::Search and Bio::SearchIO system introduced for event based
825 parsing of Blast,Fasta reports Bio::SearchIO supports ncbi BLAST
826 in text and XML and FASTA reports in standard output format.
828 o Bio::Tree and Bio::TreeIO for phylogenetic trees. A Random tree
829 generator is included in Bio::TreeIO::RandomTrees and a
830 statistics module for evaluating.
832 o Bio::DB::GFF, Lincoln Stein's GFF database suitable as a DB
833 server for DAS servers.
835 o Bio::Tools::BPlite is provides more robust parsing of BLAST
836 files. The entire BPlite system migrated to using Bio::Root::IO
839 o Bio::Tools::Alignment for Consed and sequence Trimming
842 o Bio::Structure for Protein structure information and parsing
844 o Bio::DB::GenBank/Bio::DB::GenPept updated to new NCBI Entrez
845 cgi-bin entry point which should be more reliable.
847 o Bio::Map and Bio::MapIO for biological map navigation and a
848 framework afor parsing them in. Only preliminary work here.
850 o Interface for executing EMBOSS programs locally in Bio::Factory::EMBOSS
851 Future work will integrate Pise and allow submission of analysis on
854 o Bio::AnnotationCollectionI and Bio::Annotation::Collection
855 introduced as new objects for handling Sequence Annotation
856 information (dblinks, references, etc) and is more robust that
859 o Bio::Tools::FASTAParser introduced.
861 o Scripts from the bioperl script submission project and new
862 scripts from bioperl authors are included in "scripts" directory.
864 o Factory objects and interfaces are being introduced and are more
867 o Bio::Root::Root introduced as the base object while
868 Bio::Root::RootI is now simply an interface.
870 o Bio::DB::RefSeq provides database access to copy of the NCBI
871 RefSeq database using the EBI dbfetch script.
873 0.9.0 Developer's release
875 o perl version at least 5.005 is now required instead of perl 5.004
877 o Bio::Tools::Run::RemoteBlast is available for running remote
880 o Bio::Tools::BPbl2seq was fixed to handle multiple HSPs.
882 o Bio::SeqFeature::GeneStructure migrated to Bio::SeqFeature::Gene.
883 Also added are related modules UTR3, UTR5, Exon, Intron,
884 Promotor, PolyA and Transcript.
886 o Speedup of translate method in PrimarySeq
888 o Bio::SimpleAlign has new methods: location_from_column(), slice(),
889 select(), dot(), get_seq_by_pos(), column_from_residue_number()
891 o Various fixes to Variation toolkit
893 o Bio::DB::EMBL provides database access to EMBL sequence data.
894 Bio::DB::Universal provides a central way to point to indexes
895 and dbs in a single interface.
897 o Bio::DB::GFF - a database suitable for running DAS servers locally.
899 o Bio::Factory::EMBOSS is still in design phase as is
900 Bio::Factory::ApplicationFactoryI
902 o Dia models for bioperl design are provided in the models/ directory
904 0.7.2 Bug fix release
906 o documentation fixes in many modules - SYNOPSIS code verified
907 to be runnable in many (but not all modules)
909 o corrected MANIFEST file from 0.7.1 release
911 o Bug fix in Bio::SeqIO::FTHelper to properly handle
914 o Bio::SeqIO::genbank
915 * Correct parsing and writing of genbank format with protein data
916 * moltype and molecule separation
918 o Bio::SeqIO::largefasta fix to avoid inifinite loops
920 o Bio::SimpleAlign fixed to correctly handle consensus
923 o Bio::Tools::HMMER supports hmmer 2.2g
925 o Bio::Tools::BPlite to support report type specific parsing. Most
926 major changes are not on the 0.7 branch.
928 o Bio::Tools::Run::StandAloneBlast exists_blast() fixed and works
931 o Bio::Variation::AAChange/RNAChange corrected labels and mutated alleles
932 in several types of mutations:
933 1.) AA level: deletion, complex
934 2.) AA level: complex, inframe
935 3.) RNA level: silent
937 o BPbl2seq parsing of empty reports will not die, but will return
938 a valid, empty, Bio::SeqFeature::SimilarityFeature for
939 $report->query() and $report->subject() methods. So an easy
940 way to test if report was empty is to see if
941 $report->query->seqname is undefined.
943 0.7.1 Bug fix release
945 o Better parsing of genbank/EMBL files especially fixing bugs
946 related to Feature table parsing and locations on remote
947 sequences. Additionally, species name parsing was better.
949 o Bio::SeqIO::genbank can parse now NCBI produced genbank database
950 which include a number of header lines.
952 o More strict genbank and EMBL format writing (corrected number of
953 spaces where appropriate).
955 o Bio::Tools::BPlite can better parse BLASTX reports - see BUGS
956 for related BPlite BUGS that are unresolved in this release.
958 o Bio::DB::GenBank, Bio::DB::GenPept have less problems
959 downloading sequences from NCBI via HTTP. Bio::DB::SwissProt can
960 use expasy mirrors or EBI dbfetch cgi-script.
962 o A moderate number of documentation improvements were made as
963 well to provide a better code synopsis in each module.
966 0.7 Large number of changes, including refactoring of the
967 Object system, new parsers, new functionality and
968 all round better system. Highlights are:
971 o Refactored root of inheritance: moved to a lightweight Bio::Root::RootI;
972 Bio::Root::IO for I/O and file/handle capabilities.
974 o Imported BPlite modules from Ian Korf for BLAST
975 parsing. This is considered the supported BLAST parser;
976 Bio::Tools::Blast.pm will eventually phase out due to lack of support.
978 o Improved Sequence Feature model. Added complete location
979 modelling (with fuzzy and compound locations). See
980 Bio::LocationI and the modules under Bio/Location. Added
981 support in Genbank/EMBL format parsing to completely parse
982 feature tables for complex locations.
984 o Moved special support for databanks etc to specialized modules under
985 Bio/Seq/. One of these supports very large sequences through
986 a temporary file as a backend.
988 o Explicit Gene, Transcript and Exon SeqFeature objects, supporting
989 CDS retrieval and exon shuffling.
991 o More parsers: Sim4, Genscan, MZEF, ESTScan, BPbl2seq, GFF
993 o Refactored Bio/DB/GenBank+GenPept. There is now also DB/SwissProt and
994 DB/GDB (the latter has platform-specific limitations).
996 o New analysis parser framework for HT sequence annotation (see
997 Bio::SeqAnalysisParserI and Bio::Factory::SeqAnalysisParserFactory)
999 o New Alignment IO framework
1001 o New Index modules (Swissprot)
1003 o New modules for running Blast within perl
1004 (Bio::Tools::Run::StandAloneBlast). Added modules for running
1005 Multiple Sequence Alignment tools ClustalW and TCoffee
1006 (Bio::Tools::Run::Alignment).
1008 o New Cookbook-style tutorial (see bptutorial.pl). Improved
1009 documentation across the package.
1011 o Much improved cross platform support. Many known incompatibilities
1012 have been fixed; however, NT and Mac do not work across the entire
1013 setup (see PLATFORMS).
1015 o Many bug fixes, code restructuring, etc. Overall stability and
1016 maintainability benefit a lot.
1018 o A total of 957 automatic tests
1023 There are very few functionality changes but a large
1024 number of software improvements/bug fixes across the package.
1026 o The EMBL/GenBank parsing are improved.
1028 o The Swissprot reading is improved. Swissprot writing
1029 is disabled as it doesn't work at all. This needs to
1030 wait for 0.7 release
1032 o BLAST reports with no hits are correctly parsed.
1034 o Several other bugs of the BLAST parser (regular expressions, ...)
1037 o Old syntax calls have been replaced with more modern syntax
1039 o Modules that did not work at all, in particular the Sim4
1040 set have been removed
1042 o Bio::SeqFeature::Generic and Bio::SeqFeature::FeaturePair
1043 have improved compliance with interface specs and documentation
1045 o Mailing list documentation updated throughout the distribution
1047 o Most minor bug fixes have happened.
1049 o The scripts in /examples now work and have the modern syntax
1050 rather than the deprecated syntax
1053 0.6.1 Sun April 2 2000
1055 o Sequences can have Sequence Features attached to them
1056 - The sequence features can be read from or written to
1057 EMBL and GenBank style flat files
1059 o Objects for Annotation, including References (but not
1060 full medline abstracts), Database links and Comments are
1063 o A Species object to represent nodes on a taxonomy tree
1066 o The ability to parse HMMER and Sim4 output has been added
1068 o The Blast parsing has been improved, with better PSI-BLAST
1069 support and better overall behaviour.
1071 o Flat file indexed databases provide both random access
1072 and sequential access to their component sequences.
1074 o A CodonTable object has been written with all known
1075 CodonTables accessible.
1077 o A number of new lightweight analysis tools have been
1078 added, such as molecular weight determination.
1080 The 0.6 release also has improved software engineering
1082 o The sequence objects have been rewritten, providing more
1083 maintainable and easier to implement objects. These
1084 objects are backwardly compatible with the 0.05.1 objects
1086 o Many objects are defined in terms of interfaces and then
1087 a Perl implementation has been provided. The interfaces
1088 are found in the 'I' files (module names ending in 'I').
1090 This means that it is possible to wrap C/CORBA/SQL access
1091 as true "bioperl" objects, compatible with the rest of
1094 o The SeqIO system has been overhauled to provide better
1095 processing and perl-like automatic interpretation of <>
1098 o Many more tests have been added (a total of 172 automatic
1099 tests are now run before release).
1103 0.05.1 Tue Jun 29 05:30:44 1999
1104 - Central distribution now requires Perl 5.004. This was
1105 done to get around 5.003-based problems in Bio/Index/*
1107 - Various bug fixes in the Bio::Tools::Blast modules
1108 including better exception handling and PSI-Blast
1109 support. See Bio/Tools/Blast/CHANGES for more.
1110 - Fixed the Parse mechanism in Seq.pm to use readseq.
1111 Follow the instructions in README for how to install
1112 it (basically, you have to edit Parse.pm).
1113 - Improved documentation of Seq.pm, indicating where
1114 objects are returned and where strings are returned.
1115 - Fixed uninitialized warnings in Bio::Root::Object.pm
1116 and Bio::Tools::SeqPattern.pm.
1117 - Bug fixes for PR#s: 30,31,33-35,41,42,44,45,47-50,52.
1119 0.05 Sun Apr 25 01:14:11 1999
1120 - Bio::Tools::Blast modules have less memory problems
1121 and faster parsing. Webblast uses LWP and supports
1122 more functionality. See Bio/Tools/Blast/CHANGES for more.
1123 - The Bio::SeqIO system has been started, moving the
1124 sequence reformatting code out of the sequence object
1125 - The Bio::Index:: system has been started, providing
1126 generic index capabilities and specifically works for
1127 Fasta formatted databases and EMBL .dat formatted
1129 - The Bio::DB:: system started, providing access to
1130 databases, both via flat file + index (see above) and
1132 - The scripts/ directory, where industrial strength scripts
1133 are put has been started.
1134 - Many changes - a better distribution all round.
1136 0.04.4 Wed Feb 17 02:20:13 1999
1137 - Bug fixes in the Bio::Tools::Blast modules and postclient.pl
1138 (see Bio::Tools::Blast::CHANGES).
1139 - Fixed a bug in Bio::Tools::Fasta::num_seqs().
1140 - Beefed up the t/Fasta.t test script.
1141 - Small fix in Bio::Seq::type() (now always returns a string).
1142 - Changed Bio::Root::Utilities::get_newline_char() to
1143 get_newline() since it could return more than one char.
1144 - Added $NEWLINE and $TIMEOUT_SECS to Bio::Root::Global.
1145 - Changed default timeout to 20 seconds (was 3).
1146 - Moved lengthy modification notes to the bottom of some files.
1147 - Fixed SimpleAlign write_fasta bug.
1148 - Beefed up SimpleAlign.t test
1150 0.04.3 Thu Feb 4 07:48:53 1999
1151 - Bio::Root::Object.pm and Global.pm now detect when
1152 script is run as a CGI and suppress output that is only
1153 appropriate when running interactively.
1154 - Bio::Root::Err::_set_context() adds name of script ($0).
1155 - Added comments in Bio::Tools::WWW.pm and Bio::Root::Utilities.pm
1156 regarding the use of the static objects via the qw(:obj) tag.
1157 - Fixed the ambiguous reverse calls in Seq.pm and UnivAln.pm to
1158 CORE::reverse, avoiding Perl warnings.
1159 - Bug fixes in Bio::Tools::Blast modules (version 0.074) and
1160 example scripts (see Bio::Tools::Blast::CHANGES).
1161 - examples/seq/seqtools.pl no longer always warns about using
1162 -prot or -nucl command-line arguments; only when using the
1164 - Methods added to Bio::Root::Utilities: create_filehandle(),
1165 get_newline_char(), and taste_file() to generalize filehandle
1166 creation and autodetect newline characters in files/streams
1167 (see bug report #19).
1168 - Bio::Root::IOManager::read() now handles timeouts and uses
1169 Utilities::create_filehandle().
1170 - Bio::Tools::Fasta.pm uses Utilities::get_newline_char() instead
1171 of hardwiring in "\n".
1172 - Bug fixes in the Bio::SimpleAlign and Bio::Tools::pSW
1174 0.04.2 Wed Dec 30 02:27:36 1998
1175 - Bug fixes in Bio::Tools::Blast modules, version 0.073
1176 (see Bio::Tools::Blast::CHANGES).
1177 - Changed reverse calls in Bio/Seq.pm and Bio/UnivAln.pm
1178 to CORE::reverse (prevents ambiguous warnings with 5.005).
1179 - Appending '.tmp.bioperl' to temporary files created by
1180 Bio::Root::Utilities::compress() or uncompress() to
1181 make it easy to identify & cleanup these files as needed.
1182 - Developers: Created CVS branch release-0-04-bug from
1183 release-0-04-1. Before making bug fixes to the 0.04.1 release,
1184 be sure to cvs checkout this branch into a clean area.
1186 0.04.1 Wed Dec 16 05:39:15 1998
1187 - Bug fixes in Bio::Tools::Blast modules, version 0.072
1188 (see Bio::Tools::Blast::CHANGES).
1189 - Compile/SW/Makefile.PL now removes *.o and *.a files
1192 0.04 Tue Dec 8 07:49:19 1998
1193 - Lots of new modules added including:
1194 * Ewan Birney's Bio::SimpleAlign.pm, Bio::Tools::AlignFactory.pm,
1195 and Bio/Compile directory containing XS-linked C code for
1196 creating Smith-Waterman sequence alignments from within Perl.
1197 * Steve Chervitz's Blast distribution has been incorporated.
1198 * Georg Fuellen's Bio::UnivAln.pm for multiple alignment objects.
1199 - Bio/examples directory for demo scripts for all included modules.
1200 - Bio/t directory containing test suit for all included modules.
1201 - For changes specific to the Blast-related modules prior to
1202 incorporation in this central distribution, see the CHANGES
1203 file in the Bio/Tools/Blast directory.
1205 0.01 Tue Sep 8 14:23:22 1998
1206 - original version from central CVS tree; created by h2xs 1.18