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

set label to be label and accession

parent 559c71c3
No related branches found
No related tags found
No related merge requests found
......@@ -71,15 +71,15 @@ sub run {
chomp;
my ($master, $label, $acc) = split (/\s+/,$_);
if(defined($embl{$master})){
XrefParser::BaseParser->add_to_xrefs($embl{$master},$acc,'',$label,'','',$source_id,$species_id);
XrefParser::BaseParser->add_to_xrefs($embl{$master},$label,'',$label,'','',$source_id,$species_id);
$ecount++;
}
elsif(defined($ddbj{$master})){
XrefParser::BaseParser->add_to_xrefs($ddbj{$master},$acc,'',$label,'','',$source_id,$species_id);
XrefParser::BaseParser->add_to_xrefs($ddbj{$master},$label,'',$label,'','',$source_id,$species_id);
$dcount++;
}
elsif(defined($genbank{$master})){
XrefParser::BaseParser->add_to_xrefs($genbank{$master},$acc,'',$label,'','',$source_id,$species_id);
XrefParser::BaseParser->add_to_xrefs($genbank{$master},$label,'',$label,'','',$source_id,$species_id);
$gcount++;
}
else{
......
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