Skip to content
Snippets Groups Projects
Commit 5debe59e authored by Arne Stabenau's avatar Arne Stabenau
Browse files

contig_landmarkMarker table renamed and columns renamed in it.

Code changed accordingly.
parent 557de06d
No related branches found
No related tags found
No related merge requests found
......@@ -118,6 +118,7 @@ sub get_landmark_MarkerFeatures_old{
my ($self,$chr_name) = @_;
my $glob = 1000;
$self->throw( "Method deprecated. " );
my $statement= " SELECT
IF (sgp.raw_ori=1,(f.seq_start+sgp.chr_start-sgp.raw_start-1),
......@@ -188,11 +189,11 @@ sub get_landmark_MarkerFeatures{
$glob = 500000;
}
my $statement= " SELECT start,
end,
strand,
my $statement= " SELECT chr_start,
chr_end,
chr_strand,
name
FROM contig_landmarkMarker
FROM landmarkMarker
WHERE chr_name = '$chr_name'
ORDER BY start
";
......
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