Help for this page

Select Code to Download


  1. or download this
    use strict;
    system( "cp /analysis/fasta1.fa /analysis2/fasta1.fa" ) 
        or die print "Can't copy fasta file: $! \n";
    
  2. or download this
    use strict;
    &doSystemCommand(  "cp /analysis/fasta1.fa /analysis2/fasta1.fa"  );
    ...
            die "Failed executing [$systemCommand]\n"; 
        }
    }