Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed synopsis typo
  • Loading branch information
fangly committed Feb 19, 2014
1 parent 0803cc7 commit 514e2dc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Bio/SeqIO/MultiFile.pm
Expand Up @@ -17,9 +17,9 @@ Bio::SeqIO::MultiFile - Treating a set of files as a single input stream
=head1 SYNOPSIS
$seqin = Bio::SeqIO::MultiFile( '-format' => 'Fasta',
'-files' => ['file1','file2'] );
while((my $seq = $seqin->next_seq)) {
my $seqin = Bio::SeqIO::MultiFile->new( -format => 'Fasta',
-files => ['file1','file2'] );
while (my $seq = $seqin->next_seq) {
# do something with $seq
}
Expand Down

0 comments on commit 514e2dc

Please sign in to comment.