Help for this page

Select Code to Download


  1. or download this
    
    chrX    1    1000000
    ...
    chrX    2000001    3000001
    
    ...etc.
    
  2. or download this
    open (INTERVAL, "/Users/logancurtis-whitchurch/Dropbox/thesis_folder/g
    +alaxy_chrX_data/chrX_1Mbwindow_nonoverlapping.interval") or die "can'
    +t open file\n";
    
    while (my $interval = <INTERVAL>){ 
    ...
            my @find_interval = split(/\t/, $interval);
            my $start = $find_interval[1];
            my $end = $find_interval[2];
    
  3. or download this
        
            my $switch = 1; 
            
    ...
            
            my $output_file = "/Users/logancurtis-whitchurch/Desktop/temp_
    +$count.txt";
                open(OUT, ">$output_file");
    
  4. or download this
       my @SNPs = <CG>; 
            my @get_SNP = split(/\t/, $SNPs[$placeholder]); 
            my $position = $get_SNP[3];
    
  5. or download this
     my $switch = 1; 
            
            while ($switch == 1) {
    ...
    
            }
            }