-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feature/web-extjs' into develop
Conflicts: eva-server/src/main/java/uk/ac/ebi/variation/eva/server/ws/FilesWSServer.java eva-server/src/main/java/uk/ac/ebi/variation/eva/server/ws/GeneWSServer.java eva-server/src/main/java/uk/ac/ebi/variation/eva/server/ws/RegionWSServer.java eva-server/src/main/java/uk/ac/ebi/variation/eva/server/ws/StudyWSServer.java eva-server/src/main/java/uk/ac/ebi/variation/eva/server/ws/VariantWSServer.java eva-server/src/main/java/uk/ac/ebi/variation/eva/server/ws/ga4gh/GA4GHVariantCallSetWSServer.java eva-web/src/js/eva-variant-widget-panel.js eva-web/src/js/variant-widget/eva-variant-widget.js
- Loading branch information
Showing
631 changed files
with
19,280 additions
and
1,065 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ion/eva/server/ws/CORSResponseFilter.java → ...iation/eva/server/CORSResponseFilter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
package uk.ac.ebi.variation.eva.server.ws; | ||
package uk.ac.ebi.variation.eva.server; | ||
|
||
import java.io.IOException; | ||
|
||
|
4 changes: 2 additions & 2 deletions
4
eva-server/src/main/java/uk/ac/ebi/variation/eva/server/EvaWSRegistry.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 9 additions & 0 deletions
9
eva-server/src/main/java/uk/ac/ebi/variation/eva/server/exception/SpeciesException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package uk.ac.ebi.variation.eva.server.exception; | ||
|
||
@SuppressWarnings("serial") | ||
public class SpeciesException extends Exception { | ||
|
||
public SpeciesException(String msg) { | ||
super(msg); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
eva-server/src/main/java/uk/ac/ebi/variation/eva/server/exception/VersionException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package uk.ac.ebi.variation.eva.server.exception; | ||
|
||
|
||
@SuppressWarnings("serial") | ||
public class VersionException extends Exception { | ||
|
||
public VersionException(String msg) { | ||
super(msg); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.