~ubuntu-branches/ubuntu/natty/python-cogent/natty

« back to all changes in this revision

Viewing changes to cogent/align/_pairwise_seqs.pyx

  • Committer: Bazaar Package Importer
  • Author(s): Steffen Moeller
  • Date: 2010-12-04 22:30:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101204223035-j11kinhcrrdgg2p2
Tags: 1.5-1
* Bumped standard to 3.9.1, no changes required.
* New upstream version.
  - major additions to Cookbook
  - added AlleleFreqs attribute to ensembl Variation objects.
  - added getGeneByStableId method to genome objects.
  - added Introns attribute to Transcript objects and an Intron class.
  - added Mann-Whitney test and a Monte-Carlo version
  - exploratory and confirmatory period estimation techniques (suitable for
    symbolic and continuous data)
  - Information theoretic measures (AIC and BIC) added
  - drawing of trees with collapsed nodes
  - progress display indicator support for terminal and GUI apps
  - added parser for illumina HiSeq2000 and GAiix sequence files as 
    cogent.parse.illumina_sequence.MinimalIlluminaSequenceParser.
  - added parser to FASTQ files, one of the output options for illumina's
    workflow, also added cookbook demo.
  - added functionality for parsing of SFF files without the Roche tools in
    cogent.parse.binary_sff
  - thousand fold performance improvement to nmds
  - >10-fold performance improvements to some Table operations

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
cdef extern from "math.h":
11
11
    double log (double x)
12
12
 
13
 
version_info = (3, 0)
14
 
__version__ = "('1', '4', '1')"
 
13
version_info = (3, 1)
 
14
__version__ = "('1', '5', '0')"
15
15
 
16
16
cdef double SCALE_STEP, MIN_FLOAT_VALUE
17
17
SCALE_STEP = 2.0**50
296
296
                if local and dx and dy:
297
297
                    if (use_scaling and max_exponent > overall_max_exponent) or (
298
298
                            (not use_scaling or max_exponent == overall_max_exponent) and (
299
 
                            mantissa >= overall_max_mantissa)):
 
299
                            mantissa > overall_max_mantissa)):
300
300
                        overall_max_exponent = max_exponent
301
301
                        overall_max_mantissa = mantissa
302
302
                        last_i = i