Help for this page

Select Code to Download


  1. or download this
    open FILE, "mRNA.fa" or die $!; # Opens mRNA, assoicates FILE
    
  2. or download this
    perl <programName.pl> <input file>
    
  3. or download this
    my $file = $ARGV[0];
    open (my $mRNAfile, "<", $file) or die $!; 
    my @mRNAdata = ( ); # initalizes the variables of array
    @mRNAdata = <$mRNAfile>;
    
  4. or download this
    "Number found where operator expected at - line 1, near "Sequence 1" (
    +Do you need to predeclare Sequence?).