Skip to content
Snippets Groups Projects
Commit 9aa197ea authored by Ian Longden's avatar Ian Longden
Browse files

just do the gene slice project rather than the gene transfer it is safer and quicker

parent e3734666
No related branches found
No related tags found
No related merge requests found
......@@ -1066,12 +1066,14 @@ FSQL
else{
#get the clone name
my $gene= $ga->fetch_by_dbID($gene_id);
my $new_gene = $gene->transform('clone');
# my $new_gene = $gene->transform('clone');
my $new_clone_name = undef;
if(defined($new_gene)){
$new_clone_name = $new_gene->slice->seq_region_name;
}
else{
# if(defined($new_gene)){
# $new_clone_name = $new_gene->slice->seq_region_name;
# }
# else{
# on more than one clone?? try
my $slice = $gene->slice->sub_Slice($gene->start,$gene->end,$gene->strand);
my $clone_projection = $slice->project('clone');
......@@ -1097,7 +1099,7 @@ FSQL
next;
}
}
}
# }
if(defined($new_clone_name)){
$new_clone_name =~ s/[.]\d+//; #remove .number
......
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