Skip to content
Snippets Groups Projects
Commit 5092b51e authored by Magali Ruffier's avatar Magali Ruffier
Browse files

ENSCORESW-2277: accession pattern at start of line

parent d8cfa651
No related branches found
No related tags found
No related merge requests found
......@@ -234,7 +234,7 @@ sub create_xrefs {
# set accession (and synonyms if more than one)
# AC line may have primary accession and possibly several ; separated synonyms
# May also be more than one AC line
my ($acc) = $_ =~ /(AC\s+.+)/s; # will match first AC line and everything else
my ($acc) = $_ =~ /(\nAC\s+.+)/s; # will match first AC line and everything else
my @all_lines = split /\n/, $acc;
......
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