From 16fef6657995670398c6d4af669391d8c1129a10 Mon Sep 17 00:00:00 2001 From: Adam Rauch Date: Mon, 14 Apr 2025 07:46:17 -0700 Subject: [PATCH] Simplify and expand use of LinkBuilder factory methods --- genotyping/src/org/labkey/genotyping/view/configure.jsp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/genotyping/src/org/labkey/genotyping/view/configure.jsp b/genotyping/src/org/labkey/genotyping/view/configure.jsp index 14f0c4d0..8b002b7c 100644 --- a/genotyping/src/org/labkey/genotyping/view/configure.jsp +++ b/genotyping/src/org/labkey/genotyping/view/configure.jsp @@ -124,7 +124,7 @@ External source of DNA reference sequences  
- <%=link("configure").href("#").onClick("chooseView('Choose DNA reference sequences query', 'Select a query that represents an external source of DNA reference sequences. This query will be used periodically to replace the reference sequences that link to results.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSequencesQuery(query);}, queries['sequencesQuery'], includeSchema);return false;")%> + <%=link("configure", "#").onClick("chooseView('Choose DNA reference sequences query', 'Select a query that represents an external source of DNA reference sequences. This query will be used periodically to replace the reference sequences that link to results.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSequencesQuery(query);}, queries['sequencesQuery'], includeSchema);return false;")%> @@ -132,7 +132,7 @@ Runs
- <%=link("configure").href("#").onClick("chooseView('Choose runs query', 'Select a query where runs are stored.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateRunsQuery(query);}, queries['runsQuery'], includeSchema);return false;")%> + <%=link("configure", "#").onClick("chooseView('Choose runs query', 'Select a query where runs are stored.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateRunsQuery(query);}, queries['runsQuery'], includeSchema);return false;")%> @@ -140,7 +140,7 @@ Samples
- <%=link("configure").href("#").onClick("chooseView('Choose samples query', 'Select a query that provides a list of samples. This query is filtered by the library number specified in the run to produce the sample.txt file.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSamplesQuery(query);}, queries['samplesQuery'], includeSchema);return false;")%> + <%=link("configure", "#").onClick("chooseView('Choose samples query', 'Select a query that provides a list of samples. This query is filtered by the library number specified in the run to produce the sample.txt file.', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateSamplesQuery(query);}, queries['samplesQuery'], includeSchema);return false;")%> @@ -148,7 +148,7 @@ Haplotype Definitions
- <%=link("configure").href("#").onClick("chooseView('Choose haplotype definition query', 'Select a query that provides a list of haplotype definitions. ', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateHaplotypesQuery(query);}, queries['haplotypesQuery'], includeSchema);return false;")%> + <%=link("configure", "#").onClick("chooseView('Choose haplotype definition query', 'Select a query that provides a list of haplotype definitions. ', '" + GenotypingFolderSettings.SEPARATOR + "', function(query){updateHaplotypesQuery(query);}, queries['haplotypesQuery'], includeSchema);return false;")%>