Skip to content

Commit a57d9a3

Browse files
committed
Primers should not be required for CellRangerVDJWrapper
1 parent 2742759 commit a57d9a3

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

singlecell/src/org/labkey/singlecell/run/CellRangerVDJWrapper.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,10 @@ public AlignmentStep.AlignmentOutput performAlignment(Readset rs, List<File> inp
359359
{
360360
writer.println("[vdj]");
361361
writer.println("reference," + indexDir.getPath());
362-
writer.println("inner-enrichment-primers," + primerFile);
362+
if (primers != null)
363+
{
364+
writer.println("inner-enrichment-primers," + primerFile);
365+
}
363366
writer.println("");
364367
writer.println("[libraries]");
365368
writer.println("fastq_id,fastqs,lanes,feature_types,subsample_rate");

0 commit comments

Comments
 (0)