We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0175ca6 commit 15b3422Copy full SHA for 15b3422
1 file changed
tcrdb/src/org/labkey/tcrdb/pipeline/CellRangerVDJUtils.java
@@ -490,11 +490,11 @@ else if (discordantBarcodes.contains(barcode))
490
while (i.hasNext())
491
{
492
Map<String, Object> fastaRecord = i.next();
493
- String header = (String) fastaRecord.get("header");
+ String header = "vdj_t<>" + fastaRecord.get("header");
494
j++;
495
if (uniqueContigNames.contains(header))
496
497
- sequenceMap.put("vdj_t<>" + header, (String) fastaRecord.get("sequence"));
+ sequenceMap.put(header, (String) fastaRecord.get("sequence"));
498
}
499
500
0 commit comments