Package Bio :: Package Affy :: Module CelFile :: Class CelScanner
[hide private]
[frames] | no frames]

Class CelScanner

source code

object --+
         |
        CelScanner

Scanner for Affymetrix CEL files (DEPRECATED)

Methods: feed Feed data into the scanner.

The scanner generates (and calls the consumer) the following types of events:

Rows - the number of rows on the microarray Cols - the number of columns on the microarray StartIntensity - generated when the section [INTENSITY] is found ReadIntensity - one line in the section [INTENSITY]

This class is DEPRECATED; please use the read() function in this module.

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
feed(scanner, handle, consumer)
Feed in a handle to a Cel file for scanning.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Overrides: object.__init__
(inherited documentation)

feed(scanner, handle, consumer)

source code 

Feed in a handle to a Cel file for scanning. handle is a file-like object that contains the Cel file. consumer is a Consumer object that will receive events as the report is scanned.