response = client.send(request, bodyHandler);
- String message = response.body();
-
- LOG.info("LabKey response to analysis {} completion: \"{}\"", analysisId, message);
- }
- catch (Throwable t)
- {
- LOG.error("Exception while completing {}", file.toNioPathForRead().toAbsolutePath(), t);
- }
- finally
- {
- _pendingCompletionFiles.remove(file);
- }
- }
- }
- }
- }
- }
-}
diff --git a/genotyping/src/org/labkey/genotyping/view/analyze.jsp b/genotyping/src/org/labkey/genotyping/view/analyze.jsp
deleted file mode 100644
index 0bc9e449..00000000
--- a/genotyping/src/org/labkey/genotyping/view/analyze.jsp
+++ /dev/null
@@ -1,195 +0,0 @@
-<%
-/*
- * Copyright (c) 2010-2016 LabKey Corporation
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-%>
-<%@ page import="org.labkey.api.query.CustomView" %>
-<%@ page import="org.labkey.api.util.Pair" %>
-<%@ page import="org.labkey.api.view.template.ClientDependencies" %>
-<%@ page import="org.labkey.genotyping.GenotypingController" %>
-<%@ page import="org.labkey.genotyping.GenotypingController.AnalyzeBean" %>
-<%@ page import="java.io.IOException" %>
-<%@ page import="java.util.Map" %>
-<%@ page import="java.util.SortedSet" %>
-<%@ taglib prefix="labkey" uri="http://www.labkey.org/taglib" %>
-<%@ page extends="org.labkey.api.jsp.JspBase" %>
-<%!
- @Override
- public void addClientDependencies(ClientDependencies dependencies)
- {
- dependencies.add("clientapi/ext3");
- }
-%>
-<%
- AnalyzeBean bean = (AnalyzeBean)getModelBean();
-
-// ext-all.css hard-codes a white background, we want transparent instead %>
-
-
-
-
-
diff --git a/genotyping/src/org/labkey/genotyping/view/configure.jsp b/genotyping/src/org/labkey/genotyping/view/configure.jsp
index 8b002b7c..8cffe2e2 100644
--- a/genotyping/src/org/labkey/genotyping/view/configure.jsp
+++ b/genotyping/src/org/labkey/genotyping/view/configure.jsp
@@ -116,9 +116,6 @@
| <%=h(form.getMessage())%> |
| |
<% } %>
- | Configure Galaxy |
- | Galaxy server home page URL | |
- | |
| Configure Genotyping Queries |
| External source of DNA reference sequences |
diff --git a/genotyping/src/org/labkey/genotyping/view/importHaplotypeAssignments.jsp b/genotyping/src/org/labkey/genotyping/view/importHaplotypeAssignments.jsp
index ae2cd3a2..b1e79896 100644
--- a/genotyping/src/org/labkey/genotyping/view/importHaplotypeAssignments.jsp
+++ b/genotyping/src/org/labkey/genotyping/view/importHaplotypeAssignments.jsp
@@ -28,7 +28,7 @@
<%
JspView me = HttpView.currentView();
HaplotypeProtocolBean bean = me.getModelBean();
- HaplotypeDataCollector dataCollector = bean.getDataCollector();
+ HaplotypeDataCollector dataCollector = bean.dataCollector();
String[] reshowData = {};
if (dataCollector.getReshowValue("data") != null && !dataCollector.getReshowValue("data").isEmpty())
{
@@ -42,7 +42,7 @@