Jalview 2.6 source licence
[jalview.git] / src / jalview / io / PileUpfile.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer (Version 2.6)
3  * Copyright (C) 2010 J Procter, AM Waterhouse, G Barton, M Clamp, S Searle
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
10  * 
11  * Jalview is distributed in the hope that it will be useful, but 
12  * WITHOUT ANY WARRANTY; without even the implied warranty 
13  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14  * PURPOSE.  See the GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
17  */
18 package jalview.io;
19
20 /**
21  * <p>
22  * Title:
23  * </p>
24  * PileUpfile
25  * <p>
26  * Description:
27  * </p>
28  * 
29  * Read and write PileUp style MSF Files. This used to be the MSFFile class, and
30  * was written according to the EBI's idea of a subset of the MSF alignment
31  * format. But, that was updated to reflect current GCG style IO fashion, as
32  * found in Emboss (thanks David Martin!)
33  * 
34  */
35 import java.io.*;
36
37 import jalview.datamodel.*;
38 import jalview.util.*;
39
40 public class PileUpfile extends MSFfile
41 {
42
43   /**
44    * Creates a new MSFfile object.
45    */
46   public PileUpfile()
47   {
48   }
49
50   /**
51    * Creates a new MSFfile object.
52    * 
53    * @param inFile
54    *          DOCUMENT ME!
55    * @param type
56    *          DOCUMENT ME!
57    * 
58    * @throws IOException
59    *           DOCUMENT ME!
60    */
61   public PileUpfile(String inFile, String type) throws IOException
62   {
63     super(inFile, type);
64   }
65
66   public PileUpfile(FileParse source) throws IOException
67   {
68     super(source);
69   }
70
71   /**
72    * DOCUMENT ME!
73    * 
74    * @return DOCUMENT ME!
75    */
76   public String print()
77   {
78     return print(getSeqsAsArray());
79   }
80
81   public String print(SequenceI[] s)
82   {
83     StringBuffer out = new StringBuffer("PileUp\n\n");
84
85     int max = 0;
86     int maxid = 0;
87
88     int i = 0;
89     int bigChecksum = 0;
90     int[] checksums = new int[s.length];
91     while (i < s.length)
92     {
93       checksums[i] = checkSum(s[i].getSequenceAsString());
94       bigChecksum += checksums[i];
95       i++;
96     }
97
98     out.append("   MSF: " + s[0].getSequence().length
99             + "   Type: P    Check:  " + bigChecksum % 10000
100             + "   ..\n\n\n");
101
102     i = 0;
103     while ((i < s.length) && (s[i] != null))
104     {
105       String seq = s[i].getSequenceAsString();
106       out.append(" Name: " + printId(s[i]) + " oo  Len:  " + seq.length()
107               + "  Check:  " + checksums[i] + "  Weight:  1.00\n");
108
109       if (seq.length() > max)
110       {
111         max = seq.length();
112       }
113
114       if (s[i].getName().length() > maxid)
115       {
116         maxid = s[i].getName().length();
117       }
118
119       i++;
120     }
121
122     if (maxid < 10)
123     {
124       maxid = 10;
125     }
126
127     maxid++;
128     out.append("\n\n//\n\n");
129
130     int len = 50;
131
132     int nochunks = (max / len) + 1;
133
134     if ((max % len) == 0)
135     {
136       nochunks--;
137     }
138
139     for (i = 0; i < nochunks; i++)
140     {
141       int j = 0;
142
143       while ((j < s.length) && (s[j] != null))
144       {
145         String name = printId(s[j]);
146
147         out.append(new Format("%-" + maxid + "s").form(name + " "));
148
149         for (int k = 0; k < 5; k++)
150         {
151           int start = (i * 50) + (k * 10);
152           int end = start + 10;
153
154           if ((end < s[j].getSequence().length)
155                   && (start < s[j].getSequence().length))
156           {
157             out.append(s[j].getSequence(start, end));
158
159             if (k < 4)
160             {
161               out.append(" ");
162             }
163             else
164             {
165               out.append("\n");
166             }
167           }
168           else
169           {
170             if (start < s[j].getSequence().length)
171             {
172               out.append(s[j].getSequenceAsString().substring(start));
173               out.append("\n");
174             }
175             else
176             {
177               if (k == 0)
178               {
179                 out.append("\n");
180               }
181             }
182           }
183         }
184
185         j++;
186       }
187
188       out.append("\n");
189     }
190
191     return out.toString();
192   }
193 }