Help for this page

Select Code to Download


  1. or download this
       if ($line =~/^>(\w+)\s(.+)$/) {
          push(@seqnames, $1);
    
  2. or download this
       if (my ($firstword,$rest_of_it) = $line =~/^>(\w+)\s(.+)$/) {
           push @segnames,$firstword;