File tree Expand file tree Collapse file tree
tcrdb/src/org/labkey/tcrdb/pipeline Expand file tree Collapse file tree Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments