diff --git a/misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm b/misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm index 7e1d7aa61049370211150088276d879409949a6d..b7c2c9336a03844c30f217312dacfe8bf4b7dcf9 100644 --- a/misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm +++ b/misc-scripts/xref_mapping/XrefParser/RefSeqGPFFParser.pm @@ -223,7 +223,7 @@ sub create_xrefs { $description =~ s/\s+/ /g; $description = substr($description, 0, 255) if (length($description) > 255); - my ($seq) = $_ =~ /ORIGIN\s+(.+)/s; # /s allows . to match newline + my ($seq) = $_ =~ /^\s*ORIGIN\s+(.+)/ms; # /s allows . to match newline my @seq_lines = split /\n/, $seq; my $parsed_seq = ""; foreach my $x (@seq_lines) {