Help for this page

Select Code to Download


  1. or download this
    ### FILL ACHROMS TABLE ###########################################
    
    ...
    
        # Send the record to have any blank lines removed.
        my @newrecord = CleanData( $record );
    
  2. or download this
        @newrecord = CleanData( $record );
    ----
        my $newrecord = CleanData($record);
    
  3. or download this
    sub CleanData
    {
    ...
    
        return \@cleanrecord;
    }
    
  4. or download this
        $sth_update_exon -> execute( @exondata[1,2,3,4],
                                     $geneid, $exondata[0] );
    
  5. or download this
    sub ParseAChroms {
        my $achromref = shift;
    ...
    
        return \@achrom;
    }
    
  6. or download this
    sub ParseAChroms {
        my $achromref = shift;
    ...
        $achrom{TYPE} = $line =~ /\b([BY]AC\b/o;
    
        return \%achrom;
    
  7. or download this
    my $match_achrom_statement = << STH_MATCH;
    SELECT ac_id
    ...
    STH_MATCH
    
    my $sth_match_achrom = $dbh->prepare($match_achrom_statement);