Skip to content

Commit a475975

Browse files
committed
Allow readset jobs to operate on archived data
1 parent ad5a2f4 commit a475975

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ private SequenceReadsetHandlerJob getPipelineJob()
7575
return (SequenceReadsetHandlerJob)getJob();
7676
}
7777

78-
@NotNull
78+
@NotNull @Override
7979
public RecordedActionSet run() throws PipelineJobException
8080
{
8181
List<RecordedAction> actions = new ArrayList<>();
@@ -90,7 +90,8 @@ public RecordedActionSet run() throws PipelineJobException
9090
throw new PipelineJobException("Readset not instanceof SequenceReadsetImpl");
9191
}
9292

93-
((SequenceReadsetImpl)f).cacheForRemoteServer();
93+
94+
getPipelineJob().getSequenceSupport().cacheReadset(f.getReadsetId(), getJob().getUser(), handler.supportsSraArchivedData());
9495
}
9596

9697
getJob().getLogger().info("total readsets: " + getPipelineJob().getReadsets().size());

0 commit comments

Comments
 (0)