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