Skip to content

Commit 2742759

Browse files
committed
Bugfix when doSraDownloadIfNeeded not provided
1 parent 8700018 commit 2742759

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ protected SequenceJob(SequenceJob parentJob, String jobName, String subdirectory
113113

114114
protected boolean shouldAllowArchivedReadsets()
115115
{
116-
return ("true".equals(_params.get("doSraDownloadIfNeeded")));
116+
return ("true".equals(_params.optString("doSraDownloadIfNeeded")));
117117
}
118118

119119
public SequenceJob(String providerName, Container c, User u, @Nullable String jobName, PipeRoot pipeRoot, JSONObject params, TaskId taskPipelineId, String folderPrefix) throws IOException

0 commit comments

Comments
 (0)