We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1d3cff commit 07c9c0dCopy full SHA for 07c9c0d
singlecell/api-src/org/labkey/api/singlecell/pipeline/AbstractSingleCellPipelineStep.java
@@ -178,7 +178,7 @@ public boolean requiresHashingOrCiteSeq()
178
public static class Markdown
179
{
180
public List<Chunk> chunks;
181
- public Chunk setup;
+ public Chunk setup = null;
182
public List<String> headerYml;
183
184
public void print(PrintWriter out)
@@ -187,7 +187,10 @@ public void print(PrintWriter out)
187
headerYml.forEach(out::println);
188
out.println("---");
189
out.println("");
190
- setup.print(out);
+ if (setup != null)
191
+ {
192
+ setup.print(out);
193
+ }
194
chunks.forEach(chunk -> chunk.print(out));
195
}
196
0 commit comments