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

ENSCORESW-369: column count was wrong

parent 59951a73
No related branches found
No related tags found
No related merge requests found
......@@ -680,7 +680,7 @@ sub dump_xref {
$version,
'\N',
'COORDINATE_OVERLAP',
'\N' # FIXME (possibly)
'' # FIXME (possibly)
);
}
$fh->close();
......@@ -708,12 +708,13 @@ sub dump_object_xref {
# Assign 'object_xref_id' to this Object Xref.
$object_xref->{'object_xref_id'} = ++$object_xref_id;
$fh->printf( "%d\t%d\t%s\t%d\t%s\n",
$fh->printf( "%d\t%d\t%s\t%d\t%s\t%s\n",
$object_xref->{'object_xref_id'},
$object_xref->{'ensembl_id'},
$object_xref->{'ensembl_object_type'},
$xref->{'xref_id'},
'\N' );
'\N',
'0' );
}
}
$fh->close();
......
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