Help for this page

Select Code to Download


  1. or download this
    open( FASTAFILE, $ARGV[0] );
    while (<FASTAFILE>) {
    ...
    
    push ( @sequences, $fasta );
    #then iterate @sequences to run over BLAST
    
  2. or download this
      # script 1: create the index
      use Bio::Index::Fasta; # using fasta file format
    ...
          # do something with the sequence
      }