From 57545a52eefc93ee5452f5a207f1c6d6ce5d15f2 Mon Sep 17 00:00:00 2001 From: Javier Herrero Date: Wed, 11 May 2016 09:27:51 +0100 Subject: [PATCH] Use shorter description for proximity filter --- database/load_27k_array.pl | 2 +- database/load_450k_array.pl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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;