Skip to content

Commit 15b3422

Browse files
committed
Bugfix to CellRangerVDJ
1 parent 0175ca6 commit 15b3422

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tcrdb/src/org/labkey/tcrdb/pipeline/CellRangerVDJUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -490,11 +490,11 @@ else if (discordantBarcodes.contains(barcode))
490490
while (i.hasNext())
491491
{
492492
Map<String, Object> fastaRecord = i.next();
493-
String header = (String) fastaRecord.get("header");
493+
String header = "vdj_t<>" + fastaRecord.get("header");
494494
j++;
495495
if (uniqueContigNames.contains(header))
496496
{
497-
sequenceMap.put("vdj_t<>" + header, (String) fastaRecord.get("sequence"));
497+
sequenceMap.put(header, (String) fastaRecord.get("sequence"));
498498
}
499499
}
500500
}

0 commit comments

Comments
 (0)