Permalink
Browse files

Use shorter description for proximity filter

  • Loading branch information...
1 parent 73302a6 commit 57545a52eefc93ee5452f5a207f1c6d6ce5d15f2 @jherrero jherrero committed May 11, 2016
Showing with 2 additions and 2 deletions.
  1. +1 −1 database/load_27k_array.pl
  2. +1 −1 database/load_450k_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;
@@ -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;

0 comments on commit 57545a5

Please sign in to comment.