Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Bio::DB::Fasta;
    ...
        my ($id) = (/^>(\S+)/);  # capture the id string (without the init
    +ial ">")
        print IDDATA ">$id\n", $db->seq( $id ), "\n";
    }
    
  2. or download this
    use strict;
    
    ...
        my ($id) = (/^>(\S+)/);  # capture the id string (without the init
    +ial ">")
        print IDDATA ">$id\n", $falib{$id}, "\n" if ( exists( $falib{$id} 
    +));
    }