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

select distinct ...

parent a57c76e4
No related branches found
No related tags found
No related merge requests found
......@@ -361,7 +361,7 @@ sub dump_embl {
my $sql;
$sql="
SELECT cl.*
SELECT distinct cl.*
FROM $litedb.gene lg,
$satdb.clone cl
WHERE lg.chr_name = '$chr'
......@@ -370,7 +370,7 @@ SELECT cl.*
dump_data($sql, $satdb, 'clone');
$sql="
SELECT ctg.*
SELECT distinct ctg.*
FROM $litedb.gene lg,
$satdb.clone cl,
$satdb.contig ctg
......@@ -380,7 +380,7 @@ SELECT ctg.*
";
dump_data($sql, $satdb, 'contig');
$sql ="
SELECT dna.*
SELECT distinct dna.*
FROM $litedb.gene lg,
$satdb.clone cl,
$satdb.contig ctg,
......
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