From 75b0230a6ca301659e5586bef9606c0d0f657fb1 Mon Sep 17 00:00:00 2001 From: khowe Date: Tue, 20 Jan 2015 16:19:14 +0000 Subject: [PATCH] No need to switch Genomic_canonical tags --- scripts/move_schild_to_top_level.pl | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scripts/move_schild_to_top_level.pl b/scripts/move_schild_to_top_level.pl index 7acf99fcb..c122fe51f 100644 --- a/scripts/move_schild_to_top_level.pl +++ b/scripts/move_schild_to_top_level.pl @@ -119,17 +119,6 @@ } } -# Finally, move the Genomic_canonical tags -my $seqs_it = $db->fetch_many(-query => "Find Sequence Genomic_canonical AND Species = \"$full_name\""); -while( my $seq = $seqs_it->next()) { - print $acefh "\nSequence \"$seq\"\n"; - print $acefh "-D Genomic_canonical\n"; -} -foreach my $tl_seq (keys %tl_seqs) { - print $acefh "\nSequence : \"$tl_seq\"\n"; - print $acefh "Genomic_canonical\n"; -} - if ($acefile) { close($acefh) or die "Could not close $acefile after writing\n"; $wormbase->load_to_database($database, $acefile, "move_to_toplevel") unless $noload;