GO::Utils::File.3pm

Langue: en

Autres versions - même langue

Version: 2007-03-18 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

GO::Utils::File - simply utility module for dealing with file parsing

SYNOPSIS

GO::Utils::File provides a single exported function for retrieving the lines out of a file, that can be easily reused.

It will simply expect one gene name to exist per line. It should deal correctly with Mac and DOS line-endings, and will remove whitespace from the beginning and end of the names, then return the gene names as an array.

  use GO::Utils::File qw(GenesFromFile);
 
  my @genes = GenesFromFile($filename);
 
 

GenesFromFile

GenesFromFile returns an array of gene names that were read from the supplied file. It assumes one name per line.

Usage:

     my @genes = GenesFromFile($filename);
 
 

AUTHOR

Gavin Sherlock; sherlock@genome.stanford.edu