Skip to content

Commit cb09960

Browse files
committed
Bugfix to readset import when one pair is archived to SRA
1 parent cf1fa97 commit cb09960

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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)

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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);

0 commit comments

Comments
 (0)