Skip to content
Snippets Groups Projects
Commit 2e28ccbe authored by tjc's avatar tjc
Browse files

add header

git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@10015 ee4ac58c-ac51-4696-9907-e4b3aa274f04
parent 70b1cfe7
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/EmblDocumentEntry.java,v 1.1 2004-06-09 09:49:09 tjc Exp $ * $Header: //tmp/pathsoft/artemis/uk/ac/sanger/artemis/io/EmblDocumentEntry.java,v 1.2 2009-03-06 12:12:24 tjc Exp $
*/ */
package uk.ac.sanger.artemis.io; package uk.ac.sanger.artemis.io;
...@@ -32,7 +32,7 @@ import java.io.IOException; ...@@ -32,7 +32,7 @@ import java.io.IOException;
* A DocumentEntry that can read an EMBL entry from a Document. * A DocumentEntry that can read an EMBL entry from a Document.
* *
* @author Kim Rutherford * @author Kim Rutherford
* @version $Id: EmblDocumentEntry.java,v 1.1 2004-06-09 09:49:09 tjc Exp $ * @version $Id: EmblDocumentEntry.java,v 1.2 2009-03-06 12:12:24 tjc Exp $
**/ **/
public class EmblDocumentEntry extends PublicDBDocumentEntry public class EmblDocumentEntry extends PublicDBDocumentEntry
{ {
...@@ -81,6 +81,15 @@ public class EmblDocumentEntry extends PublicDBDocumentEntry ...@@ -81,6 +81,15 @@ public class EmblDocumentEntry extends PublicDBDocumentEntry
throws EntryInformationException throws EntryInformationException
{ {
super(entry_information, new_entry, force); super(entry_information, new_entry, force);
try
{
if(getHeaderText() == null &&
new_entry.getHeaderText() != null &&
new_entry.getHeaderText().startsWith("ID"))
setHeaderText(new_entry.getHeaderText());
}
catch (Exception e){}
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment