Skip to content

Commit f3a20a0

Browse files
committed
More permissive locus splitting in cellranger vdj library prep
1 parent a194031 commit f3a20a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public void init(SequenceAnalysisJobSupport support) throws PipelineJobException
148148
}
149149

150150
//NOTE: this allows dual TRA/TRD segments
151-
String[] loci = nt.getLocus().split("/");
151+
String[] loci = nt.getLocus().split("[/,]");
152152
for (String locus : loci)
153153
{
154154
i.getAndIncrement(); //cant use sequenceId since sequences might be represented multiple times across loci

0 commit comments

Comments
 (0)