Skip to content

Commit eda3a73

Browse files
committed
Bugfix merge of existing readsets
1 parent 044283b commit eda3a73

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,7 @@ private void importReadsets() throws PipelineJobException
178178
boolean readsetExistsWithData = !preexistingReadData.isEmpty();
179179
if (readsetExistsWithData)
180180
{
181-
getJob().getLogger().info("Readset has existing data: " + r.getName());
182-
181+
getJob().getLogger().info("Readset has existing data: " + r.getName() + " from: " + r.getContainer());
183182
readsetsToDeactivate.put(r.getReadsetId(), r.getContainer());
184183
}
185184

@@ -444,6 +443,7 @@ private void importReadsets() throws PipelineJobException
444443

445444
row = new CaseInsensitiveHashMap<>();
446445
row.put("rowid", rowId);
446+
row.put("container", container);
447447
toUpdateKeys.add(row);
448448
});
449449

0 commit comments

Comments
 (0)