Help for this page

Select Code to Download


  1. or download this
    my $data   = get('ftp://ftp.ncbi.nih.gov/refseq/LocusLink/LL_tmpl.gz')
    +;
    my $outfile = '>GO_TERMS.CSV';
    ...
    binmode OUT;
    print OUT $data;
    close(OUT);
    
  2. or download this
    use Net::FTP;
    
    ...
    $ftp->type('binary');
    $ftp->get('LL_tmpl.gz');
    $ftp->quit();