
Bio::Affymetrix::CDF::Probeset- an Affymetrix probeset in an CDF file

use Bio::Affymetrix::CDF;
# Parse the CDF file
my $cdf=new CDF();
$cdf->parse_from_file("foo.cdf");
# Print out all of the probeset names on this chip type
my $probeset=$chp->probesets()->[0];
FINISH ME HERE

The Affymetrix microarray system produces files in a variety of formats. If this means nothing to you, these modules are probably not for you :). After these modules have parsed a CDF file, the resulting Bio::Affymetrix::CDF file contains a list of Bio::Affmetrix::CDF::Probeset objects. This allows you look at the details of the probeset.
You can only get probe-level information if you have parsed the CDF object with probe-level parsing turned on.

Copyright (C) 2004 by Nick James, David J Craigon, NASC (arabidopsis.info), The University of Nottingham
This module is free software. You can copy or redistribute it under the same terms as Perl itself.
Affymetrix is a registered trademark of Affymetrix Inc., Santa Clara, California, USA.

Nick James (nick at arabidopsis.info)
David J Craigon (david at arabidopsis.info)
Nottingham Arabidopsis Stock Centre (http://arabidopsis.info), University of Nottingham.

Arg [0] : none Example : my $cdf=new Bio::Affymetrix::CDF::Probeset(); Description: constructor for Bio::Affymetrix::CDF::Probeset object. You probably do not want to make these objects yourself yet, however. Returntype : new Bio::Affmetrix::CDF object Exceptions : none Caller : general