X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FSimpleBlastFile.java;h=1b7254593c1f4057be96b9d0ae3a1c09565f7784;hb=c1f777a6a4a74ee1573e5f3f883e0de902818ae7;hp=4fa0972ddfa6233b3e2dc1685275a45f2cbe1549;hpb=838e4f91d4a53dd315640dbc9ff6ef7a815ee576;p=jalview.git diff --git a/src/jalview/io/SimpleBlastFile.java b/src/jalview/io/SimpleBlastFile.java index 4fa0972..1b72545 100644 --- a/src/jalview/io/SimpleBlastFile.java +++ b/src/jalview/io/SimpleBlastFile.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b1) - * Copyright (C) 2015 The Jalview Authors + * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$) + * Copyright (C) $$Year-Rel$$ The Jalview Authors * * This file is part of Jalview. * @@ -51,9 +51,10 @@ public class SimpleBlastFile extends AlignFile { } - public SimpleBlastFile(String inFile, String type) throws IOException + public SimpleBlastFile(String inFile, DataSourceType sourceType) + throws IOException { - super(inFile, type); + super(inFile, sourceType); } public SimpleBlastFile(FileParse source) throws IOException @@ -61,6 +62,7 @@ public class SimpleBlastFile extends AlignFile super(source); } + @Override public void initData() { super.initData(); @@ -69,6 +71,7 @@ public class SimpleBlastFile extends AlignFile seqids = new Vector(); } + @Override public void parse() throws IOException { String line; @@ -286,13 +289,9 @@ public class SimpleBlastFile extends AlignFile } } - public String print(SequenceI[] s) + @Override + public String print(SequenceI[] sqs, boolean jvsuffix) { return new String("Not Implemented."); } - - public String print() - { - return print(getSeqsAsArray()); - } }