Skip to content

Commit bcaf6bf

Browse files
committed
Improve cellranger description fields
1 parent 0df977e commit bcaf6bf

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

singlecell/src/org/labkey/singlecell/run/CellRangerGexCountStep.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,10 @@ protected static String getAlignDescription(PipelineStepProvider<?> provider, Pi
165165
}
166166

167167
List<String> lines = new ArrayList<>();
168+
169+
String includeIntrons = provider.getParameterByName("includeIntrons").extractValue(ctx.getJob(), provider, stepIdx, String.class, "false");
170+
lines.add("Include Introns: " + includeIntrons);
171+
168172
if (addAligner)
169173
{
170174
lines.add("Aligner: " + provider.getName());

singlecell/src/org/labkey/singlecell/run/CellRangerVDJWrapper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,8 @@ private File processOutputsForType(String sampleId, Readset rs, ReferenceGenome
513513
// NOTE: only tag the vloupe file for a/b:
514514
else if (isPrimaryDir)
515515
{
516-
output.addSequenceOutput(outputVloupe, rs.getName() + " 10x VLoupe", "10x VLoupe", rs.getRowId(), null, referenceGenome.getGenomeId(), null);
516+
String versionString = "Version: " + getWrapper().getVersionString();
517+
output.addSequenceOutput(outputVloupe, rs.getName() + " 10x VLoupe", "10x VLoupe", rs.getRowId(), null, referenceGenome.getGenomeId(), versionString);
517518
}
518519

519520
return csv;

0 commit comments

Comments
 (0)