We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b0824 commit 9572765Copy full SHA for 9572765
src/main/java/org/broad/igv/feature/genome/load/JsonGenomeLoader.java
@@ -124,6 +124,13 @@ public Genome loadGenome() throws IOException {
124
res.setVisibilityWindow(-1);
125
}
126
127
+ JsonElement infoURL = obj.get("infoURL");
128
+ if(infoURL != null) {
129
+ res.setFeatureInfoURL(infoURL.getAsString());
130
+ }
131
+
132
+ // geneFeatureTrack.setFeatureInfoURL(annotationURL);
133
134
JsonElement indexedElement = obj.get("indexed");
135
JsonElement hiddenElement = obj.get("hidden");
136
boolean hidden = hiddenElement != null && hiddenElement.getAsBoolean();
0 commit comments