JAL-1807 Bob's JalviewJS prototype first commit
[jalviewjs.git] / src / jalview / api / analysis / ViewBasedAnalysisI.java
1 package jalview.api.analysis;
2
3 import jalview.api.AlignmentViewPanel;
4
5 public interface ViewBasedAnalysisI
6 {
7
8   /**
9    * Parameterise the analysis model using the current view
10    * @param view
11    * @return true if model is applicable and calculation should proceed
12    */
13
14   boolean configureFromAlignmentView(AlignmentViewPanel view);
15
16 }