in reply to bioperl problem
In your snippet of code, $bio_seq is a Bio::SeqIO object pointing to an output FASTA file
You can create such an object like so:
where: 'outputfilename' is the name of your desired output file. Friendly reminder: always remember to use the 'strict' pragma and enable 'warnings' to make sure you can identify problem areas in your code.use strict; use warnings; use Bio::SeqIO; my $bio_seq = Bio::SeqIO->new( -file => '>outputfilename', -format => 'Fasta' );
|
|---|