Skip to content

Commit 9e30f1c

Browse files
committed
Bugfix to CellRangerVDJ
1 parent 15b3422 commit 9e30f1c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ else if (discordantBarcodes.contains(barcode))
499499
}
500500
}
501501

502-
_log.info("total FASTQ records: " + j);
502+
_log.info("total FASTA records: " + j);
503503
}
504504
catch (IOException e)
505505
{
@@ -521,16 +521,16 @@ else if (discordantBarcodes.contains(barcode))
521521
while (i.hasNext())
522522
{
523523
Map<String, Object> fastaRecord = i.next();
524-
String header = (String) fastaRecord.get("header");
524+
String header = "vdj_t_gd<>" + fastaRecord.get("header");
525525
j++;
526526
if (uniqueContigNames.contains(header))
527527
{
528-
sequenceMap.put("vdj_t_gd<>" + header, (String) fastaRecord.get("sequence"));
528+
sequenceMap.put(header, (String) fastaRecord.get("sequence"));
529529
}
530530
}
531531
}
532532

533-
_log.info("total FASTQ records: " + j);
533+
_log.info("total FASTA records: " + j);
534534
}
535535
catch (IOException e)
536536
{

0 commit comments

Comments
 (0)