Skip to content
Snippets Groups Projects
Commit f316cc45 authored by Philip Lijnzaad's avatar Philip Lijnzaad
Browse files

GPHit _was_ needed. Also added -N to mysql so we don't get silly table

headers.
parent 4e203e91
No related branches found
No related tags found
No related merge requests found
......@@ -337,9 +337,21 @@ WHERE lg.chr_name = '$chr'
";
dump_data($sql, $satdb, 'Hit');
# GPHit (i.e., those on the golden path); denormalized table used by contigview
$sql="
SELECT distinct h.*
FROM $satdb.Hit h,
$litedb.gene_snp lgs,
$litedb.gene lg
WHERE lg.chr_name = '$chr'
AND lg.gene = lgs.gene
AND lgs.refsnpid = h.refsnpid
"
dump_data($sql, $satdb, 'GPHit');
# ignore these (says Heikki):
# Freq
# GPHit
# SubPop
} # snp
......@@ -584,7 +596,7 @@ sub dump_data {
$sql =~ s/\s+/ /g;
my $cmd = "echo \"$sql\" | $mysql -q --batch -u $dbuser -p$dbpass $litedb > $destdir/$datfile";
my $cmd = "echo \"$sql\" | $mysql -N -q --batch -u $dbuser -p$dbpass $litedb > $destdir/$datfile";
# warn "dumping: $cmd\n"; too verbose
warn "dumping $tablename ...\n";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment