X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fio%2FPIRFile.java;h=3f0fea0034f6b38c241a38ac4e8519b295d4a4ce;hb=66ae8046375bbef690753727308a48f6bc71b162;hp=1a70a36a146280ff74e86711aa17aa5bc6f5f406;hpb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;p=jalview.git diff --git a/src/jalview/io/PIRFile.java b/src/jalview/io/PIRFile.java index 1a70a36..3f0fea0 100755 --- a/src/jalview/io/PIRFile.java +++ b/src/jalview/io/PIRFile.java @@ -1,6 +1,6 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) - * 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. * @@ -20,25 +20,25 @@ */ package jalview.io; +import jalview.bin.Cache; import jalview.datamodel.Sequence; import jalview.datamodel.SequenceI; +import jalview.util.Comparison; import java.io.IOException; -import java.util.Vector; public class PIRFile extends AlignFile { - public static boolean useModellerOutput = false; - - Vector words = new Vector(); // Stores the words in a line after splitting + // Vector words = new Vector(); // Stores the words in a line after splitting public PIRFile() { } - public PIRFile(String inFile, String type) throws IOException + public PIRFile(String inFile, DataSourceType sourceType) + throws IOException { - super(inFile, type); + super(inFile, sourceType); } public PIRFile(FileParse source) throws IOException @@ -46,6 +46,7 @@ public class PIRFile extends AlignFile super(source); } + @Override public void parse() throws IOException { StringBuffer sequence; @@ -100,19 +101,15 @@ public class PIRFile extends AlignFile } } - public String print() - { - return print(getSeqsAsArray()); - } - - public String print(SequenceI[] s) + @Override + public String print(SequenceI[] s, boolean jvsuffix) { - boolean is_NA = jalview.util.Comparison.isNucleotide(s); + boolean is_NA = Comparison.isNucleotide(s); int len = 72; StringBuffer out = new StringBuffer(); int i = 0; ModellerDescription md; - + boolean useModellerOutput = Cache.getDefault("PIR_MODELLER", false); while ((i < s.length) && (s[i] != null)) { String seq = s[i].getSequenceAsString(); @@ -148,7 +145,6 @@ public class PIRFile extends AlignFile } else { - if (useModellerOutput) { out.append(">P1;" + s[i].getName()); @@ -159,7 +155,7 @@ public class PIRFile extends AlignFile } else { - out.append(">P1;" + printId(s[i])); + out.append(">P1;" + printId(s[i], jvsuffix)); out.append(newline); if (s[i].getDescription() != null) { @@ -174,7 +170,8 @@ public class PIRFile extends AlignFile } } } - int nochunks = (seq.length() / len) + 1; + int nochunks = (seq.length() / len) + + (seq.length() % len > 0 ? 1 : 0); for (int j = 0; j < nochunks; j++) {