Help for this page

Select Code to Download


  1. or download this
              
                  for my$i(0..($replication_rounds-1))
    ...
                    }
                }
    
  2. or download this
    for my $i ( 0 .. ( $replication_rounds - 1 ) ) {
        for my $j ( 0 .. ( @{ $allgen{$i} } ) ) {
    # the counter divided by 30 will give a decimal,
    ...
    } ## end for my $i ( 0 .. ( $replication_rounds...))
    ###################
    
  3. or download this
    
    for my $i ( 0 .. ( $replication_rounds - 1 ) ) {
    ...
            print "\>RandomHA $date \n" . $allgen{$i}[ $j - 1 ] ."\n";
        }
    }
    
  4. or download this
    for my $i ( 0 .. ( $replication_rounds - 1 ) ) {
        for my $j ( 0 .. $#{ $allgen{$i} }  ) {
    ...
            print "\>RandomHA $date \n" . $allgen{$i}[ $j ] ."\n";
        }
    }
    
  5. or download this
    foreach my $nucleotide (@nucleotide_array) {
        chomp $nucleotide;
    ...
       my( $nucleotide, $score ) = @_;
       ...
       $$nucleotide =~ s/A/T/g;
    
  6. or download this
    my $maxNumberOfThreads = 5;
    my $threadCount = 0;
    for ( $i = 1 ; $i < $replication_rounds ; $i++ ) {
    ...
            }
        }
    }