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

ignore mappings to predicted RefSeqs

parent b2cb619b
No related branches found
No related tags found
No related merge requests found
......@@ -133,6 +133,8 @@ sub run {
while ( $_ = $refseq_io->getline() ) {
chomp;
my ($zfin, $so, $label, $acc) = split (/\s+/,$_);
# Ignore mappings to predicted RefSeq
if ($acc =~ /^XP_/ || $acc =~ /^XM_/ || $acc =~ /^XR_/) { next; }
if(defined($refseq{$acc})){
foreach my $xref_id (@{$refseq{$acc}}){
$self->add_dependent_xref({ master_xref_id => $xref_id,
......
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