2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
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
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
23 import jalview.api.AlignExportSettingI;
24 import jalview.api.AlignmentViewPanel;
25 import jalview.datamodel.Alignment;
26 import jalview.datamodel.AlignmentAnnotation;
27 import jalview.datamodel.AlignmentI;
28 import jalview.datamodel.AlignmentView;
29 import jalview.util.MessageManager;
32 import java.io.IOException;
33 import java.io.InputStream;
34 import java.util.List;
37 * A low level class for alignment and feature IO with alignment formatting
38 * methods used by both applet and application for generating flat alignment
39 * files. It also holds the lists of magic format names that the applet and
40 * application will allow the user to read or write files with.
45 public class AppletFormatAdapter
47 private AlignmentViewPanel viewpanel;
49 public static String FILE = "File";
51 public static String URL = "URL";
53 public static String PASTE = "Paste";
55 public static String CLASSLOADER = "ClassLoader";
58 * add jalview-derived non-secondary structure annotation from PDB structure
60 boolean annotFromStructure = false;
63 * add secondary structure from PDB data with built-in algorithms
65 boolean localSecondaryStruct = false;
68 * process PDB data with web services
70 boolean serviceSecondaryStruct = false;
72 private AlignFile alignFile = null;
77 * character used to write newlines
79 protected String newline = System.getProperty("line.separator");
81 private AlignExportSettingI exportSettings;
84 * List of valid format strings used in the isValidFormat method
86 public static final String[] READABLE_FORMATS = new String[]
87 { "BLC", "CLUSTAL", "FASTA", "MSF", "PileUp", "PIR", "PFAM", "STH",
88 "PDB", "JnetFile", "RNAML", PhylipFile.FILE_DESC, JSONFile.FILE_DESC, IdentifyFile.GFF3File,
92 * List of readable format file extensions by application in order
93 * corresponding to READABLE_FNAMES
95 public static final String[] READABLE_EXTENSIONS = new String[]
96 { "fa, fasta, mfa, fastq", "aln", "pfam", "msf", "pir", "blc", "amsa",
97 "sto,stk", "xml,rnaml", PhylipFile.FILE_EXT, JSONFile.FILE_EXT,
99 "jar,jvp", HtmlFile.FILE_EXT };
102 * List of readable formats by application in order corresponding to
103 * READABLE_EXTENSIONS
105 public static final String[] READABLE_FNAMES = new String[]
106 { "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "AMSA", "Stockholm",
107 "RNAML", PhylipFile.FILE_DESC, JSONFile.FILE_DESC, IdentifyFile.GFF3File, "Jalview",
108 HtmlFile.FILE_DESC };
111 * List of valid format strings for use by callers of the formatSequences
114 public static final String[] WRITEABLE_FORMATS = new String[]
115 { "BLC", "CLUSTAL", "FASTA", "MSF", "PileUp", "PIR", "PFAM", "AMSA",
116 "STH", PhylipFile.FILE_DESC, JSONFile.FILE_DESC };
119 * List of extensions corresponding to file format types in WRITABLE_FNAMES
120 * that are writable by the application.
122 public static final String[] WRITABLE_EXTENSIONS = new String[]
123 { "fa, fasta, mfa, fastq", "aln", "pfam", "msf", "pir", "blc", "amsa",
124 "sto,stk", PhylipFile.FILE_EXT, JSONFile.FILE_EXT, "jvp" };
127 * List of writable formats by the application. Order must correspond with the
128 * WRITABLE_EXTENSIONS list of formats.
130 public static final String[] WRITABLE_FNAMES = new String[]
131 { "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "AMSA", "STH",
132 PhylipFile.FILE_DESC, JSONFile.FILE_DESC, "Jalview" };
134 public static String INVALID_CHARACTERS = "Contains invalid characters";
136 // TODO: make these messages dynamic
137 public static String SUPPORTED_FORMATS = "Formats currently supported are\n"
138 + prettyPrint(READABLE_FORMATS);
140 public AppletFormatAdapter()
144 public AppletFormatAdapter(AlignmentViewPanel viewpanel)
146 this.viewpanel = viewpanel;
149 public AppletFormatAdapter(AlignmentViewPanel alignPanel,
150 AlignExportSettingI settings)
152 viewpanel = alignPanel;
153 exportSettings = settings;
159 * @return grammatically correct(ish) list consisting of els elements.
161 public static String prettyPrint(String[] els)
163 StringBuffer list = new StringBuffer();
164 for (int i = 0, iSize = els.length - 1; i < iSize; i++)
169 list.append(" and " + els[els.length - 1] + ".");
170 return list.toString();
174 public void setNewlineString(String nl)
179 public String getNewlineString()
185 * check that this format is valid for reading
188 * a format string to be compared with READABLE_FORMATS
189 * @return true if format is readable
191 public static final boolean isValidFormat(String format)
193 return isValidFormat(format, false);
197 * validate format is valid for IO
200 * a format string to be compared with either READABLE_FORMATS or
203 * when true, format is checked for containment in WRITEABLE_FORMATS
204 * @return true if format is valid
206 public static final boolean isValidFormat(String format,
213 boolean valid = false;
214 String[] format_list = (forwriting) ? WRITEABLE_FORMATS
216 for (String element : format_list)
218 if (element.equalsIgnoreCase(format))
228 * Constructs the correct filetype parser for a characterised datasource
235 * File format of data provided by datasource
237 * @return DOCUMENT ME!
239 public AlignmentI readFile(String inFile, String type, String format)
240 throws java.io.IOException
242 // TODO: generalise mapping between format string and io. class instances
243 // using Constructor.invoke reflection
244 this.inFile = inFile;
247 if (format.equals("FASTA"))
249 alignFile = new FastaFile(inFile, type);
251 else if (format.equals("MSF"))
253 alignFile = new MSFfile(inFile, type);
255 else if (format.equals("PileUp"))
257 alignFile = new PileUpfile(inFile, type);
259 else if (format.equals("CLUSTAL"))
261 alignFile = new ClustalFile(inFile, type);
263 else if (format.equals("BLC"))
265 alignFile = new BLCFile(inFile, type);
267 else if (format.equals("PIR"))
269 alignFile = new PIRFile(inFile, type);
271 else if (format.equals("PFAM"))
273 alignFile = new PfamFile(inFile, type);
275 else if (format.equals("JnetFile"))
277 alignFile = new JPredFile(inFile, type);
278 ((JPredFile) alignFile).removeNonSequences();
280 else if (format.equals("PDB"))
282 alignFile = new MCview.PDBfile(annotFromStructure,
283 localSecondaryStruct, serviceSecondaryStruct, inFile, type);
284 // Uncomment to test Jmol data based PDB processing: JAL-1213
285 // afile = new jalview.ext.jmol.PDBFileWithJmol(inFile, type);
287 else if (format.equals("STH"))
289 alignFile = new StockholmFile(inFile, type);
291 else if (format.equals("SimpleBLAST"))
293 alignFile = new SimpleBlastFile(inFile, type);
295 else if (format.equals(PhylipFile.FILE_DESC))
297 alignFile = new PhylipFile(inFile, type);
299 else if (format.equals(JSONFile.FILE_DESC))
301 alignFile = new JSONFile(inFile, type);
303 else if (format.equals(HtmlFile.FILE_DESC))
305 alignFile = new HtmlFile(inFile, type);
307 else if (format.equals("RNAML"))
309 alignFile = new RnamlFile(inFile, type);
311 else if (format.equals(IdentifyFile.GFF3File))
313 alignFile = new Gff3File(inFile, type);
315 return buildAlignmentFrom(alignFile);
316 } catch (Exception e)
319 System.err.println("Failed to read alignment using the '" + format
320 + "' reader.\n" + e);
322 if (e.getMessage() != null
323 && e.getMessage().startsWith(INVALID_CHARACTERS))
325 throw new java.io.IOException(e.getMessage());
328 // Finally test if the user has pasted just the sequence, no id
329 if (type.equalsIgnoreCase("Paste"))
333 // Possible sequence is just residues with no label
334 alignFile = new FastaFile(">UNKNOWN\n" + inFile, "Paste");
335 return buildAlignmentFrom(alignFile);
337 } catch (Exception ex)
339 if (ex.toString().startsWith(INVALID_CHARACTERS))
341 throw new java.io.IOException(e.getMessage());
344 ex.printStackTrace();
347 if (format.equalsIgnoreCase("HTML"))
349 throw new IOException(e.getMessage());
351 // If we get to this stage, the format was not supported
352 throw new java.io.IOException(SUPPORTED_FORMATS);
357 * Constructs the correct filetype parser for an already open datasource
360 * an existing datasource
362 * File format of data that will be provided by datasource
364 * @return DOCUMENT ME!
366 public AlignmentI readFromFile(FileParse source, String format)
367 throws java.io.IOException
369 // TODO: generalise mapping between format string and io. class instances
370 // using Constructor.invoke reflection
371 // This is exactly the same as the readFile method except we substitute
372 // 'inFile, type' with 'source'
373 this.inFile = source.getInFile();
374 String type = source.type;
377 if (format.equals("FASTA"))
379 alignFile = new FastaFile(source);
381 else if (format.equals("MSF"))
383 alignFile = new MSFfile(source);
385 else if (format.equals("PileUp"))
387 alignFile = new PileUpfile(source);
389 else if (format.equals("CLUSTAL"))
391 alignFile = new ClustalFile(source);
393 else if (format.equals("BLC"))
395 alignFile = new BLCFile(source);
397 else if (format.equals("PIR"))
399 alignFile = new PIRFile(source);
401 else if (format.equals("PFAM"))
403 alignFile = new PfamFile(source);
405 else if (format.equals("JnetFile"))
407 alignFile = new JPredFile(source);
408 ((JPredFile) alignFile).removeNonSequences();
410 else if (format.equals("PDB"))
412 alignFile = new MCview.PDBfile(annotFromStructure,
413 localSecondaryStruct, serviceSecondaryStruct, source);
415 else if (format.equals("STH"))
417 alignFile = new StockholmFile(source);
419 else if (format.equals("RNAML"))
421 alignFile = new RnamlFile(source);
423 else if (format.equals("SimpleBLAST"))
425 alignFile = new SimpleBlastFile(source);
427 else if (format.equals(PhylipFile.FILE_DESC))
429 alignFile = new PhylipFile(source);
431 else if (format.equals(IdentifyFile.GFF3File))
433 alignFile = new Gff3File(inFile, type);
435 else if (format.equals(JSONFile.FILE_DESC))
437 alignFile = new JSONFile(source);
439 else if (format.equals(HtmlFile.FILE_DESC))
441 alignFile = new HtmlFile(source);
444 return buildAlignmentFrom(alignFile);
446 } catch (Exception e)
449 System.err.println("Failed to read alignment using the '" + format
450 + "' reader.\n" + e);
452 if (e.getMessage() != null
453 && e.getMessage().startsWith(INVALID_CHARACTERS))
455 throw new java.io.IOException(e.getMessage());
458 // Finally test if the user has pasted just the sequence, no id
459 if (type.equalsIgnoreCase("Paste"))
463 // Possible sequence is just residues with no label
464 alignFile = new FastaFile(">UNKNOWN\n" + inFile, "Paste");
465 return buildAlignmentFrom(alignFile);
467 } catch (Exception ex)
469 if (ex.toString().startsWith(INVALID_CHARACTERS))
471 throw new java.io.IOException(e.getMessage());
474 ex.printStackTrace();
478 // If we get to this stage, the format was not supported
479 throw new java.io.IOException(SUPPORTED_FORMATS);
485 * boilerplate method to handle data from an AlignFile and construct a new
486 * alignment or import to an existing alignment
489 * @return AlignmentI instance ready to pass to a UI constructor
491 private AlignmentI buildAlignmentFrom(AlignFile alignFile2)
493 // Standard boilerplate for creating alignment from parser
494 // alignFile.configureForView(viewpanel);
496 AlignmentI al = new Alignment(alignFile.getSeqsAsArray());
498 alignFile.addAnnotations(al);
500 alignFile.addGroups(al);
506 * create an alignment flatfile from a Jalview alignment view
510 * @param selectedOnly
511 * @return flatfile in a string
513 public String formatSequences(String format, boolean jvsuffix,
514 AlignmentViewPanel ap, boolean selectedOnly)
517 AlignmentView selvew = ap.getAlignViewport().getAlignmentView(
518 selectedOnly, false);
519 AlignmentI aselview = selvew.getVisibleAlignment(ap.getAlignViewport()
521 List<AlignmentAnnotation> ala = (ap.getAlignViewport()
522 .getVisibleAlignmentAnnotation(selectedOnly));
525 for (AlignmentAnnotation aa : ala)
527 aselview.addAnnotation(aa);
531 return formatSequences(format, aselview, jvsuffix);
535 * Construct an output class for an alignment in a particular filetype TODO:
536 * allow caller to detect errors and warnings encountered when generating
540 * string name of alignment format
542 * the alignment to be written out
544 * passed to AlnFile class controls whether /START-END is added to
547 * @return alignment flat file contents
549 public String formatSequences(String format, AlignmentI alignment,
554 AlignFile afile = null;
555 if (format.equalsIgnoreCase("FASTA"))
557 afile = new FastaFile();
559 else if (format.equalsIgnoreCase("MSF"))
561 afile = new MSFfile();
563 else if (format.equalsIgnoreCase("PileUp"))
565 afile = new PileUpfile();
567 else if (format.equalsIgnoreCase("CLUSTAL"))
569 afile = new ClustalFile();
571 else if (format.equalsIgnoreCase("BLC"))
573 afile = new BLCFile();
575 else if (format.equalsIgnoreCase("PIR"))
577 afile = new PIRFile();
579 else if (format.equalsIgnoreCase("PFAM"))
581 afile = new PfamFile();
583 else if (format.equalsIgnoreCase("STH"))
585 afile = new StockholmFile(alignment);
587 else if (format.equalsIgnoreCase("AMSA"))
589 afile = new AMSAFile(alignment);
591 else if (format.equalsIgnoreCase(PhylipFile.FILE_DESC))
593 afile = new PhylipFile();
595 else if (format.equalsIgnoreCase(JSONFile.FILE_DESC))
597 afile = new JSONFile();
599 else if (format.equalsIgnoreCase("RNAML"))
601 afile = new RnamlFile();
606 throw new Exception(MessageManager.getString("error.implementation_error_unknown_file_format_string"));
609 afile.setNewlineString(newline);
610 afile.addJVSuffix(jvsuffix);
611 afile.setExportSettings(exportSettings);
612 afile.configureForView(viewpanel);
614 // check whether we were given a specific alignment to export, rather than
615 // the one in the viewpanel
616 if (viewpanel == null || viewpanel.getAlignment() == null
617 || viewpanel.getAlignment() != alignment)
619 afile.setSeqs(alignment.getSequencesArray());
623 afile.setSeqs(viewpanel.getAlignment().getSequencesArray());
626 String afileresp = afile.print();
627 if (afile.hasWarningMessage())
629 System.err.println("Warning raised when writing as " + format
630 + " : " + afile.getWarningMessage());
633 } catch (Exception e)
635 System.err.println("Failed to write alignment as a '" + format
643 public static String checkProtocol(String file)
645 String protocol = FILE;
646 String ft = file.toLowerCase().trim();
647 if (ft.indexOf("http:") == 0 || ft.indexOf("https:") == 0
648 || ft.indexOf("file:") == 0)
655 public static void main(String[] args)
658 while (i < args.length)
660 File f = new File(args[i]);
665 System.out.println("Reading file: " + f);
666 AppletFormatAdapter afa = new AppletFormatAdapter();
667 Runtime r = Runtime.getRuntime();
669 long memf = -r.totalMemory() + r.freeMemory();
670 long t1 = -System.currentTimeMillis();
671 AlignmentI al = afa.readFile(args[i], FILE,
672 new IdentifyFile().Identify(args[i], FILE));
673 t1 += System.currentTimeMillis();
675 memf += r.totalMemory() - r.freeMemory();
678 System.out.println("Alignment contains " + al.getHeight()
679 + " sequences and " + al.getWidth() + " columns.");
682 System.out.println(new AppletFormatAdapter().formatSequences(
684 } catch (Exception e)
687 .println("Couln't format the alignment for output as a FASTA file.");
688 e.printStackTrace(System.err);
693 System.out.println("Couldn't read alignment");
695 System.out.println("Read took " + (t1 / 1000.0) + " seconds.");
697 .println("Difference between free memory now and before is "
698 + (memf / (1024.0 * 1024.0) * 1.0) + " MB");
699 } catch (Exception e)
701 System.err.println("Exception when dealing with " + i
702 + "'th argument: " + args[i] + "\n" + e);
707 System.err.println("Ignoring argument '" + args[i] + "' (" + i
708 + "'th)- not a readable file.");
715 * try to discover how to access the given file as a valid datasource that
716 * will be identified as the given type.
720 * @return protocol that yields the data parsable as the given type
722 public static String resolveProtocol(String file, String format)
724 return resolveProtocol(file, format, false);
727 public static String resolveProtocol(String file, String format,
730 // TODO: test thoroughly!
731 String protocol = null;
734 System.out.println("resolving datasource started with:\n>>file\n"
735 + file + ">>endfile");
738 // This might throw a security exception in certain browsers
739 // Netscape Communicator for instance.
743 InputStream is = System.getSecurityManager().getClass()
744 .getResourceAsStream("/" + file);
752 System.err.println("Resource '" + file + "' was "
753 + (rtn ? "" : "not") + " located by classloader.");
758 protocol = AppletFormatAdapter.CLASSLOADER;
761 } catch (Exception ex)
764 .println("Exception checking resources: " + file + " " + ex);
767 if (file.indexOf("://") > -1)
769 protocol = AppletFormatAdapter.URL;
773 // skipping codebase prepend check.
774 protocol = AppletFormatAdapter.FILE;
781 System.out.println("Trying to get contents of resource as "
784 fp = new FileParse(file, protocol);
793 System.out.println("Successful.");
796 } catch (Exception e)
800 System.err.println("Exception when accessing content: " + e);
808 System.out.println("Accessing as paste.");
810 protocol = AppletFormatAdapter.PASTE;
814 fp = new FileParse(file, protocol);
819 } catch (Exception e)
821 System.err.println("Failed to access content as paste!");
830 if (format == null || format.length() == 0)
838 String idformat = new jalview.io.IdentifyFile().Identify(file,
840 if (idformat == null)
844 System.out.println("Format not identified. Inaccessible file.");
850 System.out.println("Format identified as " + idformat
851 + "and expected as " + format);
853 if (idformat.equals(format))
857 System.out.println("Protocol identified as " + protocol);
866 .println("File deemed not accessible via " + protocol);
871 } catch (Exception e)
875 System.err.println("File deemed not accessible via " + protocol);
885 public AlignFile getAlignFile()
890 public void setAlignFile(AlignFile alignFile)
892 this.alignFile = alignFile;