Skip to content

Commit

Permalink
Bugfix to readset import when one pair is archived to SRA
Browse files Browse the repository at this point in the history
  • Loading branch information
bbimber committed Aug 30, 2024
1 parent cf1fa97 commit cb09960
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@ public RecordedActionSet run() throws PipelineJobException
for (SequenceReadsetImpl rs : readsets)
{
getJob().getLogger().debug("caching readset: " + rs.getName() + " with " + rs.getReadData().size() + " files");
getPipelineJob().getSequenceSupport().cacheReadset(rs);

// NOTE: allow archived data
getPipelineJob().getSequenceSupport().cacheReadset(rs, true);
}
}
catch (IOException e)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ else if (lane.isEmpty())

if (rd.isEmpty())
{
getJob().getLogger().warn("no file groups found ofr rs: " + rs.getName() + " with fileGroupId: " + rs.getFileSetName());
getJob().getLogger().warn("no file groups found for readset: " + rs.getName() + " with fileGroupId: " + rs.getFileSetName());
}

rs.setReadData(rd);
Expand Down

0 comments on commit cb09960

Please sign in to comment.