Help for this page

Select Code to Download


  1. or download this
    {
    open (IN, $file) || die "Can't open $file\n";
    my $tag; my $seq;
    ...
    $protein{$tag} = uc($seq); # add this line to get the last sequence
    close IN;
    }
    
  2. or download this
    >chr1 RecName: Full=Putative transcription factor 001R;
    MAFSAEDVLKEYDRRRRMEALLLSLYYPNDRKLLDYKEWSPPRVQVECPKAPVEWNNPPS
    EKGLIVGHFSGIKYKGEKAQASEVDVNKMCCWVSKFKDAMRRYQGIQTCKIPGKVLSDLD
    ...
    KCINRASDPVYQKVKTLHAYPDQCWYVPCAADVGELKMGTQRDTPTNCPTQVCQIVFNML
    DDGSVTMDDVKNTINCDFSKYVPPPPPPKPTPPTPPTPPTPPTPPTPPTPPTPRPVHNRK
    VMFFVAGAVLVAILISTVRW
    
  3. or download this
    >chr1 RecName: Full=Putative transcription factor 001R;    9.425903320
    +3125
    >chr2 RecName: Full=Uncharacterized protein 002L;    8.2193603515625
    
  4. or download this
    chr1    9.793558
    chr2    7.791410
    
  5. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    ...
         my $iep = $calc->iep;
         print join("\t", $seq->id, $iep), "\n";
    }