| Summary | Included libraries | Package variables | Synopsis | Description | General documentation | Methods |
use Bio::Perl qw(read_sequence read_all_sequences write_sequence new_sequence get_sequence);# will guess file format from extension
print "Sequence name is ",$seq_object->display_id,"\n"; print "Sequence acc is ",$seq_object->accession_number,"\n"; print "First 5 bases is ",$seq_object->subseq(1,5),"\n";# get the whole sequence as a single string
$sequence_as_a_string = $seq_object->seq();# writing sequences
write_sequence(">$filename",'genbank',$seq_object);
write_sequence(">$filename",'genbank',@seq_object_array);
# making a new sequence from just strings you have $seq_object = new_sequence("ATTGGTTTGGGGACCCAATTTGTGTGTTATATGTA","myname","AL12232");
# getting a sequence from a database (assumes internet connection) $seq_object = get_sequence('swissprot',"ROA1_HUMAN");
$seq_object = get_sequence('embl',"AI129902");
$seq_object = get_sequence('genbank',"AI129902");
| BEGIN | Code | |
| read_sequence | Description | Code |
| read_all_sequences | Description | Code |
| write_sequence | Description | Code |
| new_sequence | Description | Code |
| get_sequence | Description | Code |
| read_sequence | code | next | Top |
Title : read_sequence
Usage : $seq = read_sequence('sequences.fa')
$seq = read_sequence($filename,'genbank');
# pipes are fine
$seq = read_sequence("my_fetching_program $id |",'fasta');
Function: Reads the top sequence from the file. If no format is given, it will
try to guess the format from the filename. If a format is given, it
forces that format. The filename can be any valid perl open() string
- in particular, you can put in pipes
Returns : A Bio::Seq object. A quick synopsis:
$seq_object->display_id - name of the sequence
$seq_object->seq - sequence as a string
Args : Two strings, first the filename - any Perl open() string is ok
Second string is the format, which is optional
For more information on Seq objects see Bio::Seq. |
| read_all_sequences | code | prev | next | Top |
Title : read_all_sequences
Usage : @seq_object_array = read_all_sequences($filename);
@seq_object_array = read_all_sequences($filename,'genbank');
Function: Just as the function above, but reads all the sequences in the
file and loads them into an array.
For very large files, you will run out of memory. When this
happens, you've got to use the SeqIO system directly (this is
not so hard! Don't worry about it!).
Returns : array of Bio::Seq objects
Args : two strings, first the filename (any open() string is ok)
second the format (which is optional)
See Bio::SeqIO and Bio::Seq for more information |
| write_sequence | code | prev | next | Top |
Title : write_sequence
Usage : write_sequence(">new_file.gb",'genbank',$seq)
write_sequence(">new_file.gb",'genbank',@array_of_sequence_objects)
Function: writes sequences in the specified format
Returns : true
Args : filename as a string, must provide an open() output file
format as a string
one or more sequence objects |
| new_sequence | code | prev | next | Top |
Title : new_sequence Usage : Function: Example : Returns : Args : |
| get_sequence | code | prev | next | Top |
Title : get_sequence
Usage : $seq_object = get_sequence('swiss',"ROA1_HUMAN");
Function: If the computer has Internet accessibility, gets
the sequence from Internet accessible databases. Currently
this supports Swissprot, EMBL, GenBank and RefSeq.
Swissprot and EMBL are more robust than GenBank fetching.
If the user is trying to retrieve a RefSeq entry from
GenBank/EMBL, the query is silently redirected.
Returns : A Bio::Seq object
Args : database type - one of swiss, embl, genbank or refseq
identifier or accession number |
| BEGIN | Top |
eval { require Bio::DB::EMBL; require Bio::DB::GenBank; require Bio::DB::SwissProt; require Bio::DB::RefSeq; }; if( $@ ) { $DBOKAY = 0; } else { $DBOKAY = 1;}
| read_sequence | description | prev | next | Top |
my ($filename,$format) = @_; if( !defined $filename ) { confess "read_sequence($filename) - usage incorrect"; } my $seqio; if( defined $format ) { $seqio = Bio::SeqIO->new( '-file' => $filename, '-format' => $format); } else { $seqio = Bio::SeqIO->new( '-file' => $filename); } my $seq = $seqio->next_seq(); return $seq;}
| read_all_sequences | description | prev | next | Top |
my ($filename,$format) = @_; if( !defined $filename ) { confess "read_all_sequences($filename) - usage incorrect"; } my $seqio; if( defined $format ) { $seqio = Bio::SeqIO->new( '-file' => $filename, '-format' => $format); } else { $seqio = Bio::SeqIO->new( '-file' => $filename); } my @seq_array; while( my $seq = $seqio->next_seq() ) { push(@seq_array,$seq); } return @seq_array;}
| write_sequence | description | prev | next | Top |
my ($filename,$format,@sequence_objects) = @_; if( scalar(@sequence_objects) == 0 ) { confess("write_sequence(filename,format,sequence_object)"); } my $error = 0; my $seqname = "sequence1"; my $seqio = Bio::SeqIO->new('-file' => $filename, '-format' => $format); foreach my $seq ( @sequence_objects ) { my $seq_obj; if( !ref $seq ) { if( length $seq > 50 ) { # odds are this is a sequence as a string, and someone has not figured out}
# how to make objects. Warn him/her and then make a sequence object
# from this
if( $error == 0 ) { carp("WARNING: You have put in a long string into write_sequence.\nI suspect this means that this is the actual sequence\nIn the future try the\n new_sequence method of this module to make a new sequence object.\nDoing this for you here\n"); $error = 1; } $seq_obj = new_sequence($seq,$seqname); $seqname++; } else { confess("You have a non object [$seq] passed to write_sequence. It maybe that you want to use new_sequence to make this string into a sequence object?"); } } else { if( !$seq->isa("Bio::SeqI") ) { confess("object [$seq] is not a Bio::Seq object; can't write it out"); } $seq_obj = $seq; } # finally... we get to write out the sequence!
$seqio->write_seq($seq_obj); } 1;
| new_sequence | description | prev | next | Top |
my ($seq,$name,$accession) = @_; if( !defined $seq ) { confess("new_sequence(sequence_as_string) usage"); } $name ||= "no-name-for-sequence"; my $seq_object = Bio::Seq->new( -seq => $seq, -id => $name); $accession && $seq_object->accession_number($accession); return $seq_object;}
| get_sequence | description | prev | next | Top |
my ($db_type,$identifier) = @_; if( ! $DBOKAY ) { confess("Your system does not have IO::String installed so the DB retrieval method is not available"); return; } $db_type = lc($db_type); my $db; if( $db_type =~ /gen/ ) { if( !defined $genbank_db ) { $genbank_db = Bio::DB::GenBank->new(); } $db = $genbank_db; } if( $db_type =~ /swiss/ ) { if( !defined $swiss_db ) { $swiss_db = Bio::DB::SwissProt->new(); } $db = $swiss_db; } if( $db_type =~ /embl/ ) { if( !defined $embl_db ) { $embl_db = Bio::DB::EMBL->new(); } $db = $embl_db; } if( $db_type =~ /refseq/ or ($db_type !~ /swiss/ and $identifier =~ /_/)) { if( !defined $refseq_db ) { $refseq_db = Bio::DB::RefSeq->new(); } $db = $refseq_db; } my $seq; if( $identifier =~ /^\w+\d+$/ ) { $seq = $db->get_Seq_by_acc($identifier); } else { $seq = $db->get_Seq_by_id($identifier); } return $seq;}
| FEEDBACK | Top |
| Mailing Lists | Top |
bioperl-l@bio.perl.org
| Reporting Bugs | Top |
bioperl-bugs@bio.perl.org http://bio.perl.org/bioperl-bugs/
| AUTHOR - Ewan Birney | Top |
| APPENDIX | Top |