Merge branch 'releases/Release_2_11_3_Branch'
[jalview.git] / src / jalview / ws / dbsources / EBIAlfaFold.java
1
2 /*
3  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
4  * Copyright (C) $$Year-Rel$$ The Jalview Authors
5  * 
6  * This file is part of Jalview.
7  * 
8  * Jalview is free software: you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License 
10  * as published by the Free Software Foundation, either version 3
11  * of the License, or (at your option) any later version.
12  *  
13  * Jalview is distributed in the hope that it will be useful, but 
14  * WITHOUT ANY WARRANTY; without even the implied warranty 
15  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
16  * PURPOSE.  See the GNU General Public License for more details.
17  * 
18  * You should have received a copy of the GNU General Public License
19  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
20  * The Jalview Authors are detailed in the 'AUTHORS' file.
21  */
22 package jalview.ws.dbsources;
23
24 import java.io.File;
25 import java.io.FileInputStream;
26 import java.io.FileNotFoundException;
27 import java.io.IOException;
28 import java.io.InputStream;
29 import java.util.ArrayList;
30 import java.util.Date;
31 import java.util.HashMap;
32 import java.util.List;
33 import java.util.Map;
34
35 import org.json.simple.JSONArray;
36 import org.json.simple.JSONObject;
37 import org.json.simple.parser.ParseException;
38
39 import com.stevesoft.pat.Regex;
40
41 import jalview.api.FeatureSettingsModelI;
42 import jalview.bin.Console;
43 import jalview.datamodel.AlignmentAnnotation;
44 import jalview.datamodel.AlignmentI;
45 import jalview.datamodel.ContactMatrixI;
46 import jalview.datamodel.DBRefEntry;
47 import jalview.datamodel.GroupSet;
48 import jalview.datamodel.PDBEntry;
49 import jalview.datamodel.SequenceFeature;
50 import jalview.datamodel.SequenceI;
51 import jalview.gui.Desktop;
52 import jalview.io.DataSourceType;
53 import jalview.io.FileFormat;
54 import jalview.io.FileFormatI;
55 import jalview.io.FormatAdapter;
56 import jalview.io.PDBFeatureSettings;
57 import jalview.structure.StructureImportSettings.TFType;
58 import jalview.structure.StructureMapping;
59 import jalview.structure.StructureSelectionManager;
60 import jalview.util.MessageManager;
61 import jalview.util.Platform;
62 import jalview.ws.datamodel.alphafold.PAEContactMatrix;
63 import jalview.ws.utils.UrlDownloadClient;
64
65 /**
66  * @author JimP
67  * 
68  */
69 public class EBIAlfaFold extends EbiFileRetrievedProxy
70 {
71   private static final String SEPARATOR = "|";
72
73   private static final String COLON = ":";
74
75   private static final int PDB_ID_LENGTH = 4;
76
77   private static String AF_VERSION = "3";
78
79   public EBIAlfaFold()
80   {
81     super();
82   }
83
84   /*
85    * (non-Javadoc)
86    * 
87    * @see jalview.ws.DbSourceProxy#getAccessionSeparator()
88    */
89   @Override
90   public String getAccessionSeparator()
91   {
92     return null;
93   }
94
95   /*
96    * (non-Javadoc)
97    * 
98    * @see jalview.ws.DbSourceProxy#getAccessionValidator()
99    */
100   @Override
101   public Regex getAccessionValidator()
102   {
103     Regex validator = new Regex("(AF-[A-Z]+[0-9]+[A-Z0-9]+-F1)");
104     validator.setIgnoreCase(true);
105     return validator;
106   }
107
108   /*
109    * (non-Javadoc)
110    * 
111    * @see jalview.ws.DbSourceProxy#getDbSource()
112    */
113   @Override
114   public String getDbSource()
115   {
116     return "ALPHAFOLD";
117   }
118
119   /*
120    * (non-Javadoc)
121    * 
122    * @see jalview.ws.DbSourceProxy#getDbVersion()
123    */
124   @Override
125   public String getDbVersion()
126   {
127     return "1";
128   }
129
130   public static String getAlphaFoldCifDownloadUrl(String id, String vnum)
131   {
132     if (vnum == null || vnum.length() == 0)
133     {
134       vnum = AF_VERSION;
135     }
136     return "https://alphafold.ebi.ac.uk/files/" + id + "-model_v" + vnum
137             + ".cif";
138   }
139
140   public static String getAlphaFoldPaeDownloadUrl(String id, String vnum)
141   {
142     if (vnum == null || vnum.length() == 0)
143     {
144       vnum = AF_VERSION;
145     }
146     return "https://alphafold.ebi.ac.uk/files/" + id
147             + "-predicted_aligned_error_v" + vnum + ".json";
148   }
149
150   /*
151    * (non-Javadoc)
152    * 
153    * @see jalview.ws.DbSourceProxy#getSequenceRecords(java.lang.String[])
154    */
155   @Override
156   public AlignmentI getSequenceRecords(String queries) throws Exception
157   {
158     return getSequenceRecords(queries, null);
159   }
160
161   public AlignmentI getSequenceRecords(String queries, String retrievalUrl)
162           throws Exception
163   {
164     AlignmentI pdbAlignment = null;
165     String chain = null;
166     String id = null;
167     if (queries.indexOf(COLON) > -1)
168     {
169       chain = queries.substring(queries.indexOf(COLON) + 1);
170       id = queries.substring(0, queries.indexOf(COLON));
171     }
172     else
173     {
174       id = queries;
175     }
176
177     if (!isValidReference(id))
178     {
179       jalview.bin.Console.errPrintln(
180               "(AFClient) Ignoring invalid alphafold query: '" + id + "'");
181       stopQuery();
182       return null;
183     }
184     String alphaFoldCif = getAlphaFoldCifDownloadUrl(id, AF_VERSION);
185     if (retrievalUrl != null)
186     {
187       alphaFoldCif = retrievalUrl;
188     }
189
190     try
191     {
192       File tmpFile = File.createTempFile(id, ".cif");
193       Console.debug("Retrieving structure file for " + id + " from "
194               + alphaFoldCif);
195       UrlDownloadClient.download(alphaFoldCif, tmpFile);
196
197       // may not need this check ?
198       file = tmpFile.getAbsolutePath();
199       if (file == null)
200       {
201         return null;
202       }
203       // TODO Get the PAE file somewhere around here and remove from JmolParser
204
205       pdbAlignment = importDownloadedStructureFromUrl(alphaFoldCif, tmpFile,
206               id, chain, getDbSource(), getDbVersion());
207
208       if (pdbAlignment == null || pdbAlignment.getHeight() < 1)
209       {
210         throw new Exception(MessageManager.formatMessage(
211                 "exception.no_pdb_records_for_chain", new String[]
212                 { id, ((chain == null) ? "' '" : chain) }));
213       }
214       // done during structure retrieval
215       // retrieve_AlphaFold_pAE(id, pdbAlignment, retrievalUrl);
216
217     } catch (Exception ex) // Problem parsing PDB file
218     {
219       stopQuery();
220       throw (ex);
221     }
222     return pdbAlignment;
223   }
224
225   /**
226    * get an alphafold pAE for the given id and return the File object of the
227    * downloaded (temp) file
228    * 
229    * @param id
230    * @param pdbAlignment
231    * @param retrievalUrl
232    *          - URL of .mmcif from EBI-AlphaFold - will be used to generate the
233    *          pAE URL automatically
234    * @throws IOException
235    * @throws Exception
236    */
237   public static File fetchAlphaFoldPAE(String id, String retrievalUrl)
238           throws IOException
239   {
240     // import PAE as contact matrix - assume this will work if there was a
241     // model
242     String paeURL = getAlphaFoldPaeDownloadUrl(id, AF_VERSION);
243
244     if (retrievalUrl != null)
245     {
246       // manufacture the PAE url from a url like ...-model-vN.cif
247       paeURL = retrievalUrl.replace("model", "predicted_aligned_error")
248               .replace(".cif", ".json");
249     }
250
251     // check the cache
252     File pae = paeDownloadCache.get(paeURL);
253     if (pae != null && pae.exists() && (new Date().getTime()
254             - pae.lastModified()) < PAE_CACHE_STALE_TIME)
255     {
256       Console.debug(
257               "Using existing file in PAE cache for '" + paeURL + "'");
258       return pae;
259     }
260
261     try
262     {
263       pae = File.createTempFile(id == null ? "af_pae" : id, "pae_json");
264     } catch (IOException e)
265     {
266       e.printStackTrace();
267     }
268     Console.debug("Downloading pae from " + paeURL + " to " + pae.toString()
269             + "");
270     try
271     {
272       UrlDownloadClient.download(paeURL, pae);
273     } catch (IOException e)
274     {
275       throw e;
276     }
277     // cache and it if successful
278     paeDownloadCache.put(paeURL, pae);
279     return pae;
280   }
281
282   /**
283    * get an alphafold pAE for the given id, and add it to sequence 0 in
284    * pdbAlignment (assuming it came from structurefile parser).
285    * 
286    * @param id
287    * @param pdbAlignment
288    * @param retrievalUrl
289    *          - URL of .mmcif from EBI-AlphaFold - will be used to generate the
290    *          pAE URL automatically
291    * @throws IOException
292    * @throws Exception
293    */
294   public static void retrieve_AlphaFold_pAE(String id,
295           AlignmentI pdbAlignment, String retrievalUrl) throws IOException
296   {
297     File pae = fetchAlphaFoldPAE(id, retrievalUrl);
298     addAlphaFoldPAE(pdbAlignment, pae, 0, null, false, false, null);
299   }
300
301   public static void addAlphaFoldPAE(AlignmentI pdbAlignment, File pae,
302           int index, String id, boolean isStruct, boolean isStructId,
303           String label)
304   {
305     FileInputStream paeInput = null;
306     try
307     {
308       paeInput = new FileInputStream(pae);
309     } catch (FileNotFoundException e)
310     {
311       Console.error(
312               "Could not find pAE file '" + pae.getAbsolutePath() + "'", e);
313       return;
314     }
315
316     if (isStruct)
317     {
318       // ###### WRITE A TEST for this bit of the logic addAlphaFoldPAE with
319       // different params.
320       StructureSelectionManager ssm = StructureSelectionManager
321               .getStructureSelectionManager(Desktop.instance);
322       if (ssm != null)
323       {
324         String structFilename = isStructId ? ssm.findFileForPDBId(id) : id;
325         addPAEToStructure(ssm, structFilename, pae, label);
326       }
327
328     }
329     else
330     {
331       // attach to sequence?!
332       try
333       {
334         if (!importPaeJSONAsContactMatrixToSequence(pdbAlignment, paeInput,
335                 index, id, label))
336         {
337           Console.warn("Could not import contact matrix from '"
338                   + pae.getAbsolutePath() + "' to sequence.");
339         }
340       } catch (IOException e1)
341       {
342         Console.error("Error when importing pAE file '"
343                 + pae.getAbsolutePath() + "'", e1);
344       } catch (ParseException e2)
345       {
346         Console.error("Error when parsing pAE file '"
347                 + pae.getAbsolutePath() + "'", e2);
348       }
349     }
350
351   }
352
353   public static void addPAEToStructure(StructureSelectionManager ssm,
354           String structFilename, File pae, String label)
355   {
356     FileInputStream paeInput = null;
357     try
358     {
359       paeInput = new FileInputStream(pae);
360     } catch (FileNotFoundException e)
361     {
362       Console.error(
363               "Could not find pAE file '" + pae.getAbsolutePath() + "'", e);
364       return;
365     }
366     if (ssm == null)
367     {
368       ssm = StructureSelectionManager
369               .getStructureSelectionManager(Desktop.instance);
370     }
371     if (ssm != null)
372     {
373       StructureMapping[] smArray = ssm.getMapping(structFilename);
374
375       try
376       {
377         if (!importPaeJSONAsContactMatrixToStructure(smArray, paeInput,
378                 label))
379         {
380           Console.warn("Could not import contact matrix from '"
381                   + pae.getAbsolutePath() + "' to structure.");
382         }
383       } catch (IOException e1)
384       {
385         Console.error("Error when importing pAE file '"
386                 + pae.getAbsolutePath() + "'", e1);
387       } catch (ParseException e2)
388       {
389         Console.error("Error when parsing pAE file '"
390                 + pae.getAbsolutePath() + "'", e2);
391       }
392     }
393   }
394
395   /**
396    * parses the given pAE matrix and adds it to sequence 0 in the given
397    * alignment
398    * 
399    * @param pdbAlignment
400    * @param pae_input
401    * @return true if there was a pAE matrix added
402    * @throws ParseException
403    * @throws IOException
404    * @throws Exception
405    */
406   public static boolean importPaeJSONAsContactMatrixToSequence(
407           AlignmentI pdbAlignment, InputStream pae_input, int index,
408           String seqId, String label) throws IOException, ParseException
409   {
410     SequenceI sequence = null;
411     if (seqId == null)
412     {
413       int seqToGet = index > 0 ? index : 0;
414       sequence = pdbAlignment.getSequenceAt(seqToGet);
415     }
416     if (sequence == null)
417     {
418       SequenceI[] sequences = pdbAlignment.findSequenceMatch(seqId);
419       if (sequences == null || sequences.length < 1)
420       {
421         Console.warn("Could not find sequence with id '" + seqId
422                 + "' to attach pAE matrix to. Ignoring matrix.");
423         return false;
424       }
425       else
426       {
427         sequence = sequences[0]; // just use the first sequence with this seqId
428       }
429     }
430     if (sequence == null)
431     {
432       return false;
433     }
434     return importPaeJSONAsContactMatrixToSequence(pdbAlignment, pae_input,
435             sequence, label);
436   }
437
438   public static boolean importPaeJSONAsContactMatrixToSequence(
439           AlignmentI pdbAlignment, InputStream pae_input,
440           SequenceI sequence, String label)
441           throws IOException, ParseException
442   {
443     JSONObject paeDict = parseJSONtoPAEContactMatrix(pae_input);
444     if (paeDict == null)
445     {
446       Console.debug("JSON file did not parse properly.");
447       return false;
448     }
449     ContactMatrixI matrix = new PAEContactMatrix(sequence,
450             (Map<String, Object>) paeDict);
451
452     AlignmentAnnotation cmannot = sequence.addContactList(matrix);
453     if (label != null)
454       cmannot.label = label;
455     pdbAlignment.addAnnotation(cmannot);
456
457     return true;
458   }
459
460   public static JSONObject parseJSONtoPAEContactMatrix(
461           InputStream pae_input) throws IOException, ParseException
462   {
463     Object paeJson = Platform.parseJSON(pae_input);
464     JSONObject paeDict = null;
465     if (paeJson instanceof JSONObject)
466     {
467       paeDict = (JSONObject) paeJson;
468     }
469     else if (paeJson instanceof JSONArray)
470     {
471       JSONArray jsonArray = (JSONArray) paeJson;
472       if (jsonArray.size() > 0)
473         paeDict = (JSONObject) jsonArray.get(0);
474     }
475
476     return paeDict;
477   }
478
479   // ###### TEST THIS
480   public static boolean importPaeJSONAsContactMatrixToStructure(
481           StructureMapping[] smArray, InputStream paeInput, String label)
482           throws IOException, ParseException
483   {
484     boolean someDone = false;
485     for (StructureMapping sm : smArray)
486     {
487       boolean thisDone = importPaeJSONAsContactMatrixToStructure(sm,
488               paeInput, label);
489       someDone |= thisDone;
490     }
491     return someDone;
492   }
493
494   public static boolean importPaeJSONAsContactMatrixToStructure(
495           StructureMapping sm, InputStream paeInput, String label)
496           throws IOException, ParseException
497   {
498     JSONObject pae_obj = parseJSONtoPAEContactMatrix(paeInput);
499     if (pae_obj == null)
500     {
501       Console.debug("JSON file did not parse properly.");
502       return false;
503     }
504
505     SequenceI seq = sm.getSequence();
506     ContactMatrixI matrix = new PAEContactMatrix(seq,
507             (Map<String, Object>) pae_obj);
508     AlignmentAnnotation cmannot = sm.getSequence().addContactList(matrix);
509     /* this already happens in Sequence.addContactList()
510      seq.addAlignmentAnnotation(cmannot);
511      */
512     return true;
513   }
514
515   /**
516    * general purpose structure importer - designed to yield alignment useful for
517    * transfer of annotation to associated sequences
518    * 
519    * @param alphaFoldCif
520    * @param tmpFile
521    * @param id
522    * @param chain
523    * @param dbSource
524    * @param dbVersion
525    * @return
526    * @throws Exception
527    */
528   public static AlignmentI importDownloadedStructureFromUrl(
529           String alphaFoldCif, File tmpFile, String id, String chain,
530           String dbSource, String dbVersion) throws Exception
531   {
532     String file = tmpFile.getAbsolutePath();
533     // todo get rid of Type and use FileFormatI instead?
534     FileFormatI fileFormat = FileFormat.MMCif;
535     TFType tempfacType = TFType.PLDDT;
536     AlignmentI pdbAlignment = new FormatAdapter().readFile(tmpFile, file,
537             DataSourceType.FILE, fileFormat, tempfacType);
538
539     if (pdbAlignment != null)
540     {
541       List<SequenceI> toremove = new ArrayList<SequenceI>();
542       for (SequenceI pdbcs : pdbAlignment.getSequences())
543       {
544         String chid = null;
545         // Mapping map=null;
546         for (PDBEntry pid : pdbcs.getAllPDBEntries())
547         {
548           if (pid.getFile() == file)
549           {
550             chid = pid.getChainCode();
551           }
552         }
553         if (chain == null || (chid != null && (chid.equals(chain)
554                 || chid.trim().equals(chain.trim())
555                 || (chain.trim().length() == 0 && chid.equals("_")))))
556         {
557           // FIXME seems to result in 'PDB|1QIP|1qip|A' - 1QIP is redundant.
558           // TODO: suggest simplify naming to 1qip|A as default name defined
559           pdbcs.setName(id + SEPARATOR + pdbcs.getName());
560           // Might need to add more metadata to the PDBEntry object
561           // like below
562           /*
563            * PDBEntry entry = new PDBEntry(); // Construct the PDBEntry
564            * entry.setId(id); if (entry.getProperty() == null)
565            * entry.setProperty(new Hashtable());
566            * entry.getProperty().put("chains", pdbchain.id + "=" +
567            * sq.getStart() + "-" + sq.getEnd());
568            * sq.getDatasetSequence().addPDBId(entry);
569            */
570           // Add PDB DB Refs
571           // We make a DBRefEtntry because we have obtained the PDB file from
572           // a
573           // verifiable source
574           // JBPNote - PDB DBRefEntry should also carry the chain and mapping
575           // information
576           if (dbSource != null)
577           {
578             DBRefEntry dbentry = new DBRefEntry(dbSource,
579
580                     dbVersion, (chid == null ? id : id + chid));
581             // dbentry.setMap()
582             pdbcs.addDBRef(dbentry);
583             // update any feature groups
584             List<SequenceFeature> allsf = pdbcs.getFeatures()
585                     .getAllFeatures();
586             List<SequenceFeature> newsf = new ArrayList<SequenceFeature>();
587             if (allsf != null && allsf.size() > 0)
588             {
589               for (SequenceFeature f : allsf)
590               {
591                 if (file.equals(f.getFeatureGroup()))
592                 {
593                   f = new SequenceFeature(f, f.type, f.begin, f.end, id,
594                           f.score);
595                 }
596                 newsf.add(f);
597               }
598               pdbcs.setSequenceFeatures(newsf);
599             }
600           }
601         }
602         else
603         {
604           // mark this sequence to be removed from the alignment
605           // - since it's not from the right chain
606           toremove.add(pdbcs);
607         }
608       }
609       // now remove marked sequences
610       for (SequenceI pdbcs : toremove)
611       {
612         pdbAlignment.deleteSequence(pdbcs);
613         if (pdbcs.getAnnotation() != null)
614         {
615           for (AlignmentAnnotation aa : pdbcs.getAnnotation())
616           {
617             pdbAlignment.deleteAnnotation(aa);
618           }
619         }
620       }
621     }
622     return pdbAlignment;
623   }
624
625   /*
626    * (non-Javadoc)
627    * 
628    * @see jalview.ws.DbSourceProxy#isValidReference(java.lang.String)
629    */
630   @Override
631   public boolean isValidReference(String accession)
632   {
633     Regex r = getAccessionValidator();
634     return r.search(accession.trim());
635   }
636
637   /**
638    * human glyoxalase
639    */
640   @Override
641   public String getTestQuery()
642   {
643     return "AF-O15552-F1";
644   }
645
646   @Override
647   public String getDbName()
648   {
649     return "ALPHAFOLD"; // getDbSource();
650   }
651
652   @Override
653   public int getTier()
654   {
655     return 0;
656   }
657
658   /**
659    * Returns a descriptor for suitable feature display settings with
660    * <ul>
661    * <li>ResNums or insertions features visible</li>
662    * <li>insertions features coloured red</li>
663    * <li>ResNum features coloured by label</li>
664    * <li>Insertions displayed above (on top of) ResNums</li>
665    * </ul>
666    */
667   @Override
668   public FeatureSettingsModelI getFeatureColourScheme()
669   {
670     return new PDBFeatureSettings();
671   }
672
673   // days * 86400000
674   private static final long PAE_CACHE_STALE_TIME = 1 * 86400000;
675
676   private static Map<String, File> paeDownloadCache = new HashMap<>();
677
678 }