JAL-629 Added linkedId to ArgValuesMap for reference. Updated Arg descriptions. Made...
[jalview.git] / src / jalview / bin / Commands.java
1 package jalview.bin;
2
3 import java.io.File;
4 import java.io.IOException;
5 import java.net.URISyntaxException;
6 import java.util.ArrayList;
7 import java.util.Arrays;
8 import java.util.Collections;
9 import java.util.EnumSet;
10 import java.util.HashMap;
11 import java.util.Iterator;
12 import java.util.List;
13 import java.util.Locale;
14 import java.util.Map;
15
16 import jalview.analysis.AlignmentUtils;
17 import jalview.bin.argparser.Arg;
18 import jalview.bin.argparser.ArgParser;
19 import jalview.bin.argparser.ArgParser.Position;
20 import jalview.bin.argparser.ArgValue;
21 import jalview.bin.argparser.ArgValues;
22 import jalview.bin.argparser.ArgValuesMap;
23 import jalview.bin.argparser.SubVals;
24 import jalview.datamodel.AlignmentI;
25 import jalview.datamodel.SequenceI;
26 import jalview.datamodel.annotations.AlphaFoldAnnotationRowBuilder;
27 import jalview.gui.AlignFrame;
28 import jalview.gui.AlignmentPanel;
29 import jalview.gui.Desktop;
30 import jalview.gui.Preferences;
31 import jalview.gui.StructureChooser;
32 import jalview.gui.StructureViewer;
33 import jalview.gui.StructureViewer.ViewerType;
34 import jalview.io.AppletFormatAdapter;
35 import jalview.io.BackupFiles;
36 import jalview.io.BioJsHTMLOutput;
37 import jalview.io.DataSourceType;
38 import jalview.io.FileFormat;
39 import jalview.io.FileFormatException;
40 import jalview.io.FileFormatI;
41 import jalview.io.FileFormats;
42 import jalview.io.FileLoader;
43 import jalview.io.HtmlSvgOutput;
44 import jalview.io.IdentifyFile;
45 import jalview.io.NewickFile;
46 import jalview.structure.StructureImportSettings.TFType;
47 import jalview.structure.StructureSelectionManager;
48 import jalview.util.HttpUtils;
49 import jalview.util.MessageManager;
50 import jalview.util.Platform;
51
52 public class Commands
53 {
54   Desktop desktop;
55
56   private boolean headless;
57
58   private ArgParser argParser;
59
60   private Map<String, AlignFrame> afMap;
61
62   private boolean commandArgsProvided = false;
63
64   private boolean argsWereParsed = false;
65
66   public Commands(ArgParser argparser, boolean headless)
67   {
68     this(Desktop.instance, argparser, headless);
69   }
70
71   public Commands(Desktop d, ArgParser argparser, boolean h)
72   {
73     argParser = argparser;
74     headless = h;
75     desktop = d;
76     afMap = new HashMap<String, AlignFrame>();
77     if (argparser != null)
78     {
79       processArgs(argparser, headless);
80     }
81   }
82
83   private boolean processArgs(ArgParser argparser, boolean h)
84   {
85     argParser = argparser;
86     headless = h;
87     boolean theseArgsWereParsed = false;
88
89     if (argParser != null && argParser.getLinkedIds() != null)
90     {
91       for (String id : argParser.getLinkedIds())
92       {
93         ArgValuesMap avm = argParser.getLinkedArgs(id);
94         theseArgsWereParsed = true;
95         theseArgsWereParsed &= processLinked(id);
96         processGroovyScript(id);
97         boolean processLinkedOkay = theseArgsWereParsed;
98         theseArgsWereParsed &= processImages(id);
99         if (processLinkedOkay)
100           theseArgsWereParsed &= processOutput(id);
101
102         // close ap
103         if (avm.getBoolean(Arg.CLOSE))
104         {
105           AlignFrame af = afMap.get(id);
106           if (af != null)
107           {
108             af.closeMenuItem_actionPerformed(true);
109           }
110         }
111
112       }
113
114     }
115     if (argParser.getBoolean(Arg.QUIT))
116     {
117       Jalview.getInstance().quit();
118       return true;
119     }
120     // carry on with jalview.bin.Jalview
121     argsWereParsed = theseArgsWereParsed;
122     return argsWereParsed;
123   }
124
125   public boolean commandArgsProvided()
126   {
127     return commandArgsProvided;
128   }
129
130   public boolean argsWereParsed()
131   {
132     return argsWereParsed;
133   }
134
135   protected boolean processUnlinked(String id)
136   {
137     return processLinked(id);
138   }
139
140   protected boolean processLinked(String id)
141   {
142     boolean theseArgsWereParsed = false;
143     ArgValuesMap avm = argParser.getLinkedArgs(id);
144     if (avm == null)
145       return true;
146
147     /*
148      * // script to execute after all loading is completed one way or another String
149      * groovyscript = m.get(Arg.GROOVY) == null ? null :
150      * m.get(Arg.GROOVY).getValue(); String file = m.get(Arg.OPEN) == null ? null :
151      * m.get(Arg.OPEN).getValue(); String data = null; FileFormatI format = null;
152      * DataSourceType protocol = null;
153      */
154     if (avm.containsArg(Arg.APPEND) || avm.containsArg(Arg.OPEN))
155     {
156       commandArgsProvided = true;
157       long progress = -1;
158
159       boolean first = true;
160       boolean progressBarSet = false;
161       AlignFrame af;
162       // Combine the APPEND and OPEN files into one list, along with whether it
163       // was APPEND or OPEN
164       List<ArgValue> openAvList = new ArrayList<>();
165       openAvList.addAll(avm.getArgValueList(Arg.OPEN));
166       openAvList.addAll(avm.getArgValueList(Arg.APPEND));
167       // sort avlist based on av.getArgIndex()
168       Collections.sort(openAvList);
169       for (ArgValue av : openAvList)
170       {
171         Arg a = av.getArg();
172         SubVals sv = av.getSubVals();
173         String openFile = av.getValue();
174         if (openFile == null)
175           continue;
176
177         theseArgsWereParsed = true;
178         if (first)
179         {
180           first = false;
181           if (!headless && desktop != null)
182           {
183             desktop.setProgressBar(
184                     MessageManager.getString(
185                             "status.processing_commandline_args"),
186                     progress = System.currentTimeMillis());
187             progressBarSet = true;
188           }
189         }
190
191         if (!Platform.isJS())
192         /**
193          * ignore in JavaScript -- can't just file existence - could load it?
194          * 
195          * @j2sIgnore
196          */
197         {
198           if (!HttpUtils.startsWithHttpOrHttps(openFile))
199           {
200             if (!(new File(openFile)).exists())
201             {
202               Console.warn("Can't find file '" + openFile + "'");
203             }
204           }
205         }
206
207         DataSourceType protocol = AppletFormatAdapter
208                 .checkProtocol(openFile);
209
210         FileFormatI format = null;
211         try
212         {
213           format = new IdentifyFile().identify(openFile, protocol);
214         } catch (FileFormatException e1)
215         {
216           Console.error("Unknown file format for '" + openFile + "'");
217         }
218
219         af = afMap.get(id);
220         // When to open a new AlignFrame
221         if (af == null || "true".equals(av.getSubVal("new"))
222                 || a == Arg.OPEN || format == FileFormat.Jalview)
223         {
224           if (a == Arg.OPEN)
225           {
226             Jalview.testoutput(argParser, Arg.OPEN, "examples/uniref50.fa",
227                     openFile);
228           }
229
230           Console.debug(
231                   "Opening '" + openFile + "' in new alignment frame");
232           FileLoader fileLoader = new FileLoader(!headless);
233
234           af = fileLoader.LoadFileWaitTillLoaded(openFile, protocol,
235                   format);
236
237           // wrap alignment?
238           boolean wrap = ArgParser.getFromSubValArgOrPref(avm, Arg.WRAP, sv,
239                   null, "WRAP_ALIGNMENT", false);
240           af.getCurrentView().setWrapAlignment(wrap);
241
242           // colour alignment?
243           String colour = ArgParser.getFromSubValArgOrPref(avm, av,
244                   Arg.COLOUR, sv, null, "DEFAULT_COLOUR_PROT", "");
245           if ("" != colour)
246           {
247             af.changeColour_actionPerformed(colour);
248             Jalview.testoutput(argParser, Arg.COLOUR, "zappo", colour);
249           }
250
251           // Change alignment frame title
252           String title = ArgParser.getFromSubValArgOrPref(avm, av,
253                   Arg.TITLE, sv, null, null, null);
254           if (title != null)
255           {
256             af.setTitle(title);
257             Jalview.testoutput(argParser, Arg.TITLE, "test title", title);
258           }
259
260           // Add features
261           String featuresfile = ArgParser.getValueFromSubValOrArg(avm, av,
262                   Arg.FEATURES, sv);
263           if (featuresfile != null)
264           {
265             af.parseFeaturesFile(featuresfile,
266                     AppletFormatAdapter.checkProtocol(featuresfile));
267             Jalview.testoutput(argParser, Arg.FEATURES,
268                     "examples/testdata/plantfdx.features", featuresfile);
269           }
270
271           // Add annotations from file
272           String annotationsfile = ArgParser.getValueFromSubValOrArg(avm,
273                   av, Arg.ANNOTATIONS, sv);
274           if (annotationsfile != null)
275           {
276             af.loadJalviewDataFile(annotationsfile, null, null, null);
277             Jalview.testoutput(argParser, Arg.ANNOTATIONS,
278                     "examples/testdata/plantfdx.annotations",
279                     annotationsfile);
280           }
281
282           // Set or clear the sortbytree flag
283           boolean sortbytree = ArgParser.getBoolFromSubValOrArg(avm,
284                   Arg.SORTBYTREE, sv);
285           if (sortbytree)
286           {
287             af.getViewport().setSortByTree(true);
288             Jalview.testoutput(argParser, Arg.SORTBYTREE);
289           }
290
291           // Load tree from file
292           String treefile = ArgParser.getValueFromSubValOrArg(avm, av,
293                   Arg.TREE, sv);
294           if (treefile != null)
295           {
296             try
297             {
298               NewickFile nf = new NewickFile(treefile,
299                       AppletFormatAdapter.checkProtocol(treefile));
300               af.getViewport().setCurrentTree(
301                       af.showNewickTree(nf, treefile).getTree());
302               Jalview.testoutput(argParser, Arg.TREE,
303                       "examples/testdata/uniref50_test_tree", treefile);
304             } catch (IOException e)
305             {
306               Console.warn("Couldn't add tree " + treefile, e);
307             }
308           }
309
310           // Show secondary structure annotations?
311           boolean showSSAnnotations = ArgParser.getFromSubValArgOrPref(avm,
312                   Arg.SHOWSSANNOTATIONS, av.getSubVals(), null,
313                   "STRUCT_FROM_PDB", true);
314           af.setAnnotationsVisibility(showSSAnnotations, true, false);
315
316           // Show sequence annotations?
317           boolean showAnnotations = ArgParser.getFromSubValArgOrPref(avm,
318                   Arg.SHOWANNOTATIONS, av.getSubVals(), null,
319                   "SHOW_ANNOTATIONS", true);
320           af.setAnnotationsVisibility(showAnnotations, false, true);
321
322           // show temperature factor annotations?
323           if (avm.getBoolean(Arg.NOTEMPFAC))
324           {
325             // do this better (annotation types?)
326             List<String> hideThese = new ArrayList<>();
327             hideThese.add("Temperature Factor");
328             hideThese.add(AlphaFoldAnnotationRowBuilder.LABEL);
329             AlignmentUtils.showOrHideSequenceAnnotations(
330                     af.getCurrentView().getAlignment(), hideThese, null,
331                     false, false);
332           }
333
334           // store the AlignFrame for this id
335           afMap.put(id, af);
336
337           // is it its own structure file?
338           if (format.isStructureFile())
339           {
340             StructureSelectionManager ssm = StructureSelectionManager
341                     .getStructureSelectionManager(Desktop.instance);
342             SequenceI seq = af.alignPanel.getAlignment().getSequenceAt(0);
343             ssm.computeMapping(false, new SequenceI[] { seq }, null,
344                     openFile, DataSourceType.FILE, null, null, null, false);
345           }
346         }
347         else
348         {
349           Console.debug(
350                   "Opening '" + openFile + "' in existing alignment frame");
351           DataSourceType dst = HttpUtils.startsWithHttpOrHttps(openFile)
352                   ? DataSourceType.URL
353                   : DataSourceType.FILE;
354           FileLoader fileLoader = new FileLoader(!headless);
355           fileLoader.LoadFile(af.getCurrentView(), openFile, dst, null,
356                   false);
357         }
358
359         Console.debug("Command " + Arg.APPEND + " executed successfully!");
360
361       }
362       if (first) // first=true means nothing opened
363       {
364         if (headless)
365         {
366           Jalview.exit("Could not open any files in headless mode", 1);
367         }
368         else
369         {
370           Console.warn("No more files to open");
371         }
372       }
373       if (progressBarSet && desktop != null)
374         desktop.setProgressBar(null, progress);
375
376     }
377
378     // open the structure (from same PDB file or given PDBfile)
379     if (!avm.getBoolean(Arg.NOSTRUCTURE))
380     {
381       AlignFrame af = afMap.get(id);
382       if (avm.containsArg(Arg.STRUCTURE))
383       {
384         commandArgsProvided = true;
385         for (ArgValue av : avm.getArgValueList(Arg.STRUCTURE))
386         {
387           String val = av.getValue();
388           SubVals subVals = av.getSubVals();
389           SequenceI seq = getSpecifiedSequence(af, avm, av);
390           if (seq == null)
391           {
392             // Could not find sequence from subId, let's assume the first
393             // sequence in the alignframe
394             AlignmentI al = af.getCurrentView().getAlignment();
395             seq = al.getSequenceAt(0);
396           }
397
398           if (seq == null)
399           {
400             Console.warn("Could not find sequence for argument "
401                     + Arg.STRUCTURE.argString() + "=" + val);
402             // you probably want to continue here, not break
403             // break;
404             continue;
405           }
406           File structureFile = null;
407           if (subVals.getContent() != null
408                   && subVals.getContent().length() != 0)
409           {
410             structureFile = new File(subVals.getContent());
411             Console.debug("Using structure file (from argument) '"
412                     + structureFile.getAbsolutePath() + "'");
413           }
414           // TRY THIS
415           /*
416            * PDBEntry fileEntry = new AssociatePdbFileWithSeq()
417            * .associatePdbWithSeq(selectedPdbFileName, DataSourceType.FILE,
418            * selectedSequence, true, Desktop.instance);
419            * 
420            * sViewer = launchStructureViewer(ssm, new PDBEntry[] { fileEntry }, ap, new
421            * SequenceI[] { selectedSequence });
422            * 
423            */
424           /* THIS DOESN'T WORK */
425           else if (seq.getAllPDBEntries() != null
426                   && seq.getAllPDBEntries().size() > 0)
427           {
428             structureFile = new File(
429                     seq.getAllPDBEntries().elementAt(0).getFile());
430             Console.debug("Using structure file (from sequence) '"
431                     + structureFile.getAbsolutePath() + "'");
432           }
433
434           if (structureFile == null)
435           {
436             Console.warn("Not provided structure file with '" + val + "'");
437             continue;
438           }
439
440           if (!structureFile.exists())
441           {
442             Console.warn("Structure file '"
443                     + structureFile.getAbsoluteFile() + "' not found.");
444             continue;
445           }
446
447           Console.debug("Using structure file "
448                   + structureFile.getAbsolutePath());
449
450           // ##### Does this need to happen? Follow
451           // openStructureFileForSequence() below
452           /*
453           PDBEntry fileEntry = new AssociatePdbFileWithSeq()
454                   .associatePdbWithSeq(structureFile.getAbsolutePath(),
455                           DataSourceType.FILE, seq, true, Desktop.instance);
456                           */
457
458           // open structure view
459           AlignmentPanel ap = af.alignPanel;
460           if (headless)
461           {
462             Cache.setProperty(Preferences.STRUCTURE_DISPLAY,
463                     StructureViewer.ViewerType.JMOL.toString());
464           }
465
466           String structureFilepath = structureFile.getAbsolutePath();
467
468           // get PAEMATRIX file and label from subvals or Arg.PAEMATRIX
469           String paeFilepath = ArgParser
470                   .getFromSubValArgOrPrefWithSubstitutions(argParser, avm,
471                           Arg.PAEMATRIX, Position.AFTER, av, subVals, null,
472                           null, null);
473           if (paeFilepath != null)
474           {
475             File paeFile = new File(paeFilepath);
476
477             try
478             {
479               paeFilepath = paeFile.getCanonicalPath();
480             } catch (IOException e)
481             {
482               paeFilepath = paeFile.getAbsolutePath();
483               Console.warn("Problem with the PAE file path: '"
484                       + paeFile.getPath() + "'");
485             }
486           }
487
488           // showing annotations from structure file or not
489           boolean ssFromStructure = ArgParser.getFromSubValArgOrPref(avm,
490                   Arg.SHOWSSANNOTATIONS, subVals, null, "STRUCT_FROM_PDB",
491                   true);
492
493           // get TEMPFAC type from subvals or Arg.TEMPFAC in case user Adds
494           // reference annotations
495           String tftString = subVals.get("tempfac");
496           TFType tft = avm.getBoolean(Arg.NOTEMPFAC) ? null
497                   : TFType.DEFAULT;
498           ArgValue tftAv = getArgAssociatedWithStructure(Arg.TEMPFAC, avm,
499                   af, structureFilepath);
500           if (tftString == null && tftAv != null)
501           {
502             tftString = tftAv.getSubVals().getContent();
503           }
504           if (tftString != null)
505           {
506             // get kind of temperature factor annotation
507             try
508             {
509               tft = TFType.valueOf(tftString.toUpperCase(Locale.ROOT));
510               Console.debug("Obtained Temperature Factor type of '" + tft
511                       + "' for structure '" + structureFilepath + "'");
512             } catch (IllegalArgumentException e)
513             {
514               // Just an error message!
515               StringBuilder sb = new StringBuilder().append("Cannot set ")
516                       .append(Arg.TEMPFAC.argString()).append(" to '")
517                       .append(tft)
518                       .append("', ignoring.  Valid values are: ");
519               Iterator<TFType> it = Arrays.stream(TFType.values())
520                       .iterator();
521               while (it.hasNext())
522               {
523                 sb.append(it.next().toString().toLowerCase(Locale.ROOT));
524                 if (it.hasNext())
525                   sb.append(", ");
526               }
527               Console.warn(sb.toString());
528             }
529           }
530
531           String sViewer = ArgParser.getFromSubValArgOrPref(avm,
532                   Arg.STRUCTUREVIEWER, Position.AFTER, av, subVals, null,
533                   null, "jmol");
534           ViewerType viewerType = null;
535           if (!"none".equals(sViewer))
536           {
537             for (ViewerType v : EnumSet.allOf(ViewerType.class))
538             {
539               String name = v.name().toLowerCase(Locale.ROOT)
540                       .replaceAll(" ", "");
541               if (sViewer.equals(name))
542               {
543                 viewerType = v;
544                 break;
545               }
546             }
547           }
548
549           boolean addTempFac = tft != null
550                   || Cache.getDefault("ADD_TEMPFACT_ANN", false);
551
552           // TODO use ssFromStructure
553           StructureChooser.openStructureFileForSequence(null, null, ap, seq,
554                   false, structureFilepath, tft, paeFilepath, false,
555                   ssFromStructure, false, viewerType);
556         }
557       }
558     }
559
560     /*
561     boolean doShading = avm.getBoolean(Arg.TEMPFAC_SHADING);
562     if (doShading)
563     {
564       AlignFrame af = afMap.get(id);
565       for (AlignmentAnnotation aa : af.alignPanel.getAlignment()
566               .findAnnotation(PDBChain.class.getName().toString()))
567       {
568         AnnotationColourGradient acg = new AnnotationColourGradient(aa,
569                 af.alignPanel.av.getGlobalColourScheme(), 0);
570         acg.setSeqAssociated(true);
571         af.changeColour(acg);
572         Console.info("Changed colour " + acg.toString());
573       }
574     }
575     */
576
577     return theseArgsWereParsed;
578   }
579
580   protected void processGroovyScript(String id)
581   {
582     ArgValuesMap avm = argParser.getLinkedArgs(id);
583     AlignFrame af = afMap.get(id);
584
585     if (af == null)
586     {
587       Console.warn("Did not have an alignment window for id=" + id);
588       return;
589     }
590
591     if (avm.containsArg(Arg.GROOVY))
592     {
593       String groovyscript = avm.getValue(Arg.GROOVY);
594       if (groovyscript != null)
595       {
596         // Execute the groovy script after we've done all the rendering stuff
597         // and before any images or figures are generated.
598         Console.info("Executing script " + groovyscript);
599         Jalview.getInstance().executeGroovyScript(groovyscript, af);
600       }
601     }
602   }
603
604   protected boolean processImages(String id)
605   {
606     ArgValuesMap avm = argParser.getLinkedArgs(id);
607     AlignFrame af = afMap.get(id);
608
609     if (af == null)
610     {
611       Console.warn("Did not have an alignment window for id=" + id);
612       return false;
613     }
614
615     if (avm.containsArg(Arg.IMAGE))
616     {
617       for (ArgValue av : avm.getArgValueList(Arg.IMAGE))
618       {
619         String val = av.getValue();
620         SubVals subVal = av.getSubVals();
621         String fileName = subVal.getContent();
622         File file = new File(fileName);
623         String name = af.getName();
624         String renderer = ArgParser.getValueFromSubValOrArg(avm, av,
625                 Arg.TEXTRENDERER, subVal);
626         if (renderer == null)
627           renderer = "text";
628         String type = "png"; // default
629         type = ArgParser.getValueFromSubValOrArg(avm, av, Arg.TYPE, subVal);
630         if (type == null && fileName != null)
631         {
632           for (String ext : new String[] { "svg", "png", "html", "eps" })
633           {
634             if (fileName.toLowerCase(Locale.ROOT).endsWith("." + ext))
635             {
636               type = ext;
637             }
638           }
639         }
640         // for moment we disable JSON export
641         Cache.setPropsAreReadOnly(true);
642         Cache.setProperty("EXPORT_EMBBED_BIOJSON", "false");
643
644         switch (type)
645         {
646
647         case "svg":
648           Console.debug("Outputting type '" + type + "' to " + fileName);
649           af.createSVG(file, renderer);
650           break;
651
652         case "png":
653           Console.debug("Outputting type '" + type + "' to " + fileName);
654           af.createPNG(file);
655           break;
656
657         case "html":
658           Console.debug("Outputting type '" + type + "' to " + fileName);
659           HtmlSvgOutput htmlSVG = new HtmlSvgOutput(af.alignPanel);
660           htmlSVG.exportHTML(fileName, renderer);
661           break;
662
663         case "biojs":
664           try
665           {
666             BioJsHTMLOutput.refreshVersionInfo(
667                     BioJsHTMLOutput.BJS_TEMPLATES_LOCAL_DIRECTORY);
668           } catch (URISyntaxException e)
669           {
670             e.printStackTrace();
671           }
672           BioJsHTMLOutput bjs = new BioJsHTMLOutput(af.alignPanel);
673           bjs.exportHTML(fileName);
674           Console.debug("Creating BioJS MSA Viwer HTML file: " + fileName);
675           break;
676
677         case "eps":
678           af.createEPS(file, name);
679           Console.debug("Creating EPS file: " + fileName);
680           break;
681
682         case "imagemap":
683           af.createImageMap(file, name);
684           Console.debug("Creating ImageMap file: " + fileName);
685           break;
686
687         default:
688           Console.warn(Arg.IMAGE.argString() + " type '" + type
689                   + "' not known. Ignoring");
690           break;
691         }
692       }
693     }
694     return true;
695   }
696
697   protected boolean processOutput(String id)
698   {
699     ArgValuesMap avm = argParser.getLinkedArgs(id);
700     AlignFrame af = afMap.get(id);
701
702     if (af == null)
703     {
704       Console.warn("Did not have an alignment window for id=" + id);
705       return false;
706     }
707
708     if (avm.containsArg(Arg.OUTPUT))
709     {
710       for (ArgValue av : avm.getArgValueList(Arg.OUTPUT))
711       {
712         String val = av.getValue();
713         SubVals subVals = av.getSubVals();
714         String fileName = subVals.getContent();
715         File file = new File(fileName);
716         boolean overwrite = ArgParser.getFromSubValArgOrPref(avm,
717                 Arg.OVERWRITE, subVals, null, "OVERWRITE_OUTPUT", false);
718         // backups. Use the Arg.BACKUPS or subval "backups" setting first,
719         // otherwise if headless assume false, if not headless use the user
720         // preference with default true.
721         boolean backups = ArgParser.getFromSubValArgOrPref(avm, Arg.BACKUPS,
722                 subVals, null,
723                 Platform.isHeadless() ? null : BackupFiles.ENABLED,
724                 !Platform.isHeadless());
725
726         // if backups is not true then --overwrite must be specified
727         if (file.exists() && !(overwrite || backups))
728         {
729           Console.error("Won't overwrite file '" + fileName + "' without "
730                   + Arg.OVERWRITE.argString() + " or "
731                   + Arg.BACKUPS.argString() + " set");
732           return false;
733         }
734
735         String name = af.getName();
736         String format = ArgParser.getValueFromSubValOrArg(avm, av,
737                 Arg.FORMAT, subVals);
738         FileFormats ffs = FileFormats.getInstance();
739         List<String> validFormats = ffs.getWritableFormats(false);
740
741         FileFormatI ff = null;
742         if (format == null && fileName != null)
743         {
744           FORMAT: for (String fname : validFormats)
745           {
746             FileFormatI tff = ffs.forName(fname);
747             String[] extensions = tff.getExtensions().split(",");
748             for (String ext : extensions)
749             {
750               if (fileName.toLowerCase(Locale.ROOT).endsWith("." + ext))
751               {
752                 ff = tff;
753                 format = ff.getName();
754                 break FORMAT;
755               }
756             }
757           }
758         }
759         if (ff == null && format != null)
760         {
761           ff = ffs.forName(format);
762         }
763         if (ff == null)
764         {
765           StringBuilder validSB = new StringBuilder();
766           for (String f : validFormats)
767           {
768             if (validSB.length() > 0)
769               validSB.append(", ");
770             validSB.append(f);
771             FileFormatI tff = ffs.forName(f);
772             validSB.append(" (");
773             validSB.append(tff.getExtensions());
774             validSB.append(")");
775           }
776
777           Jalview.exit("No valid format specified for "
778                   + Arg.OUTPUT.argString() + ". Valid formats are "
779                   + validSB.toString() + ".", 1);
780           // this return really shouldn't happen
781           return false;
782         }
783
784         String savedBackupsPreference = Cache
785                 .getDefault(BackupFiles.ENABLED, null);
786         Console.debug("Setting backups to " + backups);
787         Cache.applicationProperties.put(BackupFiles.ENABLED,
788                 Boolean.toString(backups));
789         af.saveAlignment(fileName, ff);
790         Console.debug("Returning backups to " + savedBackupsPreference);
791         if (savedBackupsPreference != null)
792           Cache.applicationProperties.put(BackupFiles.ENABLED,
793                   savedBackupsPreference);
794         if (af.isSaveAlignmentSuccessful())
795         {
796           Console.debug("Written alignment '" + name + "' in "
797                   + ff.getName() + " format to " + file);
798         }
799         else
800         {
801           Console.warn("Error writing file " + file + " in " + ff.getName()
802                   + " format!");
803         }
804
805       }
806     }
807     return true;
808   }
809
810   private SequenceI getSpecifiedSequence(AlignFrame af, ArgValuesMap avm,
811           ArgValue av)
812   {
813     SubVals subVals = av.getSubVals();
814     ArgValue idAv = avm.getClosestNextArgValueOfArg(av, Arg.SEQID);
815     SequenceI seq = null;
816     if (subVals == null && idAv == null)
817       return null;
818     AlignmentI al = af.getCurrentView().getAlignment();
819     if (al == null)
820       return null;
821     if (subVals != null)
822     {
823       if (subVals.has(Arg.SEQID.getName()))
824       {
825         seq = al.findName(subVals.get(Arg.SEQID.getName()));
826       }
827       else if (-1 < subVals.getIndex()
828               && subVals.getIndex() < al.getSequences().size())
829       {
830         seq = al.getSequenceAt(subVals.getIndex());
831       }
832     }
833     else if (idAv != null)
834     {
835       seq = al.findName(idAv.getValue());
836     }
837     return seq;
838   }
839
840   // returns the first Arg value intended for the structure structFilename
841   // (in the given AlignFrame from the ArgValuesMap)
842   private ArgValue getArgAssociatedWithStructure(Arg arg, ArgValuesMap avm,
843           AlignFrame af, String structFilename)
844   {
845     if (af != null)
846     {
847       for (ArgValue av : avm.getArgValueList(arg))
848       {
849         SubVals subVals = av.getSubVals();
850         String structid = subVals.get("structid");
851         String structfile = subVals.get("structfile");
852
853         // let's find a structure
854         if (structfile == null && structid == null)
855         {
856           ArgValue likelyStructure = avm.getClosestPreviousArgValueOfArg(av,
857                   Arg.STRUCTURE);
858           if (likelyStructure != null)
859           {
860             SubVals sv = likelyStructure.getSubVals();
861             if (sv != null && sv.has(ArgValues.ID))
862             {
863               structid = sv.get(ArgValues.ID);
864             }
865             else
866             {
867               structfile = likelyStructure.getValue();
868             }
869           }
870         }
871
872         if (structfile == null && structid != null)
873         {
874           StructureSelectionManager ssm = StructureSelectionManager
875                   .getStructureSelectionManager(Desktop.instance);
876           if (ssm != null)
877           {
878             structfile = ssm.findFileForPDBId(structid);
879           }
880         }
881         if (structfile != null && structfile.equals(structFilename))
882         {
883           return av;
884         }
885       }
886     }
887     return null;
888   }
889 }