Skip to content

Commit cb5a881

Browse files
authored
Merge pull request #170 from LabKey/fb_merge_23.3_to_develop
Merge 23.3 to develop
2 parents 7081080 + 35eb78c commit cb5a881

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

LabPurchasing/resources/web/labpurchasing/panel/VendorPanel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ Ext4.define('LabPurchasing.panel.VendorPanel', {
6868
return;
6969
}
7070

71-
function onSuccess(store){
71+
function onSuccess(){
7272
this.mun(this.store, onError);
7373
btn.setDisabled(false);
7474

75-
var store = Ext4.StoreManager.get('labpurchasing||vendors||rowId||vendorName||');
75+
var store = Ext4.StoreManager.get(LABKEY.ext4.Util.getLookupStoreId({lookup: {schemaName: 'labpurchasing', queryName: 'vendors', keyColumn: 'rowId', displayColumn: 'vendorName'}}));
7676
if (store) {
7777
store.load();
7878
}

variantdb/src/org/labkey/variantdb/analysis/ImputationAnalysis.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -315,13 +315,13 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
315315
File alleleFreqDir = new File(job.getJobSupport(FileAnalysisJobSupport.class).getAnalysisDirectory(), "alleleFreqs");
316316
alleleFreqDir.mkdirs();
317317

318-
if (params.get("minGenotypeQual") != null)
318+
if (!params.isNull("minGenotypeQual"))
319319
{
320320
job.getLogger().info("setting minGenotypeQual: " + params.get("minGenotypeQual"));
321321
runner.setMinGenotypeQual(params.getInt("minGenotypeQual"));
322322
}
323323

324-
if (params.get("minGenotypeDepth") != null)
324+
if (!params.isNull("minGenotypeDepth"))
325325
{
326326
job.getLogger().info("setting minGenotypeDepth: " + params.get("minGenotypeDepth"));
327327
runner.setMinGenotypeDepth(params.getInt("minGenotypeDepth"));
@@ -373,7 +373,7 @@ public void processFilesRemote(List<SequenceOutputFile> inputFiles, JobContext c
373373

374374
//now actually perform imputation
375375
job.setStatus(PipelineJob.TaskStatus.running, "Imputing: " + idx + " of " + sets.size());
376-
String callMethod = params.get("callMethod") != null ? params.getString("callMethod") : "1";
376+
String callMethod = !params.isNull("callMethod") ? params.getString("callMethod") : "1";
377377
runner.processSet(baseDir, alleleFreqDir, job.getLogger(), ss.wgsSampleIds, ss.imputedSampleIds, callMethod);
378378

379379
job.setStatus(PipelineJob.TaskStatus.running, "Making VCF / Evaluating Accuracy");

0 commit comments

Comments
 (0)