Help for this page

Select Code to Download


  1. or download this
    open(FILE, "<\HPRD_FLAT_FILES_090107\PROTEIN_Architecture.txt") or die
    +("Unable to open file");
    open(OUTPUT1, ">$output") or die("Unable to open file");
    
  2. or download this
    $infile = "/HPRD_FLAT_FILES_090107/PROTEIN_Architecture.txt";
    open(FILE, "<", $infile)
        or die("Open failed for reading $infile: $!");
    
  3. or download this
    open(OUTPUT1, ">", $output) or die "Open failed for writing $output: $
    +!");
    
  4. or download this
    @hprdArchi = split /\n/,$tar->get_content("HPRD_FLAT_FILES_090107/PROT
    +EIN_Architecture.txt");