From 21560f4e7d486f9b4558a23a15235b778bfbc570 Mon Sep 17 00:00:00 2001 From: tjc <tjc@ee4ac58c-ac51-4696-9907-e4b3aa274f04> Date: Tue, 9 Mar 2010 16:08:11 +0000 Subject: [PATCH] add main() as an example of using GFFStreamFeature git-svn-id: svn+ssh://svn.internal.sanger.ac.uk/repos/svn/pathsoft/artemis/trunk@13449 ee4ac58c-ac51-4696-9907-e4b3aa274f04 --- uk/ac/sanger/artemis/io/GFFStreamFeature.java | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/uk/ac/sanger/artemis/io/GFFStreamFeature.java b/uk/ac/sanger/artemis/io/GFFStreamFeature.java index a6fb2d928..d9f2d6571 100644 --- a/uk/ac/sanger/artemis/io/GFFStreamFeature.java +++ b/uk/ac/sanger/artemis/io/GFFStreamFeature.java @@ -1338,4 +1338,36 @@ public class GFFStreamFeature extends SimpleDocumentFeature this.chadoLazyFeature = chadoLazyFeature; } + public static void main(String args[]) + { + Key key = new Key("region"); + try + { + final EntryInformation entry_information = + SimpleEntryInformation.getDefaultEntryInformation (); + GFFDocumentEntry entry = new GFFDocumentEntry(entry_information); + + Location location = new Location("1003..1222"); + QualifierVector qualifiers = new QualifierVector(); + GFFStreamFeature f = new GFFStreamFeature(key, location, qualifiers); + entry.add(f); + + java.io.File aFile = new java.io.File("x"); + java.io.FileWriter writer = new java.io.FileWriter(aFile); + f.writeToStream(writer); + writer.close(); + } + catch (LocationParseException e) + { + e.printStackTrace(); + } + catch (IOException e) + { + e.printStackTrace(); + } + catch (EntryInformationException e) + { + e.printStackTrace(); + } + } } -- GitLab