@@ -498,7 +498,7 @@ private Map<NimbleGenome, File> doAlignment(List<NimbleGenome> genomes, List<Fil
498498 return resultMap ;
499499 }
500500
501- public static final String CATEGORY_CB_UMI = "10x CellBarcode/UMI Map" ;
501+ public static final String CATEGORY_CB = "10x CellBarcode Map" ;
502502
503503 public static void write10xBarcodes (File bam , Logger log , Readset rs , ReferenceGenome referenceGenome , PipelineStepOutput output ) throws PipelineJobException
504504 {
@@ -508,13 +508,13 @@ public static void write10xBarcodes(File bam, Logger log, Readset rs, ReferenceG
508508 barcodeArgs .add ("-I" );
509509 barcodeArgs .add (bam .getPath ());
510510
511- File bcOutput = new File (bam .getParentFile (), SequenceAnalysisService .get ().getUnzippedBaseName (bam .getName ()) + ".bc .txt.gz" );
511+ File bcOutput = new File (bam .getParentFile (), SequenceAnalysisService .get ().getUnzippedBaseName (bam .getName ()) + ".cb .txt.gz" );
512512 barcodeArgs .add ("--output" );
513513 barcodeArgs .add (bcOutput .getPath ());
514514
515515 runner .execute (barcodeArgs );
516516
517- output .addSequenceOutput (bcOutput , "10x CellBarcode/UMI Map: " + rs .getName (), CATEGORY_CB_UMI , rs .getReadsetId (), null , referenceGenome .getGenomeId (), null );
517+ output .addSequenceOutput (bcOutput , "10x CellBarcode Map: " + rs .getName (), CATEGORY_CB , rs .getReadsetId (), null , referenceGenome .getGenomeId (), null );
518518 }
519519
520520 public static File runNimbleReport (File alignResultsGz , int genomeId , PipelineStepOutput output , PipelineContext ctx ) throws PipelineJobException
0 commit comments