diff --git a/database/load_27k_array.pl b/database/load_27k_array.pl index c5e8011..2716190 100644 --- a/database/load_27k_array.pl +++ b/database/load_27k_array.pl @@ -269,7 +269,7 @@ sub load_proxy_filter { system($runstr) == 0 or die "Error while running bedtools: $?"; my $sth = $dbh->prepare("INSERT OR IGNORE INTO proxy_filter_info (array_id, description) VALUES (?, ?)"); - $sth->execute($array_id, "Distance-based: 1kb"); + $sth->execute($array_id, "1kb"); open(BED, $this_output_bed_file) or die; my $all_probes; diff --git a/database/load_450k_array.pl b/database/load_450k_array.pl index 3dadd80..837d9f9 100644 --- a/database/load_450k_array.pl +++ b/database/load_450k_array.pl @@ -210,7 +210,7 @@ sub load_proxy_filter { system($runstr) == 0 or die "Error while running bedtools: $?"; my $sth = $dbh->prepare("INSERT OR IGNORE INTO proxy_filter_info (array_id, description) VALUES (?, ?)"); - $sth->execute($array_id, "Distance-based: 1kb"); + $sth->execute($array_id, "1kb"); open(BED, $this_output_bed_file) or die; my $all_probes;