Skip to content

Commit eb73954

Browse files
committed
Fix field validation
1 parent 817ec9f commit eb73954

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

SequenceAnalysis/resources/web/SequenceAnalysis/field/TrimmingTextArea.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Ext4.define('SequenceAnalysis.field.TrimmingTextArea', {
2222
getErrors: function(value){
2323
var errors = this.callParent(arguments);
2424

25-
if (!this.allowBlank && this.getSubmitValue() == null) {
25+
if (!this.allowBlank && Ext4.isEmpty(this.getSubmitValue())) {
2626
errors = errors.concat('Must enter a value');
2727
}
2828

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/analysis/LofreqAnalysis.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -621,7 +621,7 @@ public Output performAnalysisPerSampleRemote(Readset rs, File inputBam, Referenc
621621
continue;
622622
}
623623

624-
if (Double.parseDouble(line[6]) >= 0.5)
624+
if (Double.parseDouble(line[6]) >= 0.35)
625625
{
626626
indelMap.put(line[0], indelMap.getOrDefault(line[0], 0) + 1);
627627
}

0 commit comments

Comments
 (0)