Skip to content
Snippets Groups Projects
Commit 011c6b50 authored by Rhoda Kinsella's avatar Rhoda Kinsella
Browse files

Changed regular expression for Corf gene names. Now using \w

parent 11a550ad
No related branches found
No related tags found
No related merge requests found
......@@ -651,7 +651,7 @@ sub check_overwrite_display_xref {
return 1 if ($to_dbname eq "Clone_based_ensembl_gene" or $to_dbname eq "Clone_based_vega_gene");
if ($ref_dbEntry->display_id =~ /C(\d+)orf(\d+)/){
if ($ref_dbEntry->display_id =~ /C(\w+)orf(\w+)/){
$ref_dbEntry->display_id("C".$to_seq_region_name."H".$1."orf".$2);
return 1;
}
......
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