Skip to content

Commit 14ae984

Browse files
committed
Switch error to warning
1 parent 9ed7cea commit 14ae984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/src/org/labkey/singlecell/CellHashingServiceImpl.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ public void prepareHashingAndCiteSeqFilesIfNeeded(File sourceDir, PipelineJob jo
192192
{
193193
if (results.getObject(FieldKey.fromString("hashingReadsetId")) == null)
194194
{
195-
job.getLogger().error("cDNA specifies HTO, but does not list a hashing readset: " + results.getString(FieldKey.fromString("rowid")));
196-
hasError.set(true);
195+
// NOTE: there can be lanes with single HTOs/lane. This will fail down the line
196+
job.getLogger().warn("cDNA specifies HTO, but does not list a hashing readset: " + results.getString(FieldKey.fromString("rowid")) + ". This may not be a problem if there is a single sample per lane");
197197
}
198198
else
199199
{

0 commit comments

Comments
 (0)