File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -218,7 +218,9 @@ public RecordedActionSet run() throws PipelineJobException
218218 for (SequenceReadsetImpl rs : readsets )
219219 {
220220 getJob ().getLogger ().debug ("caching readset: " + rs .getName () + " with " + rs .getReadData ().size () + " files" );
221- getPipelineJob ().getSequenceSupport ().cacheReadset (rs );
221+
222+ // NOTE: allow archived data
223+ getPipelineJob ().getSequenceSupport ().cacheReadset (rs , true );
222224 }
223225 }
224226 catch (IOException e )
Original file line number Diff line number Diff line change @@ -626,7 +626,7 @@ else if (lane.isEmpty())
626626
627627 if (rd .isEmpty ())
628628 {
629- getJob ().getLogger ().warn ("no file groups found ofr rs : " + rs .getName () + " with fileGroupId: " + rs .getFileSetName ());
629+ getJob ().getLogger ().warn ("no file groups found for readset : " + rs .getName () + " with fileGroupId: " + rs .getFileSetName ());
630630 }
631631
632632 rs .setReadData (rd );
You can’t perform that action at this time.
0 commit comments