Skip to content

Commit 88dc277

Browse files
committed
Fix syntax in nimble markdown
1 parent c0085d2 commit 88dc277

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/pipeline/singlecell/AppendNimble.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ protected Chunk createParamChunk(SequenceOutputHandler.JobContext ctx, List<Seur
7373

7474
int genomeId = arr.getInt(0);
7575
String targetAssay = arr.getString(1);
76-
ret.bodyLines.add("\t" + delim + "'" + genomeId + "' = " + targetAssay);
76+
ret.bodyLines.add("\t" + delim + "'" + genomeId + "' = '" + targetAssay + "'");
7777
delim = ",";
7878
}
7979
ret.bodyLines.add(")");

0 commit comments

Comments
 (0)