InSilicoSpectro::Spectra::PhenyxPeakDescriptor - InSilicoSpectro::Spectra::PhenyxPeakDescriptor documentation


InSilicoSpectro documentation  | view source Contained in the InSilicoSpectro distribution.

Index


NAME

Top

InSilicoSpectro::Spectra::PhenyxPeakDescriptor

SYNOPSIS

Top

  my $t=XML::Twig->new->parsefile($file);
  my @el=$t->get_xpath("ple:ItemOrder");
  my @pd;
  foreach(@el){
    my $pd=InSilicoSpectro::Spectra::PhenyxPeakDescriptor->new();
    $pd->readTwigEl($_);
    $pd->writeXml();
    push @pd, $pd;
  }
  print "comparing to first node\n";
  foreach(1..$#pd){
    print "$_ -> ".(($pd[$_]->equalsTo($pd[0]))?"OK":"!=")."\n";
  }

DESCRIPTION

Top

List of fields name related to peak Merely contains a list of names (ex ['mass', 'intensity', 'prob'])

FUNCTIONS

Top

METHODS

Top

my $pd=InSilicoSpectro::Spectra::PhenyxPeakDescriptor->new([\%h])
$pd->writeXml()
$pd->readTwigEl($tw)

Read info from an Xml::Twig node tagged <ple:ItemOrder>

EXAMPLES

Top

SEE ALSO

Top

COPYRIGHT

Top

AUTHORS

Top

Alexandre Masselot, www.genebio.com


InSilicoSpectro documentation  | view source Contained in the InSilicoSpectro distribution.